2025-08-26T19:31:49.9808205Z Current runner version: '2.328.0' 2025-08-26T19:31:49.9814970Z Runner name: 'i-0a45ba5f94c98ec01' 2025-08-26T19:31:49.9815739Z Runner group name: 'default' 2025-08-26T19:31:49.9816512Z Machine name: 'EC2AMAZ-TE6SPGV' 2025-08-26T19:31:49.9819096Z ##[group]GITHUB_TOKEN Permissions 2025-08-26T19:31:49.9821314Z Contents: read 2025-08-26T19:31:49.9821798Z Metadata: read 2025-08-26T19:31:49.9822333Z ##[endgroup] 2025-08-26T19:31:49.9824636Z Secret source: Actions 2025-08-26T19:31:49.9825302Z Prepare workflow directory 2025-08-26T19:31:50.0342044Z Prepare all required actions 2025-08-26T19:31:50.0382487Z Getting action download info 2025-08-26T19:31:50.2544185Z Download action repository 'pytorch/test-infra@main' (SHA:0192d56cb596bb73b125bd368553908cc5c513f0) 2025-08-26T19:32:13.1559616Z Download action repository 'pytorch/pytorch@main' (SHA:262640fd220236042fbf4443cc163c8838c84c3d) 2025-08-26T19:36:17.5325879Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-08-26T19:36:17.8758974Z Getting action download info 2025-08-26T19:36:18.0433632Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-08-26T19:36:18.2720161Z Uses: pytorch/pytorch/.github/workflows/_win-build.yml@refs/heads/main (262640fd220236042fbf4443cc163c8838c84c3d) 2025-08-26T19:36:18.2724637Z ##[group] Inputs 2025-08-26T19:36:18.2725007Z build-environment: win-vs2022-cuda12.6-py3 2025-08-26T19:36:18.2725371Z cuda-version: 12.6 2025-08-26T19:36:18.2725956Z use-xpu: false 2025-08-26T19:36:18.2726206Z xpu-version: 2025-08-26T19:36:18.2726435Z vc-year: 2022 2025-08-26T19:36:18.2726794Z build-with-debug: false 2025-08-26T19:36:18.2727069Z sync-tag: 2025-08-26T19:36:18.2727299Z test-matrix: 2025-08-26T19:36:18.2727626Z runner: windows.4xlarge.nonephemeral 2025-08-26T19:36:18.2727974Z ##[endgroup] 2025-08-26T19:36:18.2728375Z Complete job name: win-vs2022-cuda12.6-py3 / build 2025-08-26T19:36:18.4229614Z ##[group]Run git config --global core.longpaths true 2025-08-26T19:36:18.4230302Z git config --global core.longpaths true 2025-08-26T19:36:18.4230682Z git config --global core.symlinks true 2025-08-26T19:36:18.4230999Z  2025-08-26T19:36:18.4232510Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-08-26T19:36:18.4233159Z # the directory on Windows and prevent GHA from checking out as reported 2025-08-26T19:36:18.4233712Z # in https://github.com/actions/checkout/issues/1018 2025-08-26T19:36:18.4234143Z git config --global core.fsmonitor false 2025-08-26T19:36:18.4265288Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:36:18.4266191Z env: 2025-08-26T19:36:18.4266428Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:36:18.4269487Z ##[endgroup] 2025-08-26T19:36:19.6412290Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-26T19:36:19.6412859Z env: 2025-08-26T19:36:19.6413084Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:36:19.6413348Z ##[endgroup] 2025-08-26T19:36:19.6601365Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T19:36:19.6602189Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T19:36:19.6602887Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-26T19:36:19.6603390Z # handle tool 2025-08-26T19:36:19.6603761Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-26T19:36:19.6604214Z Foreach ($process In $processes) { 2025-08-26T19:36:19.6604524Z  Try { 2025-08-26T19:36:19.6605101Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-26T19:36:19.6605834Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-26T19:36:19.6607972Z  } 2025-08-26T19:36:19.6608193Z  Catch { 2025-08-26T19:36:19.6608548Z  Write-Output "No leftover $process process, continuing" 2025-08-26T19:36:19.6608959Z  Write-Output $_ 2025-08-26T19:36:19.6609218Z  } 2025-08-26T19:36:19.6609431Z } 2025-08-26T19:36:19.6609626Z  2025-08-26T19:36:19.6610132Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-26T19:36:19.6610720Z # for hung processes 2025-08-26T19:36:19.6611029Z Foreach ($process In $processes) { 2025-08-26T19:36:19.6611353Z  Try { 2025-08-26T19:36:19.6611769Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-26T19:36:19.6612260Z  } 2025-08-26T19:36:19.6612469Z  Catch { 2025-08-26T19:36:19.6612711Z  Write-Output $_ 2025-08-26T19:36:19.6612967Z  } 2025-08-26T19:36:19.6613186Z } 2025-08-26T19:36:19.6613383Z  2025-08-26T19:36:19.6613579Z Try { 2025-08-26T19:36:19.6613836Z  # Print all the processes for debugging 2025-08-26T19:36:19.6614396Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-26T19:36:19.6614848Z } 2025-08-26T19:36:19.6615052Z Catch { 2025-08-26T19:36:19.6615486Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-26T19:36:19.6615981Z  Write-Output $_ 2025-08-26T19:36:19.6616239Z } 2025-08-26T19:36:19.6632081Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T19:36:19.6632595Z env: 2025-08-26T19:36:19.6632821Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:36:19.6633080Z ##[endgroup] 2025-08-26T19:36:20.0223168Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T19:36:20.0287883Z Finished 2025-08-26T19:36:20.0728952Z No leftover python process, continuing 2025-08-26T19:36:20.1174991Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-26T19:36:20.1175774Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:9 char:5 2025-08-26T19:36:20.1176481Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T19:36:20.1176999Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.1177549Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-26T19:36:20.1178440Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T19:36:20.1179116Z 2025-08-26T19:36:20.1197123Z No leftover ninja process, continuing 2025-08-26T19:36:20.1208377Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-26T19:36:20.1209125Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:9 char:5 2025-08-26T19:36:20.1209760Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T19:36:20.1210217Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.1210787Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-26T19:36:20.1211663Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T19:36:20.1212339Z 2025-08-26T19:36:20.1226534Z No leftover cl process, continuing 2025-08-26T19:36:20.1238707Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-26T19:36:20.1239427Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:9 char:5 2025-08-26T19:36:20.1240691Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T19:36:20.1241195Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.1241774Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-26T19:36:20.1242679Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T19:36:20.1243322Z 2025-08-26T19:36:20.1263374Z No leftover nvcc process, continuing 2025-08-26T19:36:20.1269879Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-26T19:36:20.1270641Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:9 char:5 2025-08-26T19:36:20.1271287Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T19:36:20.1271774Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.1272333Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-26T19:36:20.1273243Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T19:36:20.1273937Z 2025-08-26T19:36:20.1301876Z No leftover sccache process, continuing 2025-08-26T19:36:20.1312370Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-26T19:36:20.1313170Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:9 char:5 2025-08-26T19:36:20.1313786Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T19:36:20.1314298Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.1314895Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-26T19:36:20.1315853Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T19:36:20.1316502Z 2025-08-26T19:36:20.1324560Z No leftover git process, continuing 2025-08-26T19:36:20.1335772Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-26T19:36:20.1336588Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:9 char:5 2025-08-26T19:36:20.1337202Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T19:36:20.1337836Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.1338406Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-26T19:36:20.1339285Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T19:36:20.1339932Z 2025-08-26T19:36:20.2171138Z You cannot call a method on a null-valued expression. 2025-08-26T19:36:20.2172463Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:21 char:5 2025-08-26T19:36:20.2173128Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T19:36:20.2173658Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.2174185Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T19:36:20.2174691Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T19:36:20.2175026Z 2025-08-26T19:36:20.2254746Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T19:36:20.2255717Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T19:36:20.2256399Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T19:36:20.2256938Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:21 char:6 2025-08-26T19:36:20.2257591Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T19:36:20.2258303Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.2258811Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T19:36:20.2259588Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T19:36:20.2260303Z 2025-08-26T19:36:20.2282366Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T19:36:20.2283332Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T19:36:20.2284132Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T19:36:20.2284676Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:21 char:6 2025-08-26T19:36:20.2285315Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T19:36:20.2285822Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.2286325Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T19:36:20.2287108Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T19:36:20.2287774Z 2025-08-26T19:36:20.2312028Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T19:36:20.2313075Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T19:36:20.2313781Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T19:36:20.2314330Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:21 char:6 2025-08-26T19:36:20.2314965Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T19:36:20.2315486Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.2315997Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T19:36:20.2316778Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T19:36:20.2317372Z 2025-08-26T19:36:20.2341192Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T19:36:20.2342135Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T19:36:20.2342849Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T19:36:20.2343423Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:21 char:6 2025-08-26T19:36:20.2344042Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T19:36:20.2344720Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.2345226Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T19:36:20.2346014Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T19:36:20.2346595Z 2025-08-26T19:36:20.2368658Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T19:36:20.2369630Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T19:36:20.2370285Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T19:36:20.2370807Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:21 char:6 2025-08-26T19:36:20.2371430Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T19:36:20.2371969Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.2372522Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T19:36:20.2373493Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T19:36:20.2374078Z 2025-08-26T19:36:20.2396520Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T19:36:20.2397467Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T19:36:20.2398098Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T19:36:20.2398624Z At C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1:21 char:6 2025-08-26T19:36:20.2399233Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T19:36:20.2399727Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:36:20.2400274Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T19:36:20.2401112Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T19:36:20.2401714Z 2025-08-26T19:36:20.4316988Z Caption CommandLine ProcessId 2025-08-26T19:36:20.4317556Z 2025-08-26T19:36:20.4318039Z System Idle Process 0 2025-08-26T19:36:20.4318491Z 2025-08-26T19:36:20.4318918Z System 4 2025-08-26T19:36:20.4319312Z 2025-08-26T19:36:20.4320142Z Registry 168 2025-08-26T19:36:20.4320552Z 2025-08-26T19:36:20.4320968Z smss.exe 408 2025-08-26T19:36:20.4321361Z 2025-08-26T19:36:20.4322238Z csrss.exe 524 2025-08-26T19:36:20.4323460Z 2025-08-26T19:36:20.4323882Z csrss.exe 600 2025-08-26T19:36:20.4324270Z 2025-08-26T19:36:20.4324720Z wininit.exe 624 2025-08-26T19:36:20.4325125Z 2025-08-26T19:36:20.4325687Z winlogon.exe winlogon.exe 688 2025-08-26T19:36:20.4326142Z 2025-08-26T19:36:20.4326780Z services.exe 744 2025-08-26T19:36:20.4327186Z 2025-08-26T19:36:20.4328235Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-08-26T19:36:20.4328770Z 2025-08-26T19:36:20.4329950Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-08-26T19:36:20.4330581Z 2025-08-26T19:36:20.4331184Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-08-26T19:36:20.4331740Z 2025-08-26T19:36:20.4332401Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-08-26T19:36:20.4333272Z 2025-08-26T19:36:20.4334119Z fontdrvhost.exe "fontdrvhost.exe" 948 2025-08-26T19:36:20.4334676Z 2025-08-26T19:36:20.4335257Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 132 2025-08-26T19:36:20.4335802Z 2025-08-26T19:36:20.4336405Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 456 2025-08-26T19:36:20.4336980Z 2025-08-26T19:36:20.4337611Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 592 2025-08-26T19:36:20.4338215Z 2025-08-26T19:36:20.4338919Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1120 2025-08-26T19:36:20.4339617Z 2025-08-26T19:36:20.4340471Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1260 2025-08-26T19:36:20.4341174Z 2025-08-26T19:36:20.4341580Z dwm.exe "dwm.exe" 1296 2025-08-26T19:36:20.4341992Z 2025-08-26T19:36:20.4343034Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1340 2025-08-26T19:36:20.4343725Z 2025-08-26T19:36:20.4344400Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1368 2025-08-26T19:36:20.4345080Z 2025-08-26T19:36:20.4345693Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1392 2025-08-26T19:36:20.4346268Z 2025-08-26T19:36:20.4346944Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-08-26T19:36:20.4347576Z 2025-08-26T19:36:20.4348616Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1488 2025-08-26T19:36:20.4349206Z 2025-08-26T19:36:20.4351212Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1512 2025-08-26T19:36:20.4353199Z 2025-08-26T19:36:20.4353827Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1576 2025-08-26T19:36:20.4354433Z 2025-08-26T19:36:20.4355163Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1672 2025-08-26T19:36:20.4355953Z 2025-08-26T19:36:20.4356546Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1752 2025-08-26T19:36:20.4357118Z 2025-08-26T19:36:20.4357745Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1760 2025-08-26T19:36:20.4358353Z 2025-08-26T19:36:20.4358991Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1768 2025-08-26T19:36:20.4359607Z 2025-08-26T19:36:20.4360361Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1852 2025-08-26T19:36:20.4361497Z 2025-08-26T19:36:20.4362362Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 2024 2025-08-26T19:36:20.4362969Z 2025-08-26T19:36:20.4363692Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2032 2025-08-26T19:36:20.4364351Z 2025-08-26T19:36:20.4364951Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2072 2025-08-26T19:36:20.4365553Z 2025-08-26T19:36:20.4366172Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 2096 2025-08-26T19:36:20.4367412Z 2025-08-26T19:36:20.4368079Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 2104 2025-08-26T19:36:20.4368742Z 2025-08-26T19:36:20.4369401Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2172 2025-08-26T19:36:20.4370142Z 2025-08-26T19:36:20.4370898Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2208 2025-08-26T19:36:20.4371646Z 2025-08-26T19:36:20.4372273Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2240 2025-08-26T19:36:20.4372893Z 2025-08-26T19:36:20.4373512Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2296 2025-08-26T19:36:20.4374117Z 2025-08-26T19:36:20.4375846Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2348 2025-08-26T19:36:20.4377007Z 2025-08-26T19:36:20.4377649Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2404 2025-08-26T19:36:20.4378283Z 2025-08-26T19:36:20.4378812Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2716 2025-08-26T19:36:20.4379433Z 2025-08-26T19:36:20.4380013Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2808 2025-08-26T19:36:20.4380597Z 2025-08-26T19:36:20.4381463Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2816 2025-08-26T19:36:20.4382560Z 2025-08-26T19:36:20.4383514Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2824 2025-08-26T19:36:20.4384324Z 2025-08-26T19:36:20.4385044Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2832 2025-08-26T19:36:20.4385738Z 2025-08-26T19:36:20.4386477Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2844 2025-08-26T19:36:20.4387172Z 2025-08-26T19:36:20.4388220Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2856 2025-08-26T19:36:20.4388957Z 2025-08-26T19:36:20.4389576Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2864 2025-08-26T19:36:20.4390180Z 2025-08-26T19:36:20.4390875Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2872 2025-08-26T19:36:20.4391460Z 2025-08-26T19:36:20.4391969Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2660 2025-08-26T19:36:20.4392470Z 2025-08-26T19:36:20.4393397Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe 3016 2025-08-26T19:36:20.4394848Z 2025-08-26T19:36:20.4395996Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3104 2025-08-26T19:36:20.4397137Z 2025-08-26T19:36:20.4398574Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3128 2025-08-26T19:36:20.4400016Z 2025-08-26T19:36:20.4401228Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3184 2025-08-26T19:36:20.4402352Z 2025-08-26T19:36:20.4403734Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3564 2025-08-26T19:36:20.4405131Z 2025-08-26T19:36:20.4406110Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3684 2025-08-26T19:36:20.4407228Z 2025-08-26T19:36:20.4408600Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 3216 2025-08-26T19:36:20.4409931Z 2025-08-26T19:36:20.4410783Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77855 /state1:0x41c64e6d 4540 2025-08-26T19:36:20.4411400Z 2025-08-26T19:36:20.4413214Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 4852 2025-08-26T19:36:20.4415014Z 2025-08-26T19:36:20.4416562Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe -spawnprovider 4984 2025-08-26T19:36:20.4418176Z 2025-08-26T19:36:20.4419347Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4604 2025-08-26T19:36:20.4420598Z 2025-08-26T19:36:20.4421548Z vds.exe C:\Windows\System32\vds.exe 4388 2025-08-26T19:36:20.4422444Z 2025-08-26T19:36:20.4423719Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 4216 2025-08-26T19:36:20.4425040Z 2025-08-26T19:36:20.4426211Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 4496 2025-08-26T19:36:20.4427529Z 2025-08-26T19:36:20.4428865Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 1132 2025-08-26T19:36:20.4430244Z 2025-08-26T19:36:20.4431810Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 960 2025-08-26T19:36:20.4433401Z 2025-08-26T19:36:20.4436720Z 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 724 2025-08-26T19:36:20.4440075Z 2025-08-26T19:36:20.4440997Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4892 2025-08-26T19:36:20.4441994Z 2025-08-26T19:36:20.4443180Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 3612 2025-08-26T19:36:20.4443901Z 2025-08-26T19:36:20.4444446Z msdtc.exe C:\Windows\System32\msdtc.exe 4384 2025-08-26T19:36:20.4444944Z 2025-08-26T19:36:20.4445611Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4232 2025-08-26T19:36:20.4446299Z 2025-08-26T19:36:20.4446857Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 868 2025-08-26T19:36:20.4447569Z 2025-08-26T19:36:20.4448742Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 4068 2025-08-26T19:36:20.4449767Z 2025-08-26T19:36:20.4450386Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 1608 2025-08-26T19:36:20.4451021Z 2025-08-26T19:36:20.4451607Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 1804 2025-08-26T19:36:20.4452196Z 2025-08-26T19:36:20.4452700Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2912 2025-08-26T19:36:20.4453206Z 2025-08-26T19:36:20.4453870Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 4224 2025-08-26T19:36:20.4454922Z 2025-08-26T19:36:20.4455900Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4884 2025-08-26T19:36:20.4456500Z 2025-08-26T19:36:20.4457097Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 2920 2025-08-26T19:36:20.4457775Z 2025-08-26T19:36:20.4458269Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2152 2025-08-26T19:36:20.4458785Z 2025-08-26T19:36:20.4459291Z taskhostw.exe taskhostw.exe /RuntimeWide 140 2025-08-26T19:36:20.4459814Z 2025-08-26T19:36:20.4460642Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:1004 3060 2025-08-26T19:36:20.4461991Z 2025-08-26T19:36:20.4462726Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:532 1256 2025-08-26T19:36:20.4463440Z 2025-08-26T19:36:20.4463937Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1472 2025-08-26T19:36:20.4464450Z 2025-08-26T19:36:20.4465027Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3920 2025-08-26T19:36:20.4465540Z 2025-08-26T19:36:20.4466131Z TrustedInstaller.exe C:\Windows\servicing\TrustedInstaller.exe 736 2025-08-26T19:36:20.4466725Z 2025-08-26T19:36:20.4467637Z TiWorker.exe C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.7557_none_56db325b9926b2f1\TiWorker.exe -Embedding 4112 2025-08-26T19:36:20.4468602Z 2025-08-26T19:36:20.4469280Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 4536 2025-08-26T19:36:20.4469951Z 2025-08-26T19:36:20.4470697Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 1864 2025-08-26T19:36:20.4471442Z 2025-08-26T19:36:20.4472630Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 1844 2025-08-26T19:36:20.4473798Z 2025-08-26T19:36:20.4474475Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2208 2220 3588 2025-08-26T19:36:20.4475118Z 2025-08-26T19:36:20.4475676Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3736 2025-08-26T19:36:20.4476210Z 2025-08-26T19:36:20.4477295Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe -StartupEvent 2cc -InterruptEvent 0 -NGENProcess 2f4 -Pipe 2c4 -Comment "NGen Worker Process" 4440 2025-08-26T19:36:20.4478242Z 2025-08-26T19:36:20.4479278Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\359ff811-07e9-4793-ab35-d8bb0cbb23ed.ps1'" 4028 2025-08-26T19:36:20.4480187Z 2025-08-26T19:36:20.4480708Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 2924 2025-08-26T19:36:20.4481831Z 2025-08-26T19:36:20.4482516Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 4416 2025-08-26T19:36:20.4483212Z 2025-08-26T19:36:20.4483219Z 2025-08-26T19:36:20.4483225Z 2025-08-26T19:36:20.4730675Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-08-26T19:36:20.4731154Z with: 2025-08-26T19:36:20.4731663Z github-secret: *** 2025-08-26T19:36:20.4733667Z 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-08-26T19:36:20.4735697Z activate-with-label: false 2025-08-26T19:36:20.4735934Z label: with-ssh 2025-08-26T19:36:20.4736146Z remove-existing-keys: true 2025-08-26T19:36:20.4736435Z fail-silently: true 2025-08-26T19:36:20.4736638Z env: 2025-08-26T19:36:20.4736902Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:36:20.4737124Z ##[endgroup] 2025-08-26T19:36:20.6255634Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-08-26T19:36:20.6258080Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-08-26T19:36:20.6495706Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-08-26T19:36:20.6496131Z with: 2025-08-26T19:36:20.6496323Z no-sudo: true 2025-08-26T19:36:20.6496530Z submodules: recursive 2025-08-26T19:36:20.6496757Z fetch-depth: 0 2025-08-26T19:36:20.6496953Z env: 2025-08-26T19:36:20.6497131Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:36:20.6497356Z ##[endgroup] 2025-08-26T19:36:20.6593419Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-26T19:36:20.6594308Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-26T19:36:20.6613866Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:36:20.6614386Z env: 2025-08-26T19:36:20.6614565Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:36:20.6614799Z ##[endgroup] 2025-08-26T19:36:20.7007011Z ##[group]Run # Use all available CPUs for fetching 2025-08-26T19:36:20.7007504Z # Use all available CPUs for fetching 2025-08-26T19:36:20.7007830Z cd "${GITHUB_WORKSPACE}" 2025-08-26T19:36:20.7008129Z git config --global fetch.parallel 0 2025-08-26T19:36:20.7008475Z git config --global submodule.fetchJobs 0 2025-08-26T19:36:20.7008773Z  2025-08-26T19:36:20.7009097Z # Clean workspace. The default checkout action should also do this, but 2025-08-26T19:36:20.7009523Z # do it here as well just in case 2025-08-26T19:36:20.7009805Z if [[ -d .git ]]; then 2025-08-26T19:36:20.7010056Z  if [ -z "${NO_SUDO}" ]; then 2025-08-26T19:36:20.7010327Z  sudo git clean -ffdx 2025-08-26T19:36:20.7010717Z  else 2025-08-26T19:36:20.7010915Z  git clean -ffdx 2025-08-26T19:36:20.7011148Z  fi 2025-08-26T19:36:20.7011339Z fi 2025-08-26T19:36:20.7029906Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:36:20.7030338Z env: 2025-08-26T19:36:20.7030526Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:36:20.7030747Z NO_SUDO: true 2025-08-26T19:36:20.7030941Z ##[endgroup] 2025-08-26T19:36:20.7905920Z ##[group]Run actions/checkout@v4 2025-08-26T19:36:20.7906259Z with: 2025-08-26T19:36:20.7906478Z ref: 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:36:20.7906819Z fetch-depth: 0 2025-08-26T19:36:20.7907025Z submodules: recursive 2025-08-26T19:36:20.7907234Z show-progress: false 2025-08-26T19:36:20.7907462Z repository: pytorch/pytorch 2025-08-26T19:36:20.7907849Z token: *** 2025-08-26T19:36:20.7908049Z ssh-strict: true 2025-08-26T19:36:20.7908256Z ssh-user: git 2025-08-26T19:36:20.7908480Z persist-credentials: true 2025-08-26T19:36:20.7908718Z clean: true 2025-08-26T19:36:20.7908930Z sparse-checkout-cone-mode: true 2025-08-26T19:36:20.7909201Z fetch-tags: false 2025-08-26T19:36:20.7909396Z lfs: false 2025-08-26T19:36:20.7909588Z set-safe-directory: true 2025-08-26T19:36:20.7909804Z env: 2025-08-26T19:36:20.7909988Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:36:20.7910196Z ##[endgroup] 2025-08-26T19:36:20.9222866Z Syncing repository: pytorch/pytorch 2025-08-26T19:36:20.9224165Z ##[group]Getting Git version info 2025-08-26T19:36:20.9224582Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-26T19:36:20.9284936Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-26T19:36:20.9493942Z git version 2.50.1.windows.1 2025-08-26T19:36:20.9539863Z ##[endgroup] 2025-08-26T19:36:20.9551115Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\850e34e7-4fda-4706-9335-bab0bbced4c2\.gitconfig' 2025-08-26T19:36:20.9568463Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\850e34e7-4fda-4706-9335-bab0bbced4c2' before making global git config changes 2025-08-26T19:36:20.9570836Z Adding repository directory to the temporary git global config as a safe directory 2025-08-26T19:36:20.9578240Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-26T19:36:20.9817805Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-26T19:36:20.9823233Z ##[group]Initializing the repository 2025-08-26T19:36:20.9833859Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-08-26T19:36:21.0172381Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-08-26T19:36:21.0214571Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-08-26T19:36:21.0459377Z ##[endgroup] 2025-08-26T19:36:21.0459852Z ##[group]Disabling automatic garbage collection 2025-08-26T19:36:21.0472135Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-08-26T19:36:21.0694397Z ##[endgroup] 2025-08-26T19:36:21.0694812Z ##[group]Setting up auth 2025-08-26T19:36:21.0707792Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-26T19:36:21.0939817Z [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-08-26T19:36:21.7358915Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-26T19:36:21.7591412Z [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-08-26T19:36:22.1038831Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-26T19:36:22.1272765Z ##[endgroup] 2025-08-26T19:36:22.1273217Z ##[group]Fetching the repository 2025-08-26T19:36:22.1287073Z [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-08-26T19:37:16.1793862Z From https://github.com/pytorch/pytorch 2025-08-26T19:37:16.1794358Z * [new branch] 160583 -> origin/160583 2025-08-26T19:37:16.1794881Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-08-26T19:37:16.1795382Z * [new branch] 5addvllmbuild -> origin/5addvllmbuild 2025-08-26T19:37:16.1795977Z * [new branch] AaronWang04_addmmfusion_perftest -> origin/AaronWang04_addmmfusion_perftest 2025-08-26T19:37:16.1796688Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-08-26T19:37:16.1797275Z * [new branch] ISSUE-154849 -> origin/ISSUE-154849 2025-08-26T19:37:16.1797990Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-08-26T19:37:16.1798737Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-08-26T19:37:16.1799321Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-08-26T19:37:16.1799891Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-08-26T19:37:16.1800474Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-08-26T19:37:16.1801004Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-08-26T19:37:16.1801599Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-08-26T19:37:16.1802117Z * [new branch] VLA_exp -> origin/VLA_exp 2025-08-26T19:37:16.1803470Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-08-26T19:37:16.1804262Z * [new branch] add-user-guide-structure -> origin/add-user-guide-structure 2025-08-26T19:37:16.1804791Z * [new branch] addVllmPin -> origin/addVllmPin 2025-08-26T19:37:16.1805346Z * [new branch] add_compile_benchmarking -> origin/add_compile_benchmarking 2025-08-26T19:37:16.1805953Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-08-26T19:37:16.1806467Z * [new branch] addbuildvllm -> origin/addbuildvllm 2025-08-26T19:37:16.1806991Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-08-26T19:37:16.1807550Z * [new branch] addsimde -> origin/addsimde 2025-08-26T19:37:16.1808061Z * [new branch] adi/acl_upgrade -> origin/adi/acl_upgrade 2025-08-26T19:37:16.1808563Z * [new branch] adi/test -> origin/adi/test 2025-08-26T19:37:16.1809040Z * [new branch] adi/test_bgemm -> origin/adi/test_bgemm 2025-08-26T19:37:16.1809546Z * [new branch] adi/test_fusions -> origin/adi/test_fusions 2025-08-26T19:37:16.1810109Z * [new branch] adi/test_onednn_v3.9 -> origin/adi/test_onednn_v3.9 2025-08-26T19:37:16.1810626Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-08-26T19:37:16.1811129Z * [new branch] adi/test_timm -> origin/adi/test_timm 2025-08-26T19:37:16.1811640Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-08-26T19:37:16.1812173Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-08-26T19:37:16.1812887Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-08-26T19:37:16.1813449Z * [new branch] alt-disable -> origin/alt-disable 2025-08-26T19:37:16.1814012Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-08-26T19:37:16.1814623Z * [new branch] angelayi/aoti_inductor_fx -> origin/angelayi/aoti_inductor_fx 2025-08-26T19:37:16.1815347Z * [new branch] angelayi/assert_tensor_metadata_device -> origin/angelayi/assert_tensor_metadata_device 2025-08-26T19:37:16.1816042Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-08-26T19:37:16.1816564Z * [new branch] angelayi/benchmark2 -> origin/angelayi/benchmark2 2025-08-26T19:37:16.1817203Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-08-26T19:37:16.1817836Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-08-26T19:37:16.1818411Z * [new branch] angelayi/custom_op_subgraph -> origin/angelayi/custom_op_subgraph 2025-08-26T19:37:16.1818970Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-08-26T19:37:16.1819517Z * [new branch] angelayi/is_symbolic_tracing -> origin/angelayi/is_symbolic_tracing 2025-08-26T19:37:16.1820095Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-08-26T19:37:16.1820615Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-08-26T19:37:16.2221225Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-08-26T19:37:16.2221830Z * [new branch] angelayi/opoverload -> origin/angelayi/opoverload 2025-08-26T19:37:16.2222403Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-08-26T19:37:16.2223185Z * [new branch] angelayi/save_error -> origin/angelayi/save_error 2025-08-26T19:37:16.2223718Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-08-26T19:37:16.2224244Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-08-26T19:37:16.2224835Z * [new branch] angelayi/tensor_nn_module_meta -> origin/angelayi/tensor_nn_module_meta 2025-08-26T19:37:16.2225401Z * [new branch] angelayi/test_cpp -> origin/angelayi/test_cpp 2025-08-26T19:37:16.2225915Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-08-26T19:37:16.2226425Z * [new branch] aoti-cuda-alloc -> origin/aoti-cuda-alloc 2025-08-26T19:37:16.2226912Z * [new branch] aoti_weight_sharing -> origin/aoti_weight_sharing 2025-08-26T19:37:16.2227452Z * [new branch] arsh/symint_mm_ind_decomp -> origin/arsh/symint_mm_ind_decomp 2025-08-26T19:37:16.2228040Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-08-26T19:37:16.2228696Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-08-26T19:37:16.2229274Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-08-26T19:37:16.2229768Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-08-26T19:37:16.2230258Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-08-26T19:37:16.2230727Z * [new branch] atalman-patch-4 -> origin/atalman-patch-4 2025-08-26T19:37:16.2231235Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-08-26T19:37:16.2231750Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-08-26T19:37:16.2232408Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-08-26T19:37:16.2232941Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-08-26T19:37:16.2233584Z * [new branch] autoupdate-transformers-pin-via-pr -> origin/autoupdate-transformers-pin-via-pr 2025-08-26T19:37:16.2234208Z * [new branch] backupvllm -> origin/backupvllm 2025-08-26T19:37:16.2234662Z * [new branch] bahuang/test -> origin/bahuang/test 2025-08-26T19:37:16.2235107Z * [new branch] base/1.5 -> origin/base/1.5 2025-08-26T19:37:16.2235661Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-08-26T19:37:16.2236226Z * [new branch] bc-lint-config -> origin/bc-lint-config 2025-08-26T19:37:16.2236754Z * [new branch] bc-lint-test-new-config -> origin/bc-lint-test-new-config 2025-08-26T19:37:16.2237369Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-08-26T19:37:16.2237982Z * [new branch] benchmarker_compat_with_do_bench -> origin/benchmarker_compat_with_do_bench 2025-08-26T19:37:16.2238598Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-08-26T19:37:16.2239135Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-08-26T19:37:16.2239650Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-08-26T19:37:16.2240114Z * [new branch] bf/cg-log -> origin/bf/cg-log 2025-08-26T19:37:16.2240589Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-08-26T19:37:16.2241081Z * [new branch] bf/cg-skip-1-kernel -> origin/bf/cg-skip-1-kernel 2025-08-26T19:37:16.2241578Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-08-26T19:37:16.2242305Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-08-26T19:37:16.2243284Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-08-26T19:37:16.2244160Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-08-26T19:37:16.2244749Z * [new branch] bf/default-recompile-reason -> origin/bf/default-recompile-reason 2025-08-26T19:37:16.2245348Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-08-26T19:37:16.2245898Z * [new branch] bf/pa-non-divisible -> origin/bf/pa-non-divisible 2025-08-26T19:37:16.2246399Z * [new branch] bf/partition-doc -> origin/bf/partition-doc 2025-08-26T19:37:16.2246933Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-08-26T19:37:16.2604603Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-08-26T19:37:16.2605221Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-08-26T19:37:16.2605767Z * [new branch] bf/rope -> origin/bf/rope 2025-08-26T19:37:16.2606220Z * [new branch] bf/skip-asserts -> origin/bf/skip-asserts 2025-08-26T19:37:16.2606707Z * [new branch] bf16adamw -> origin/bf16adamw 2025-08-26T19:37:16.2607211Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-08-26T19:37:16.2607802Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-08-26T19:37:16.2608363Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-08-26T19:37:16.2609114Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-08-26T19:37:16.2609683Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-08-26T19:37:16.2610228Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-08-26T19:37:16.2610806Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-08-26T19:37:16.2611373Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-08-26T19:37:16.2611944Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-08-26T19:37:16.2612527Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-08-26T19:37:16.2613083Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-08-26T19:37:16.2613642Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-08-26T19:37:16.2614212Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-08-26T19:37:16.2614813Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-08-26T19:37:16.2615394Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-08-26T19:37:16.2615964Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-08-26T19:37:16.2616536Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-08-26T19:37:16.2617078Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-08-26T19:37:16.2617583Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-08-26T19:37:16.2618158Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-08-26T19:37:16.2619380Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-08-26T19:37:16.2619976Z * [new branch] brister/break_tensorbox -> origin/brister/break_tensorbox 2025-08-26T19:37:16.2620512Z * [new branch] brister/flatten_contig -> origin/brister/flatten_contig 2025-08-26T19:37:16.2621061Z * [new branch] brister/fx_custom_triton -> origin/brister/fx_custom_triton 2025-08-26T19:37:16.2621627Z * [new branch] brister/tensor_box_output -> origin/brister/tensor_box_output 2025-08-26T19:37:16.2622195Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-08-26T19:37:16.2622934Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-08-26T19:37:16.2623525Z * [new branch] c57382a49 -> origin/c57382a49 2025-08-26T19:37:16.2623971Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-08-26T19:37:16.2624425Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-08-26T19:37:16.2625402Z * [new branch] camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 -> origin/camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 2025-08-26T19:37:16.2626437Z * [new branch] camyllh/test_setup_hooks_push -> origin/camyllh/test_setup_hooks_push 2025-08-26T19:37:16.2627151Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2627931Z * [new branch] cherry-pick-151939-by-pytorch_bot_bot_ -> origin/cherry-pick-151939-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2628814Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2629567Z * [new branch] cherry-pick-155896-by-pytorch_bot_bot_ -> origin/cherry-pick-155896-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2913280Z * [new branch] cherry-pick-156260-by-pytorch_bot_bot_ -> origin/cherry-pick-156260-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2914079Z * [new branch] cherry-pick-156719-by-pytorch_bot_bot_ -> origin/cherry-pick-156719-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2914845Z * [new branch] cherry-pick-156888-by-pytorch_bot_bot_ -> origin/cherry-pick-156888-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2915599Z * [new branch] cherry-pick-157453-by-pytorch_bot_bot_ -> origin/cherry-pick-157453-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2916342Z * [new branch] cherry-pick-157513-by-pytorch_bot_bot_ -> origin/cherry-pick-157513-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2917109Z * [new branch] cherry-pick-157558-by-pytorch_bot_bot_ -> origin/cherry-pick-157558-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2917878Z * [new branch] cherry-pick-157598-by-pytorch_bot_bot_ -> origin/cherry-pick-157598-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2918669Z * [new branch] cherry-pick-157630-by-pytorch_bot_bot_ -> origin/cherry-pick-157630-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2919469Z * [new branch] cherry-pick-157695-by-pytorch_bot_bot_ -> origin/cherry-pick-157695-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2920216Z * [new branch] cherry-pick-157732-by-pytorch_bot_bot_ -> origin/cherry-pick-157732-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2920977Z * [new branch] cherry-pick-157733-by-pytorch_bot_bot_ -> origin/cherry-pick-157733-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2921738Z * [new branch] cherry-pick-157985-by-pytorch_bot_bot_ -> origin/cherry-pick-157985-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2922485Z * [new branch] cherry-pick-157993-by-pytorch_bot_bot_ -> origin/cherry-pick-157993-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2923393Z * [new branch] cherry-pick-158064-by-pytorch_bot_bot_ -> origin/cherry-pick-158064-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2924137Z * [new branch] cherry-pick-158152-by-pytorch_bot_bot_ -> origin/cherry-pick-158152-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2924998Z * [new branch] cherry-pick-158301-by-pytorch_bot_bot_ -> origin/cherry-pick-158301-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2925766Z * [new branch] cherry-pick-158537-by-pytorch_bot_bot_ -> origin/cherry-pick-158537-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2926509Z * [new branch] cherry-pick-159181-by-pytorch_bot_bot_ -> origin/cherry-pick-159181-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2927259Z * [new branch] cherry-pick-159969-by-pytorch_bot_bot_ -> origin/cherry-pick-159969-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2928049Z * [new branch] cherry-pick-160586-by-pytorch_bot_bot_ -> origin/cherry-pick-160586-by-pytorch_bot_bot_ 2025-08-26T19:37:16.2928960Z * [new branch] cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc -> origin/cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc 2025-08-26T19:37:16.2929741Z * [new branch] chilli/flex_vllm -> origin/chilli/flex_vllm 2025-08-26T19:37:16.2930257Z * [new branch] cleantest1 -> origin/cleantest1 2025-08-26T19:37:16.2930761Z * [new branch] codex-testing -> origin/codex-testing 2025-08-26T19:37:16.2931413Z * [new branch] codex/add-metadata-field-for-file-path -> origin/codex/add-metadata-field-for-file-path 2025-08-26T19:37:16.2932323Z * [new branch] codex/add-test-for-inductor-local-cache-behavior -> origin/codex/add-test-for-inductor-local-cache-behavior 2025-08-26T19:37:16.2933404Z * [new branch] codex/create-test-for-tensor-memory-leak-in-cudagraph -> origin/codex/create-test-for-tensor-memory-leak-in-cudagraph 2025-08-26T19:37:16.2934422Z * [new branch] codex/fix-issue-121219-in-pytorch -> origin/codex/fix-issue-121219-in-pytorch 2025-08-26T19:37:16.2935114Z * [new branch] codex/fix-issue-160415-in-pytorch -> origin/codex/fix-issue-160415-in-pytorch 2025-08-26T19:37:16.2935994Z * [new branch] codex/fix-noqengine-quantized-engine-support -> origin/codex/fix-noqengine-quantized-engine-support 2025-08-26T19:37:16.2936880Z * [new branch] codex/fix-pin_memory-error-handling -> origin/codex/fix-pin_memory-error-handling 2025-08-26T19:37:16.2937620Z * [new branch] codex/propose-fix-for-issue-160332 -> origin/codex/propose-fix-for-issue-160332 2025-08-26T19:37:16.2938468Z * [new branch] codex/refactor-lintrunner-config-to-use-uv-run -> origin/codex/refactor-lintrunner-config-to-use-uv-run 2025-08-26T19:37:16.2939517Z * [new branch] codex/remove-allow-untyped-defs-and-fix-type-errors -> origin/codex/remove-allow-untyped-defs-and-fix-type-errors 2025-08-26T19:37:16.2940520Z * [new branch] codex/verify-torch-output-and-log-results -> origin/codex/verify-torch-output-and-log-results 2025-08-26T19:37:16.3322761Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-08-26T19:37:16.3323386Z * [new branch] context_test -> origin/context_test 2025-08-26T19:37:16.3323883Z * [new branch] copilot/fix-157446 -> origin/copilot/fix-157446 2025-08-26T19:37:16.3324377Z * [new branch] copilot/fix-159257 -> origin/copilot/fix-159257 2025-08-26T19:37:16.3324861Z * [new branch] copy_graph -> origin/copy_graph 2025-08-26T19:37:16.3325379Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-08-26T19:37:16.3325968Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-08-26T19:37:16.3326669Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-08-26T19:37:16.3327222Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-08-26T19:37:16.3327788Z * [new branch] csl/disable_flaky_cpp_test -> origin/csl/disable_flaky_cpp_test 2025-08-26T19:37:16.3328334Z * [new branch] csl/disable_periodic_test -> origin/csl/disable_periodic_test 2025-08-26T19:37:16.3328912Z * [new branch] csl/executorch_docker_fail -> origin/csl/executorch_docker_fail 2025-08-26T19:37:16.3329457Z * [new branch] csl/fix_check_alerts -> origin/csl/fix_check_alerts 2025-08-26T19:37:16.3329918Z * [new branch] csl/katex -> origin/csl/katex 2025-08-26T19:37:16.3330395Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-08-26T19:37:16.3330896Z * [new branch] csl/lintrunner_stuff -> origin/csl/lintrunner_stuff 2025-08-26T19:37:16.3331460Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-08-26T19:37:16.3332006Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-08-26T19:37:16.3332548Z * [new branch] csl/name_link_check_job -> origin/csl/name_link_check_job 2025-08-26T19:37:16.3333071Z * [new branch] csl/no_keep_goin_rocm -> origin/csl/no_keep_goin_rocm 2025-08-26T19:37:16.3333565Z * [new branch] csl/not_600_timeout -> origin/csl/not_600_timeout 2025-08-26T19:37:16.3334141Z * [new branch] csl/remove_unused_docker_images -> origin/csl/remove_unused_docker_images 2025-08-26T19:37:16.3334692Z * [new branch] csl/revert_open -> origin/csl/revert_open 2025-08-26T19:37:16.3335266Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-08-26T19:37:16.3335836Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-08-26T19:37:16.3336393Z * [new branch] csl/unused_docker -> origin/csl/unused_docker 2025-08-26T19:37:16.3336935Z * [new branch] csl/win_sccache -> origin/csl/win_sccache 2025-08-26T19:37:16.3337449Z * [new branch] cublasltrelax2 -> origin/cublasltrelax2 2025-08-26T19:37:16.3337963Z * [new branch] cublasrelax2 -> origin/cublasrelax2 2025-08-26T19:37:16.3338452Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-08-26T19:37:16.3338961Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-08-26T19:37:16.3339459Z * [new branch] czhuge_muon_dev -> origin/czhuge_muon_dev 2025-08-26T19:37:16.3339933Z * [new branch] d4l3k/delete_hook -> origin/d4l3k/delete_hook 2025-08-26T19:37:16.3340395Z * [new branch] dcp_zoc -> origin/dcp_zoc 2025-08-26T19:37:16.3340862Z * [new branch] delete-quant-docs -> origin/delete-quant-docs 2025-08-26T19:37:16.3341761Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.2 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.2 2025-08-26T19:37:16.3343196Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.3 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.3 2025-08-26T19:37:16.3344449Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.4 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.4 2025-08-26T19:37:16.3345509Z * [new branch] dependabot/pip/dot-ci/docker/protobuf-5.29.5 -> origin/dependabot/pip/dot-ci/docker/protobuf-5.29.5 2025-08-26T19:37:16.3346574Z * [new branch] dependabot/pip/dot-github/requirements/protobuf-5.29.5 -> origin/dependabot/pip/dot-github/requirements/protobuf-5.29.5 2025-08-26T19:37:16.3347395Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-08-26T19:37:16.3348057Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-08-26T19:37:16.3348803Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-08-26T19:37:16.3710341Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-08-26T19:37:16.3710855Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-08-26T19:37:16.3711368Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-08-26T19:37:16.3711952Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-08-26T19:37:16.3712538Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-08-26T19:37:16.3713220Z * [new branch] dev/joona/maxpool2dwithindices_errmsg -> origin/dev/joona/maxpool2dwithindices_errmsg 2025-08-26T19:37:16.3713919Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-08-26T19:37:16.3714453Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-08-26T19:37:16.3715031Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-08-26T19:37:16.3715635Z * [new branch] dev/joona/topk_newapi -> origin/dev/joona/topk_newapi 2025-08-26T19:37:16.3716147Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-08-26T19:37:16.3716681Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-08-26T19:37:16.3717319Z * [new branch] disable -> origin/disable 2025-08-26T19:37:16.3717772Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-08-26T19:37:16.3718281Z * [new branch] eigen_for_sparse_addmm_v2 -> origin/eigen_for_sparse_addmm_v2 2025-08-26T19:37:16.3718827Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-08-26T19:37:16.3719386Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-08-26T19:37:16.3719958Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-08-26T19:37:16.3720565Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-08-26T19:37:16.3721156Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-08-26T19:37:16.3721714Z * [new branch] enable-b200-benchmark -> origin/enable-b200-benchmark 2025-08-26T19:37:16.3722226Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-08-26T19:37:16.3722679Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-08-26T19:37:16.3723140Z * [new branch] eqy-patch-3 -> origin/eqy-patch-3 2025-08-26T19:37:16.3723589Z * [new branch] eqy-patch-4 -> origin/eqy-patch-4 2025-08-26T19:37:16.3724103Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-08-26T19:37:16.3724670Z * [new branch] exclamaforte/amd-ma -> origin/exclamaforte/amd-ma 2025-08-26T19:37:16.3725334Z * [new branch] exclamaforte/bump-transformer-version -> origin/exclamaforte/bump-transformer-version 2025-08-26T19:37:16.3726114Z * [new branch] exclamaforte/clear-feedback-savers -> origin/exclamaforte/clear-feedback-savers 2025-08-26T19:37:16.3726867Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-08-26T19:37:16.3728258Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-08-26T19:37:16.3729004Z * [new branch] exclamaforte/do_bench_refactor -> origin/exclamaforte/do_bench_refactor 2025-08-26T19:37:16.3729690Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-08-26T19:37:16.3730468Z * [new branch] exclamaforte/fix-exhaustive-autotuning -> origin/exclamaforte/fix-exhaustive-autotuning 2025-08-26T19:37:16.3731264Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-08-26T19:37:16.3732087Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-08-26T19:37:16.3732823Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-08-26T19:37:16.3733451Z * [new branch] exclamaforte/gemm-benchmark-run -> origin/exclamaforte/gemm-benchmark-run 2025-08-26T19:37:16.3734129Z * [new branch] exclamaforte/gemm-export-model -> origin/exclamaforte/gemm-export-model 2025-08-26T19:37:16.3734749Z * [new branch] exclamaforte/gemm-model -> origin/exclamaforte/gemm-model 2025-08-26T19:37:16.3735478Z * [new branch] exclamaforte/gemm-model-all-data-collection -> origin/exclamaforte/gemm-model-all-data-collection 2025-08-26T19:37:16.3736222Z * [new branch] exclamaforte/gemm-to-amd -> origin/exclamaforte/gemm-to-amd 2025-08-26T19:37:16.4137065Z * [new branch] exclamaforte/just-gemm-model -> origin/exclamaforte/just-gemm-model 2025-08-26T19:37:16.4137853Z * [new branch] exclamaforte/just-gemm-model-no-refactor -> origin/exclamaforte/just-gemm-model-no-refactor 2025-08-26T19:37:16.4138814Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-08-26T19:37:16.4139448Z * [new branch] exclamaforte/profiler-combo -> origin/exclamaforte/profiler-combo 2025-08-26T19:37:16.4140126Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-08-26T19:37:16.4140871Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-08-26T19:37:16.4141667Z * [new branch] exclamaforte/update-autotune-configs-2 -> origin/exclamaforte/update-autotune-configs-2 2025-08-26T19:37:16.4142401Z * [new branch] exclamforte/gemm-model-final -> origin/exclamforte/gemm-model-final 2025-08-26T19:37:16.4142972Z * [new branch] exec -> origin/exec 2025-08-26T19:37:16.4143463Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-08-26T19:37:16.4143991Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-08-26T19:37:16.4144478Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-08-26T19:37:16.4144968Z * [new branch] export-D70112642 -> origin/export-D70112642 2025-08-26T19:37:16.4145435Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-08-26T19:37:16.4145923Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-08-26T19:37:16.4146392Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-08-26T19:37:16.4146879Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-08-26T19:37:16.4147363Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-08-26T19:37:16.4147832Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-08-26T19:37:16.4148318Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-08-26T19:37:16.4148885Z * [new branch] export-D76080931 -> origin/export-D76080931 2025-08-26T19:37:16.4149368Z * [new branch] export-D76463347 -> origin/export-D76463347 2025-08-26T19:37:16.4149851Z * [new branch] export-D76797250 -> origin/export-D76797250 2025-08-26T19:37:16.4150318Z * [new branch] export-D76885271 -> origin/export-D76885271 2025-08-26T19:37:16.4150808Z * [new branch] export-D76885620 -> origin/export-D76885620 2025-08-26T19:37:16.4151278Z * [new branch] export-D76936623 -> origin/export-D76936623 2025-08-26T19:37:16.4151771Z * [new branch] export-D76958268 -> origin/export-D76958268 2025-08-26T19:37:16.4152261Z * [new branch] export-D78308105 -> origin/export-D78308105 2025-08-26T19:37:16.4152730Z * [new branch] export-D78375400 -> origin/export-D78375400 2025-08-26T19:37:16.4153219Z * [new branch] export-D78431305 -> origin/export-D78431305 2025-08-26T19:37:16.4153687Z * [new branch] export-D78580107 -> origin/export-D78580107 2025-08-26T19:37:16.4154175Z * [new branch] export-D78822171 -> origin/export-D78822171 2025-08-26T19:37:16.4154646Z * [new branch] export-D78822351 -> origin/export-D78822351 2025-08-26T19:37:16.4155131Z * [new branch] export-D78822507 -> origin/export-D78822507 2025-08-26T19:37:16.4155611Z * [new branch] export-D78826994 -> origin/export-D78826994 2025-08-26T19:37:16.4156082Z * [new branch] export-D78894142 -> origin/export-D78894142 2025-08-26T19:37:16.4156659Z * [new branch] export-D78894324 -> origin/export-D78894324 2025-08-26T19:37:16.4157120Z * [new branch] export-D78929245 -> origin/export-D78929245 2025-08-26T19:37:16.4157591Z * [new branch] export-D78934925 -> origin/export-D78934925 2025-08-26T19:37:16.4158067Z * [new branch] export-D78953203 -> origin/export-D78953203 2025-08-26T19:37:16.4158522Z * [new branch] export-D78953229 -> origin/export-D78953229 2025-08-26T19:37:16.4158990Z * [new branch] export-D78957093 -> origin/export-D78957093 2025-08-26T19:37:16.4159446Z * [new branch] export-D78957389 -> origin/export-D78957389 2025-08-26T19:37:16.4159909Z * [new branch] export-D78979812 -> origin/export-D78979812 2025-08-26T19:37:16.4160373Z * [new branch] export-D78996107 -> origin/export-D78996107 2025-08-26T19:37:16.4160835Z * [new branch] export-D79026433 -> origin/export-D79026433 2025-08-26T19:37:16.4161383Z * [new branch] export-D79230339 -> origin/export-D79230339 2025-08-26T19:37:16.4566594Z * [new branch] export-D79319835 -> origin/export-D79319835 2025-08-26T19:37:16.4567195Z * [new branch] export-D79328456 -> origin/export-D79328456 2025-08-26T19:37:16.4567694Z * [new branch] export-D79534608 -> origin/export-D79534608 2025-08-26T19:37:16.4568160Z * [new branch] export-D79647167 -> origin/export-D79647167 2025-08-26T19:37:16.4568629Z * [new branch] export-D79751098 -> origin/export-D79751098 2025-08-26T19:37:16.4569094Z * [new branch] export-D79785974 -> origin/export-D79785974 2025-08-26T19:37:16.4569556Z * [new branch] export-D80025417 -> origin/export-D80025417 2025-08-26T19:37:16.4570026Z * [new branch] export-D80120333 -> origin/export-D80120333 2025-08-26T19:37:16.4570482Z * [new branch] export-D80214882 -> origin/export-D80214882 2025-08-26T19:37:16.4571097Z * [new branch] export-D80319069 -> origin/export-D80319069 2025-08-26T19:37:16.4571556Z * [new branch] export-D80321215 -> origin/export-D80321215 2025-08-26T19:37:16.4572026Z * [new branch] export-D80503451 -> origin/export-D80503451 2025-08-26T19:37:16.4572484Z * [new branch] export-D80771648 -> origin/export-D80771648 2025-08-26T19:37:16.4572952Z * [new branch] export-D80823877 -> origin/export-D80823877 2025-08-26T19:37:16.4573432Z * [new branch] export-D80948073 -> origin/export-D80948073 2025-08-26T19:37:16.4573891Z * [new branch] export-D80958642 -> origin/export-D80958642 2025-08-26T19:37:16.4574397Z * [new branch] export-D80970483 -> origin/export-D80970483 2025-08-26T19:37:16.4574852Z * [new branch] export-D81054193 -> origin/export-D81054193 2025-08-26T19:37:16.4575328Z * [new branch] export-D81060182 -> origin/export-D81060182 2025-08-26T19:37:16.4575928Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-08-26T19:37:16.4576583Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-08-26T19:37:16.4577109Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-08-26T19:37:16.4577562Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-08-26T19:37:16.4578021Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-08-26T19:37:16.4578436Z * [new branch] fca -> origin/fca 2025-08-26T19:37:16.4578935Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-08-26T19:37:16.4579348Z * [new branch] fca5 -> origin/fca5 2025-08-26T19:37:16.4579870Z * [new branch] feature/function-numa-binding -> origin/feature/function-numa-binding 2025-08-26T19:37:16.4580570Z * [new branch] feature/function-numa-binding-take2 -> origin/feature/function-numa-binding-take2 2025-08-26T19:37:16.4581223Z * [new branch] feature/numa-nproc-fix -> origin/feature/numa-nproc-fix 2025-08-26T19:37:16.4581823Z * [new branch] feature/numa-signpost-serialize -> origin/feature/numa-signpost-serialize 2025-08-26T19:37:16.4582464Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-08-26T19:37:16.4583228Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-08-26T19:37:16.4584093Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-08-26T19:37:16.4584767Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-08-26T19:37:16.4585264Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-08-26T19:37:16.4585755Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-08-26T19:37:16.4586236Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-08-26T19:37:16.4586739Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-08-26T19:37:16.4587252Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-08-26T19:37:16.4587764Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-08-26T19:37:16.4588279Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-08-26T19:37:16.4588809Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-08-26T19:37:16.4589438Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-08-26T19:37:16.4589964Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-08-26T19:37:16.4590422Z * [new branch] fix -> origin/fix 2025-08-26T19:37:16.4590918Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-08-26T19:37:16.5015710Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-08-26T19:37:16.5016245Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-08-26T19:37:16.5016997Z * [new branch] fix-distributed-warning -> origin/fix-distributed-warning 2025-08-26T19:37:16.5017669Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-08-26T19:37:16.5018349Z * [new branch] fix-mps-benchmark -> origin/fix-mps-benchmark 2025-08-26T19:37:16.5018904Z * [new branch] fix-rlease-feature-template -> origin/fix-rlease-feature-template 2025-08-26T19:37:16.5019569Z * [new branch] fix-run-condition-upload-results -> origin/fix-run-condition-upload-results 2025-08-26T19:37:16.5020165Z * [new branch] fix-torchbench -> origin/fix-torchbench 2025-08-26T19:37:16.5020598Z * [new branch] fix_153389 -> origin/fix_153389 2025-08-26T19:37:16.5021051Z * [new branch] fix_fsdp_rs_bucket2 -> origin/fix_fsdp_rs_bucket2 2025-08-26T19:37:16.5021562Z * [new branch] fix_inductor_peridic_tests -> origin/fix_inductor_peridic_tests 2025-08-26T19:37:16.5022057Z * [new branch] fix_ubn_159469 -> origin/fix_ubn_159469 2025-08-26T19:37:16.5022661Z * [new branch] fixes-triage -> origin/fixes-triage 2025-08-26T19:37:16.5023212Z * [new branch] flash_decoding_cpu -> origin/flash_decoding_cpu 2025-08-26T19:37:16.5023686Z * [new branch] flex-flash -> origin/flex-flash 2025-08-26T19:37:16.5024126Z * [new branch] flex-lowering -> origin/flex-lowering 2025-08-26T19:37:16.5024582Z * [new branch] flex-warning -> origin/flex-warning 2025-08-26T19:37:16.5025109Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-08-26T19:37:16.5025634Z * [new branch] flex_flash -> origin/flex_flash 2025-08-26T19:37:16.5026117Z * [new branch] flexdecode-gqa-groups -> origin/flexdecode-gqa-groups 2025-08-26T19:37:16.5026700Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-08-26T19:37:16.5027346Z * [new branch] fmassa/try_fix_ac_tag_propagation -> origin/fmassa/try_fix_ac_tag_propagation 2025-08-26T19:37:16.5027914Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-08-26T19:37:16.5028373Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-08-26T19:37:16.5028808Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-08-26T19:37:16.5029226Z * [new branch] fx_cpp -> origin/fx_cpp 2025-08-26T19:37:16.5029653Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-08-26T19:37:16.5030108Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-08-26T19:37:16.5030584Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-08-26T19:37:16.5031053Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-08-26T19:37:16.5031503Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-08-26T19:37:16.5032049Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-08-26T19:37:16.5032561Z * [new branch] gh/ColinPeppler/78/base -> origin/gh/ColinPeppler/78/base 2025-08-26T19:37:16.5033126Z * [new branch] gh/ColinPeppler/78/head -> origin/gh/ColinPeppler/78/head 2025-08-26T19:37:16.5033686Z * [new branch] gh/ColinPeppler/78/orig -> origin/gh/ColinPeppler/78/orig 2025-08-26T19:37:16.5034229Z * [new branch] gh/ColinPeppler/79/base -> origin/gh/ColinPeppler/79/base 2025-08-26T19:37:16.5034783Z * [new branch] gh/ColinPeppler/79/head -> origin/gh/ColinPeppler/79/head 2025-08-26T19:37:16.5035326Z * [new branch] gh/ColinPeppler/79/orig -> origin/gh/ColinPeppler/79/orig 2025-08-26T19:37:16.5035855Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-08-26T19:37:16.5036366Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-08-26T19:37:16.5036874Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-08-26T19:37:16.5037382Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-08-26T19:37:16.5037874Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-08-26T19:37:16.5038372Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-08-26T19:37:16.5038862Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-08-26T19:37:16.5039365Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-08-26T19:37:16.5039880Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-08-26T19:37:16.5471668Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-08-26T19:37:16.5472256Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-08-26T19:37:16.5472760Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-08-26T19:37:16.5473235Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-08-26T19:37:16.5473716Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-08-26T19:37:16.5474181Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-08-26T19:37:16.5474658Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-08-26T19:37:16.5475136Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-08-26T19:37:16.5475600Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-08-26T19:37:16.5477501Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-08-26T19:37:16.5477976Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-08-26T19:37:16.5478457Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-08-26T19:37:16.5478933Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-08-26T19:37:16.5479399Z * [new branch] gh/H-Huang/187/base -> origin/gh/H-Huang/187/base 2025-08-26T19:37:16.5479866Z * [new branch] gh/H-Huang/187/head -> origin/gh/H-Huang/187/head 2025-08-26T19:37:16.5480329Z * [new branch] gh/H-Huang/187/orig -> origin/gh/H-Huang/187/orig 2025-08-26T19:37:16.5480807Z * [new branch] gh/H-Huang/196/base -> origin/gh/H-Huang/196/base 2025-08-26T19:37:16.5481272Z * [new branch] gh/H-Huang/196/head -> origin/gh/H-Huang/196/head 2025-08-26T19:37:16.5481755Z * [new branch] gh/H-Huang/196/orig -> origin/gh/H-Huang/196/orig 2025-08-26T19:37:16.5483764Z * [new branch] gh/H-Huang/197/base -> origin/gh/H-Huang/197/base 2025-08-26T19:37:16.5484243Z * [new branch] gh/H-Huang/197/head -> origin/gh/H-Huang/197/head 2025-08-26T19:37:16.5484735Z * [new branch] gh/H-Huang/197/orig -> origin/gh/H-Huang/197/orig 2025-08-26T19:37:16.5485203Z * [new branch] gh/H-Huang/198/base -> origin/gh/H-Huang/198/base 2025-08-26T19:37:16.5485684Z * [new branch] gh/H-Huang/198/head -> origin/gh/H-Huang/198/head 2025-08-26T19:37:16.5486156Z * [new branch] gh/H-Huang/198/orig -> origin/gh/H-Huang/198/orig 2025-08-26T19:37:16.5486624Z * [new branch] gh/H-Huang/200/base -> origin/gh/H-Huang/200/base 2025-08-26T19:37:16.5487098Z * [new branch] gh/H-Huang/200/head -> origin/gh/H-Huang/200/head 2025-08-26T19:37:16.5487584Z * [new branch] gh/H-Huang/200/orig -> origin/gh/H-Huang/200/orig 2025-08-26T19:37:16.5489464Z * [new branch] gh/H-Huang/201/base -> origin/gh/H-Huang/201/base 2025-08-26T19:37:16.5489941Z * [new branch] gh/H-Huang/201/head -> origin/gh/H-Huang/201/head 2025-08-26T19:37:16.5490409Z * [new branch] gh/H-Huang/201/orig -> origin/gh/H-Huang/201/orig 2025-08-26T19:37:16.5490892Z * [new branch] gh/H-Huang/202/base -> origin/gh/H-Huang/202/base 2025-08-26T19:37:16.5491357Z * [new branch] gh/H-Huang/202/head -> origin/gh/H-Huang/202/head 2025-08-26T19:37:16.5491832Z * [new branch] gh/H-Huang/202/orig -> origin/gh/H-Huang/202/orig 2025-08-26T19:37:16.5492303Z * [new branch] gh/H-Huang/203/base -> origin/gh/H-Huang/203/base 2025-08-26T19:37:16.5492886Z * [new branch] gh/H-Huang/203/head -> origin/gh/H-Huang/203/head 2025-08-26T19:37:16.5493371Z * [new branch] gh/H-Huang/203/orig -> origin/gh/H-Huang/203/orig 2025-08-26T19:37:16.5493847Z * [new branch] gh/H-Huang/204/base -> origin/gh/H-Huang/204/base 2025-08-26T19:37:16.5495708Z * [new branch] gh/H-Huang/204/head -> origin/gh/H-Huang/204/head 2025-08-26T19:37:16.5496181Z * [new branch] gh/H-Huang/204/orig -> origin/gh/H-Huang/204/orig 2025-08-26T19:37:16.5496656Z * [new branch] gh/H-Huang/205/base -> origin/gh/H-Huang/205/base 2025-08-26T19:37:16.5497142Z * [new branch] gh/H-Huang/205/head -> origin/gh/H-Huang/205/head 2025-08-26T19:37:16.5497606Z * [new branch] gh/H-Huang/205/orig -> origin/gh/H-Huang/205/orig 2025-08-26T19:37:16.5498076Z * [new branch] gh/H-Huang/206/base -> origin/gh/H-Huang/206/base 2025-08-26T19:37:16.5498545Z * [new branch] gh/H-Huang/206/head -> origin/gh/H-Huang/206/head 2025-08-26T19:37:16.5499021Z * [new branch] gh/H-Huang/206/orig -> origin/gh/H-Huang/206/orig 2025-08-26T19:37:16.5499495Z * [new branch] gh/H-Huang/207/base -> origin/gh/H-Huang/207/base 2025-08-26T19:37:16.6143823Z * [new branch] gh/H-Huang/207/head -> origin/gh/H-Huang/207/head 2025-08-26T19:37:16.6144442Z * [new branch] gh/H-Huang/207/orig -> origin/gh/H-Huang/207/orig 2025-08-26T19:37:16.6144923Z * [new branch] gh/H-Huang/208/base -> origin/gh/H-Huang/208/base 2025-08-26T19:37:16.6145407Z * [new branch] gh/H-Huang/208/head -> origin/gh/H-Huang/208/head 2025-08-26T19:37:16.6145884Z * [new branch] gh/H-Huang/208/orig -> origin/gh/H-Huang/208/orig 2025-08-26T19:37:16.6146355Z * [new branch] gh/H-Huang/209/base -> origin/gh/H-Huang/209/base 2025-08-26T19:37:16.6146845Z * [new branch] gh/H-Huang/209/head -> origin/gh/H-Huang/209/head 2025-08-26T19:37:16.6147484Z * [new branch] gh/H-Huang/209/orig -> origin/gh/H-Huang/209/orig 2025-08-26T19:37:16.6147963Z * [new branch] gh/H-Huang/210/base -> origin/gh/H-Huang/210/base 2025-08-26T19:37:16.6148444Z * [new branch] gh/H-Huang/210/head -> origin/gh/H-Huang/210/head 2025-08-26T19:37:16.6148911Z * [new branch] gh/H-Huang/210/orig -> origin/gh/H-Huang/210/orig 2025-08-26T19:37:16.6149441Z * [new branch] gh/H-Huang/211/base -> origin/gh/H-Huang/211/base 2025-08-26T19:37:16.6149947Z * [new branch] gh/H-Huang/211/head -> origin/gh/H-Huang/211/head 2025-08-26T19:37:16.6150439Z * [new branch] gh/H-Huang/211/orig -> origin/gh/H-Huang/211/orig 2025-08-26T19:37:16.6150918Z * [new branch] gh/H-Huang/212/base -> origin/gh/H-Huang/212/base 2025-08-26T19:37:16.6151393Z * [new branch] gh/H-Huang/212/head -> origin/gh/H-Huang/212/head 2025-08-26T19:37:16.6151871Z * [new branch] gh/H-Huang/212/orig -> origin/gh/H-Huang/212/orig 2025-08-26T19:37:16.6152388Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-08-26T19:37:16.6152960Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-08-26T19:37:16.6153546Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-08-26T19:37:16.6154087Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-08-26T19:37:16.6154633Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-08-26T19:37:16.6155213Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-08-26T19:37:16.6156650Z * [new branch] gh/IvanKobzarev/115/base -> origin/gh/IvanKobzarev/115/base 2025-08-26T19:37:16.6157207Z * [new branch] gh/IvanKobzarev/115/head -> origin/gh/IvanKobzarev/115/head 2025-08-26T19:37:16.6157747Z * [new branch] gh/IvanKobzarev/115/orig -> origin/gh/IvanKobzarev/115/orig 2025-08-26T19:37:16.6158302Z * [new branch] gh/IvanKobzarev/116/base -> origin/gh/IvanKobzarev/116/base 2025-08-26T19:37:16.6158846Z * [new branch] gh/IvanKobzarev/116/head -> origin/gh/IvanKobzarev/116/head 2025-08-26T19:37:16.6159393Z * [new branch] gh/IvanKobzarev/116/orig -> origin/gh/IvanKobzarev/116/orig 2025-08-26T19:37:16.6159941Z * [new branch] gh/IvanKobzarev/118/base -> origin/gh/IvanKobzarev/118/base 2025-08-26T19:37:16.6160483Z * [new branch] gh/IvanKobzarev/118/head -> origin/gh/IvanKobzarev/118/head 2025-08-26T19:37:16.6161035Z * [new branch] gh/IvanKobzarev/118/orig -> origin/gh/IvanKobzarev/118/orig 2025-08-26T19:37:16.6161659Z * [new branch] gh/IvanKobzarev/124/base -> origin/gh/IvanKobzarev/124/base 2025-08-26T19:37:16.6162224Z * [new branch] gh/IvanKobzarev/124/head -> origin/gh/IvanKobzarev/124/head 2025-08-26T19:37:16.6162803Z * [new branch] gh/IvanKobzarev/124/orig -> origin/gh/IvanKobzarev/124/orig 2025-08-26T19:37:16.6163353Z * [new branch] gh/IvanKobzarev/126/base -> origin/gh/IvanKobzarev/126/base 2025-08-26T19:37:16.6163905Z * [new branch] gh/IvanKobzarev/126/head -> origin/gh/IvanKobzarev/126/head 2025-08-26T19:37:16.6164442Z * [new branch] gh/IvanKobzarev/126/orig -> origin/gh/IvanKobzarev/126/orig 2025-08-26T19:37:16.6164986Z * [new branch] gh/IvanKobzarev/127/base -> origin/gh/IvanKobzarev/127/base 2025-08-26T19:37:16.6165530Z * [new branch] gh/IvanKobzarev/127/head -> origin/gh/IvanKobzarev/127/head 2025-08-26T19:37:16.6166084Z * [new branch] gh/IvanKobzarev/127/orig -> origin/gh/IvanKobzarev/127/orig 2025-08-26T19:37:16.6166728Z * [new branch] gh/IvanKobzarev/128/base -> origin/gh/IvanKobzarev/128/base 2025-08-26T19:37:16.6167375Z * [new branch] gh/IvanKobzarev/128/head -> origin/gh/IvanKobzarev/128/head 2025-08-26T19:37:16.6167932Z * [new branch] gh/IvanKobzarev/128/orig -> origin/gh/IvanKobzarev/128/orig 2025-08-26T19:37:16.6168470Z * [new branch] gh/IvanKobzarev/132/base -> origin/gh/IvanKobzarev/132/base 2025-08-26T19:37:16.6582183Z * [new branch] gh/IvanKobzarev/132/head -> origin/gh/IvanKobzarev/132/head 2025-08-26T19:37:16.6582786Z * [new branch] gh/IvanKobzarev/132/orig -> origin/gh/IvanKobzarev/132/orig 2025-08-26T19:37:16.6583382Z * [new branch] gh/IvanKobzarev/133/base -> origin/gh/IvanKobzarev/133/base 2025-08-26T19:37:16.6584016Z * [new branch] gh/IvanKobzarev/133/head -> origin/gh/IvanKobzarev/133/head 2025-08-26T19:37:16.6584620Z * [new branch] gh/IvanKobzarev/133/orig -> origin/gh/IvanKobzarev/133/orig 2025-08-26T19:37:16.6585158Z * [new branch] gh/IvanKobzarev/134/base -> origin/gh/IvanKobzarev/134/base 2025-08-26T19:37:16.6585703Z * [new branch] gh/IvanKobzarev/134/head -> origin/gh/IvanKobzarev/134/head 2025-08-26T19:37:16.6586238Z * [new branch] gh/IvanKobzarev/134/orig -> origin/gh/IvanKobzarev/134/orig 2025-08-26T19:37:16.6586783Z * [new branch] gh/IvanKobzarev/135/base -> origin/gh/IvanKobzarev/135/base 2025-08-26T19:37:16.6587327Z * [new branch] gh/IvanKobzarev/135/head -> origin/gh/IvanKobzarev/135/head 2025-08-26T19:37:16.6587865Z * [new branch] gh/IvanKobzarev/135/orig -> origin/gh/IvanKobzarev/135/orig 2025-08-26T19:37:16.6588445Z * [new branch] gh/IvanKobzarev/136/base -> origin/gh/IvanKobzarev/136/base 2025-08-26T19:37:16.6589130Z * [new branch] gh/IvanKobzarev/136/head -> origin/gh/IvanKobzarev/136/head 2025-08-26T19:37:16.6589686Z * [new branch] gh/IvanKobzarev/136/orig -> origin/gh/IvanKobzarev/136/orig 2025-08-26T19:37:16.6590240Z * [new branch] gh/IvanKobzarev/137/base -> origin/gh/IvanKobzarev/137/base 2025-08-26T19:37:16.6590781Z * [new branch] gh/IvanKobzarev/137/head -> origin/gh/IvanKobzarev/137/head 2025-08-26T19:37:16.6591323Z * [new branch] gh/IvanKobzarev/137/orig -> origin/gh/IvanKobzarev/137/orig 2025-08-26T19:37:16.6591858Z * [new branch] gh/IvanKobzarev/138/base -> origin/gh/IvanKobzarev/138/base 2025-08-26T19:37:16.6592409Z * [new branch] gh/IvanKobzarev/138/head -> origin/gh/IvanKobzarev/138/head 2025-08-26T19:37:16.6592945Z * [new branch] gh/IvanKobzarev/138/orig -> origin/gh/IvanKobzarev/138/orig 2025-08-26T19:37:16.6593497Z * [new branch] gh/IvanKobzarev/139/base -> origin/gh/IvanKobzarev/139/base 2025-08-26T19:37:16.6594048Z * [new branch] gh/IvanKobzarev/139/head -> origin/gh/IvanKobzarev/139/head 2025-08-26T19:37:16.6594584Z * [new branch] gh/IvanKobzarev/139/orig -> origin/gh/IvanKobzarev/139/orig 2025-08-26T19:37:16.6595131Z * [new branch] gh/IvanKobzarev/140/base -> origin/gh/IvanKobzarev/140/base 2025-08-26T19:37:16.6595667Z * [new branch] gh/IvanKobzarev/140/head -> origin/gh/IvanKobzarev/140/head 2025-08-26T19:37:16.6596214Z * [new branch] gh/IvanKobzarev/140/orig -> origin/gh/IvanKobzarev/140/orig 2025-08-26T19:37:16.6596753Z * [new branch] gh/IvanKobzarev/141/base -> origin/gh/IvanKobzarev/141/base 2025-08-26T19:37:16.6597288Z * [new branch] gh/IvanKobzarev/141/head -> origin/gh/IvanKobzarev/141/head 2025-08-26T19:37:16.6597829Z * [new branch] gh/IvanKobzarev/141/orig -> origin/gh/IvanKobzarev/141/orig 2025-08-26T19:37:16.6598416Z * [new branch] gh/IvanKobzarev/142/base -> origin/gh/IvanKobzarev/142/base 2025-08-26T19:37:16.6599680Z * [new branch] gh/IvanKobzarev/142/head -> origin/gh/IvanKobzarev/142/head 2025-08-26T19:37:16.6600247Z * [new branch] gh/IvanKobzarev/142/orig -> origin/gh/IvanKobzarev/142/orig 2025-08-26T19:37:16.6600787Z * [new branch] gh/IvanKobzarev/143/base -> origin/gh/IvanKobzarev/143/base 2025-08-26T19:37:16.6601337Z * [new branch] gh/IvanKobzarev/143/head -> origin/gh/IvanKobzarev/143/head 2025-08-26T19:37:16.6601871Z * [new branch] gh/IvanKobzarev/143/orig -> origin/gh/IvanKobzarev/143/orig 2025-08-26T19:37:16.6602429Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-08-26T19:37:16.6602976Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-08-26T19:37:16.6603503Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-08-26T19:37:16.6604033Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-08-26T19:37:16.6604554Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-08-26T19:37:16.6605083Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-08-26T19:37:16.6605605Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-08-26T19:37:16.6606127Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-08-26T19:37:16.6606652Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-08-26T19:37:16.6607177Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-08-26T19:37:16.7190735Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-08-26T19:37:16.7191490Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-08-26T19:37:16.7192033Z * [new branch] gh/PaliC/1/base -> origin/gh/PaliC/1/base 2025-08-26T19:37:16.7192523Z * [new branch] gh/PaliC/1/head -> origin/gh/PaliC/1/head 2025-08-26T19:37:16.7192978Z * [new branch] gh/PaliC/1/orig -> origin/gh/PaliC/1/orig 2025-08-26T19:37:16.7193449Z * [new branch] gh/PaliC/12/base -> origin/gh/PaliC/12/base 2025-08-26T19:37:16.7193998Z * [new branch] gh/PaliC/12/head -> origin/gh/PaliC/12/head 2025-08-26T19:37:16.7194453Z * [new branch] gh/PaliC/12/orig -> origin/gh/PaliC/12/orig 2025-08-26T19:37:16.7194919Z * [new branch] gh/PaliC/13/base -> origin/gh/PaliC/13/base 2025-08-26T19:37:16.7195379Z * [new branch] gh/PaliC/13/head -> origin/gh/PaliC/13/head 2025-08-26T19:37:16.7195851Z * [new branch] gh/PaliC/13/orig -> origin/gh/PaliC/13/orig 2025-08-26T19:37:16.7196327Z * [new branch] gh/PaliC/14/base -> origin/gh/PaliC/14/base 2025-08-26T19:37:16.7196780Z * [new branch] gh/PaliC/14/head -> origin/gh/PaliC/14/head 2025-08-26T19:37:16.7197239Z * [new branch] gh/PaliC/14/orig -> origin/gh/PaliC/14/orig 2025-08-26T19:37:16.7197698Z * [new branch] gh/PaliC/16/base -> origin/gh/PaliC/16/base 2025-08-26T19:37:16.7198166Z * [new branch] gh/PaliC/16/head -> origin/gh/PaliC/16/head 2025-08-26T19:37:16.7198635Z * [new branch] gh/PaliC/16/orig -> origin/gh/PaliC/16/orig 2025-08-26T19:37:16.7199096Z * [new branch] gh/PaliC/17/base -> origin/gh/PaliC/17/base 2025-08-26T19:37:16.7199569Z * [new branch] gh/PaliC/17/head -> origin/gh/PaliC/17/head 2025-08-26T19:37:16.7200028Z * [new branch] gh/PaliC/17/orig -> origin/gh/PaliC/17/orig 2025-08-26T19:37:16.7200580Z * [new branch] gh/PaliC/18/base -> origin/gh/PaliC/18/base 2025-08-26T19:37:16.7201045Z * [new branch] gh/PaliC/18/head -> origin/gh/PaliC/18/head 2025-08-26T19:37:16.7201522Z * [new branch] gh/PaliC/18/orig -> origin/gh/PaliC/18/orig 2025-08-26T19:37:16.7201995Z * [new branch] gh/PaliC/19/base -> origin/gh/PaliC/19/base 2025-08-26T19:37:16.7202451Z * [new branch] gh/PaliC/19/head -> origin/gh/PaliC/19/head 2025-08-26T19:37:16.7202975Z * [new branch] gh/PaliC/19/orig -> origin/gh/PaliC/19/orig 2025-08-26T19:37:16.7203434Z * [new branch] gh/PaliC/2/base -> origin/gh/PaliC/2/base 2025-08-26T19:37:16.7203899Z * [new branch] gh/PaliC/2/head -> origin/gh/PaliC/2/head 2025-08-26T19:37:16.7204355Z * [new branch] gh/PaliC/2/orig -> origin/gh/PaliC/2/orig 2025-08-26T19:37:16.7204812Z * [new branch] gh/PaliC/20/base -> origin/gh/PaliC/20/base 2025-08-26T19:37:16.7205278Z * [new branch] gh/PaliC/20/head -> origin/gh/PaliC/20/head 2025-08-26T19:37:16.7205740Z * [new branch] gh/PaliC/20/orig -> origin/gh/PaliC/20/orig 2025-08-26T19:37:16.7206207Z * [new branch] gh/PaliC/21/base -> origin/gh/PaliC/21/base 2025-08-26T19:37:16.7206677Z * [new branch] gh/PaliC/21/head -> origin/gh/PaliC/21/head 2025-08-26T19:37:16.7207139Z * [new branch] gh/PaliC/21/orig -> origin/gh/PaliC/21/orig 2025-08-26T19:37:16.7207603Z * [new branch] gh/PaliC/22/base -> origin/gh/PaliC/22/base 2025-08-26T19:37:16.7208156Z * [new branch] gh/PaliC/22/head -> origin/gh/PaliC/22/head 2025-08-26T19:37:16.7208625Z * [new branch] gh/PaliC/22/orig -> origin/gh/PaliC/22/orig 2025-08-26T19:37:16.7209094Z * [new branch] gh/PaliC/23/base -> origin/gh/PaliC/23/base 2025-08-26T19:37:16.7209562Z * [new branch] gh/PaliC/23/head -> origin/gh/PaliC/23/head 2025-08-26T19:37:16.7210034Z * [new branch] gh/PaliC/23/orig -> origin/gh/PaliC/23/orig 2025-08-26T19:37:16.7211684Z * [new branch] gh/PaliC/24/base -> origin/gh/PaliC/24/base 2025-08-26T19:37:16.7212197Z * [new branch] gh/PaliC/24/head -> origin/gh/PaliC/24/head 2025-08-26T19:37:16.7212663Z * [new branch] gh/PaliC/24/orig -> origin/gh/PaliC/24/orig 2025-08-26T19:37:16.7213172Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-08-26T19:37:16.7213714Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-08-26T19:37:16.7214245Z * [new branch] gh/PaulZhang12/20/base -> origin/gh/PaulZhang12/20/base 2025-08-26T19:37:16.7214772Z * [new branch] gh/PaulZhang12/20/head -> origin/gh/PaulZhang12/20/head 2025-08-26T19:37:16.7215285Z * [new branch] gh/PaulZhang12/20/orig -> origin/gh/PaulZhang12/20/orig 2025-08-26T19:37:16.7722416Z * [new branch] gh/PaulZhang12/21/base -> origin/gh/PaulZhang12/21/base 2025-08-26T19:37:16.7723017Z * [new branch] gh/PaulZhang12/21/head -> origin/gh/PaulZhang12/21/head 2025-08-26T19:37:16.7723561Z * [new branch] gh/PaulZhang12/21/orig -> origin/gh/PaulZhang12/21/orig 2025-08-26T19:37:16.7724086Z * [new branch] gh/PaulZhang12/22/base -> origin/gh/PaulZhang12/22/base 2025-08-26T19:37:16.7724603Z * [new branch] gh/PaulZhang12/22/head -> origin/gh/PaulZhang12/22/head 2025-08-26T19:37:16.7725140Z * [new branch] gh/PaulZhang12/22/orig -> origin/gh/PaulZhang12/22/orig 2025-08-26T19:37:16.7725863Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-08-26T19:37:16.7726427Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-08-26T19:37:16.7726978Z * [new branch] gh/Sidharth123-cpu/24/base -> origin/gh/Sidharth123-cpu/24/base 2025-08-26T19:37:16.7727550Z * [new branch] gh/Sidharth123-cpu/25/base -> origin/gh/Sidharth123-cpu/25/base 2025-08-26T19:37:16.7728098Z * [new branch] gh/Sidharth123-cpu/26/base -> origin/gh/Sidharth123-cpu/26/base 2025-08-26T19:37:16.7728793Z * [new branch] gh/Sidharth123-cpu/27/base -> origin/gh/Sidharth123-cpu/27/base 2025-08-26T19:37:16.7729333Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-08-26T19:37:16.7729859Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-08-26T19:37:16.7730385Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-08-26T19:37:16.7730902Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-08-26T19:37:16.7731453Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-08-26T19:37:16.7732025Z * [new branch] gh/StrongerXi/133/base -> origin/gh/StrongerXi/133/base 2025-08-26T19:37:16.7732544Z * [new branch] gh/StrongerXi/133/head -> origin/gh/StrongerXi/133/head 2025-08-26T19:37:16.7733061Z * [new branch] gh/StrongerXi/133/orig -> origin/gh/StrongerXi/133/orig 2025-08-26T19:37:16.7733571Z * [new branch] gh/StrongerXi/134/base -> origin/gh/StrongerXi/134/base 2025-08-26T19:37:16.7734088Z * [new branch] gh/StrongerXi/134/head -> origin/gh/StrongerXi/134/head 2025-08-26T19:37:16.7734712Z * [new branch] gh/StrongerXi/134/orig -> origin/gh/StrongerXi/134/orig 2025-08-26T19:37:16.7735234Z * [new branch] gh/StrongerXi/136/base -> origin/gh/StrongerXi/136/base 2025-08-26T19:37:16.7735750Z * [new branch] gh/StrongerXi/136/head -> origin/gh/StrongerXi/136/head 2025-08-26T19:37:16.7736261Z * [new branch] gh/StrongerXi/136/orig -> origin/gh/StrongerXi/136/orig 2025-08-26T19:37:16.7736781Z * [new branch] gh/StrongerXi/137/base -> origin/gh/StrongerXi/137/base 2025-08-26T19:37:16.7737333Z * [new branch] gh/StrongerXi/137/head -> origin/gh/StrongerXi/137/head 2025-08-26T19:37:16.7737933Z * [new branch] gh/StrongerXi/137/orig -> origin/gh/StrongerXi/137/orig 2025-08-26T19:37:16.7738451Z * [new branch] gh/StrongerXi/138/base -> origin/gh/StrongerXi/138/base 2025-08-26T19:37:16.7738970Z * [new branch] gh/StrongerXi/138/head -> origin/gh/StrongerXi/138/head 2025-08-26T19:37:16.7739492Z * [new branch] gh/StrongerXi/138/orig -> origin/gh/StrongerXi/138/orig 2025-08-26T19:37:16.7740004Z * [new branch] gh/StrongerXi/139/base -> origin/gh/StrongerXi/139/base 2025-08-26T19:37:16.7740523Z * [new branch] gh/StrongerXi/139/head -> origin/gh/StrongerXi/139/head 2025-08-26T19:37:16.7741029Z * [new branch] gh/StrongerXi/139/orig -> origin/gh/StrongerXi/139/orig 2025-08-26T19:37:16.7741546Z * [new branch] gh/StrongerXi/140/base -> origin/gh/StrongerXi/140/base 2025-08-26T19:37:16.7742061Z * [new branch] gh/StrongerXi/140/head -> origin/gh/StrongerXi/140/head 2025-08-26T19:37:16.7742566Z * [new branch] gh/StrongerXi/140/orig -> origin/gh/StrongerXi/140/orig 2025-08-26T19:37:16.7743181Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-08-26T19:37:16.7743744Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-08-26T19:37:16.7744361Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-08-26T19:37:16.7744879Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-08-26T19:37:16.7745383Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-08-26T19:37:16.7745890Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-08-26T19:37:16.7746380Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-08-26T19:37:16.8259428Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-08-26T19:37:16.8260007Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-08-26T19:37:16.8260506Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-08-26T19:37:16.8261020Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-08-26T19:37:16.8261528Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-08-26T19:37:16.8262005Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-08-26T19:37:16.8262490Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-08-26T19:37:16.8263053Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-08-26T19:37:16.8263558Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-08-26T19:37:16.8264046Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-08-26T19:37:16.8264533Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-08-26T19:37:16.8265188Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-08-26T19:37:16.8265674Z * [new branch] gh/XilunWu/146/base -> origin/gh/XilunWu/146/base 2025-08-26T19:37:16.8266173Z * [new branch] gh/XilunWu/146/head -> origin/gh/XilunWu/146/head 2025-08-26T19:37:16.8266655Z * [new branch] gh/XilunWu/146/orig -> origin/gh/XilunWu/146/orig 2025-08-26T19:37:16.8267157Z * [new branch] gh/XilunWu/147/base -> origin/gh/XilunWu/147/base 2025-08-26T19:37:16.8267647Z * [new branch] gh/XilunWu/147/head -> origin/gh/XilunWu/147/head 2025-08-26T19:37:16.8268132Z * [new branch] gh/XilunWu/147/orig -> origin/gh/XilunWu/147/orig 2025-08-26T19:37:16.8268624Z * [new branch] gh/XilunWu/148/base -> origin/gh/XilunWu/148/base 2025-08-26T19:37:16.8269103Z * [new branch] gh/XilunWu/148/head -> origin/gh/XilunWu/148/head 2025-08-26T19:37:16.8269597Z * [new branch] gh/XilunWu/148/orig -> origin/gh/XilunWu/148/orig 2025-08-26T19:37:16.8270095Z * [new branch] gh/XilunWu/149/base -> origin/gh/XilunWu/149/base 2025-08-26T19:37:16.8270580Z * [new branch] gh/XilunWu/149/head -> origin/gh/XilunWu/149/head 2025-08-26T19:37:16.8271068Z * [new branch] gh/XilunWu/149/orig -> origin/gh/XilunWu/149/orig 2025-08-26T19:37:16.8271545Z * [new branch] gh/XilunWu/150/base -> origin/gh/XilunWu/150/base 2025-08-26T19:37:16.8272032Z * [new branch] gh/XilunWu/150/head -> origin/gh/XilunWu/150/head 2025-08-26T19:37:16.8272522Z * [new branch] gh/XilunWu/150/orig -> origin/gh/XilunWu/150/orig 2025-08-26T19:37:16.8273000Z * [new branch] gh/XilunWu/151/base -> origin/gh/XilunWu/151/base 2025-08-26T19:37:16.8273488Z * [new branch] gh/XilunWu/151/head -> origin/gh/XilunWu/151/head 2025-08-26T19:37:16.8273981Z * [new branch] gh/XilunWu/151/orig -> origin/gh/XilunWu/151/orig 2025-08-26T19:37:16.8274557Z * [new branch] gh/XilunWu/152/base -> origin/gh/XilunWu/152/base 2025-08-26T19:37:16.8275050Z * [new branch] gh/XilunWu/152/head -> origin/gh/XilunWu/152/head 2025-08-26T19:37:16.8275546Z * [new branch] gh/XilunWu/152/orig -> origin/gh/XilunWu/152/orig 2025-08-26T19:37:16.8276047Z * [new branch] gh/XilunWu/153/base -> origin/gh/XilunWu/153/base 2025-08-26T19:37:16.8276673Z * [new branch] gh/XilunWu/153/head -> origin/gh/XilunWu/153/head 2025-08-26T19:37:16.8277217Z * [new branch] gh/XilunWu/153/orig -> origin/gh/XilunWu/153/orig 2025-08-26T19:37:16.8277739Z * [new branch] gh/XilunWu/159/base -> origin/gh/XilunWu/159/base 2025-08-26T19:37:16.8278289Z * [new branch] gh/XilunWu/159/head -> origin/gh/XilunWu/159/head 2025-08-26T19:37:16.8278804Z * [new branch] gh/XilunWu/159/orig -> origin/gh/XilunWu/159/orig 2025-08-26T19:37:16.8279345Z * [new branch] gh/XilunWu/160/base -> origin/gh/XilunWu/160/base 2025-08-26T19:37:16.8279901Z * [new branch] gh/XilunWu/160/head -> origin/gh/XilunWu/160/head 2025-08-26T19:37:16.8280413Z * [new branch] gh/XilunWu/160/orig -> origin/gh/XilunWu/160/orig 2025-08-26T19:37:16.8280952Z * [new branch] gh/XilunWu/161/base -> origin/gh/XilunWu/161/base 2025-08-26T19:37:16.8281471Z * [new branch] gh/XilunWu/161/head -> origin/gh/XilunWu/161/head 2025-08-26T19:37:16.8282029Z * [new branch] gh/XilunWu/161/orig -> origin/gh/XilunWu/161/orig 2025-08-26T19:37:16.8282568Z * [new branch] gh/XilunWu/162/base -> origin/gh/XilunWu/162/base 2025-08-26T19:37:16.8283174Z * [new branch] gh/XilunWu/162/head -> origin/gh/XilunWu/162/head 2025-08-26T19:37:16.8734510Z * [new branch] gh/XilunWu/162/orig -> origin/gh/XilunWu/162/orig 2025-08-26T19:37:16.8735481Z * [new branch] gh/XilunWu/163/base -> origin/gh/XilunWu/163/base 2025-08-26T19:37:16.8736434Z * [new branch] gh/XilunWu/163/head -> origin/gh/XilunWu/163/head 2025-08-26T19:37:16.8737409Z * [new branch] gh/XilunWu/163/orig -> origin/gh/XilunWu/163/orig 2025-08-26T19:37:16.8738333Z * [new branch] gh/XilunWu/164/base -> origin/gh/XilunWu/164/base 2025-08-26T19:37:16.8739289Z * [new branch] gh/XilunWu/164/head -> origin/gh/XilunWu/164/head 2025-08-26T19:37:16.8740233Z * [new branch] gh/XilunWu/164/orig -> origin/gh/XilunWu/164/orig 2025-08-26T19:37:16.8740767Z * [new branch] gh/XilunWu/165/base -> origin/gh/XilunWu/165/base 2025-08-26T19:37:16.8741347Z * [new branch] gh/XilunWu/165/head -> origin/gh/XilunWu/165/head 2025-08-26T19:37:16.8741880Z * [new branch] gh/XilunWu/165/orig -> origin/gh/XilunWu/165/orig 2025-08-26T19:37:16.8742422Z * [new branch] gh/XilunWu/166/base -> origin/gh/XilunWu/166/base 2025-08-26T19:37:16.8743046Z * [new branch] gh/XilunWu/166/head -> origin/gh/XilunWu/166/head 2025-08-26T19:37:16.8743570Z * [new branch] gh/XilunWu/166/orig -> origin/gh/XilunWu/166/orig 2025-08-26T19:37:16.8744120Z * [new branch] gh/XilunWu/167/base -> origin/gh/XilunWu/167/base 2025-08-26T19:37:16.8744640Z * [new branch] gh/XilunWu/167/head -> origin/gh/XilunWu/167/head 2025-08-26T19:37:16.8745252Z * [new branch] gh/XilunWu/167/orig -> origin/gh/XilunWu/167/orig 2025-08-26T19:37:16.8745854Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-08-26T19:37:16.8746407Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-08-26T19:37:16.8747134Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-08-26T19:37:16.8747684Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-08-26T19:37:16.8748259Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-08-26T19:37:16.8748833Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-08-26T19:37:16.8749367Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-08-26T19:37:16.8749930Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-08-26T19:37:16.8750475Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-08-26T19:37:16.8751088Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-08-26T19:37:16.8751753Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-08-26T19:37:16.8752304Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-08-26T19:37:16.8752875Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-08-26T19:37:16.8753434Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-08-26T19:37:16.8753986Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-08-26T19:37:16.8754545Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-08-26T19:37:16.8755072Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-08-26T19:37:16.8755658Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-08-26T19:37:16.8756296Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-08-26T19:37:16.8756908Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-08-26T19:37:16.8757543Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-08-26T19:37:16.8758085Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-08-26T19:37:16.8758642Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-08-26T19:37:16.8759225Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-08-26T19:37:16.8759761Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-08-26T19:37:16.8760338Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-08-26T19:37:16.8760900Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-08-26T19:37:16.8761474Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-08-26T19:37:16.8762017Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-08-26T19:37:16.8762680Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-08-26T19:37:16.8763269Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-08-26T19:37:16.9173694Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-08-26T19:37:16.9174353Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-08-26T19:37:16.9174938Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-08-26T19:37:16.9175482Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-08-26T19:37:16.9176078Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-08-26T19:37:16.9176773Z * [new branch] gh/XuehaiPan/290/base -> origin/gh/XuehaiPan/290/base 2025-08-26T19:37:16.9177342Z * [new branch] gh/XuehaiPan/290/head -> origin/gh/XuehaiPan/290/head 2025-08-26T19:37:16.9177911Z * [new branch] gh/XuehaiPan/290/orig -> origin/gh/XuehaiPan/290/orig 2025-08-26T19:37:16.9178457Z * [new branch] gh/XuehaiPan/343/base -> origin/gh/XuehaiPan/343/base 2025-08-26T19:37:16.9179020Z * [new branch] gh/XuehaiPan/343/head -> origin/gh/XuehaiPan/343/head 2025-08-26T19:37:16.9179561Z * [new branch] gh/XuehaiPan/343/orig -> origin/gh/XuehaiPan/343/orig 2025-08-26T19:37:16.9180115Z * [new branch] gh/XuehaiPan/347/base -> origin/gh/XuehaiPan/347/base 2025-08-26T19:37:16.9180677Z * [new branch] gh/XuehaiPan/347/head -> origin/gh/XuehaiPan/347/head 2025-08-26T19:37:16.9181224Z * [new branch] gh/XuehaiPan/347/orig -> origin/gh/XuehaiPan/347/orig 2025-08-26T19:37:16.9181788Z * [new branch] gh/XuehaiPan/348/base -> origin/gh/XuehaiPan/348/base 2025-08-26T19:37:16.9182356Z * [new branch] gh/XuehaiPan/348/head -> origin/gh/XuehaiPan/348/head 2025-08-26T19:37:16.9182908Z * [new branch] gh/XuehaiPan/348/orig -> origin/gh/XuehaiPan/348/orig 2025-08-26T19:37:16.9183536Z * [new branch] gh/XuehaiPan/350/base -> origin/gh/XuehaiPan/350/base 2025-08-26T19:37:16.9184069Z * [new branch] gh/XuehaiPan/350/head -> origin/gh/XuehaiPan/350/head 2025-08-26T19:37:16.9184649Z * [new branch] gh/XuehaiPan/350/orig -> origin/gh/XuehaiPan/350/orig 2025-08-26T19:37:16.9185191Z * [new branch] gh/XuehaiPan/356/base -> origin/gh/XuehaiPan/356/base 2025-08-26T19:37:16.9185744Z * [new branch] gh/XuehaiPan/356/head -> origin/gh/XuehaiPan/356/head 2025-08-26T19:37:16.9186447Z * [new branch] gh/XuehaiPan/356/orig -> origin/gh/XuehaiPan/356/orig 2025-08-26T19:37:16.9187000Z * [new branch] gh/XuehaiPan/357/base -> origin/gh/XuehaiPan/357/base 2025-08-26T19:37:16.9187569Z * [new branch] gh/XuehaiPan/357/head -> origin/gh/XuehaiPan/357/head 2025-08-26T19:37:16.9188131Z * [new branch] gh/XuehaiPan/357/orig -> origin/gh/XuehaiPan/357/orig 2025-08-26T19:37:16.9188705Z * [new branch] gh/XuehaiPan/358/base -> origin/gh/XuehaiPan/358/base 2025-08-26T19:37:16.9189269Z * [new branch] gh/XuehaiPan/358/head -> origin/gh/XuehaiPan/358/head 2025-08-26T19:37:16.9189833Z * [new branch] gh/XuehaiPan/358/orig -> origin/gh/XuehaiPan/358/orig 2025-08-26T19:37:16.9190393Z * [new branch] gh/XuehaiPan/359/base -> origin/gh/XuehaiPan/359/base 2025-08-26T19:37:16.9190937Z * [new branch] gh/XuehaiPan/359/head -> origin/gh/XuehaiPan/359/head 2025-08-26T19:37:16.9205670Z * [new branch] gh/XuehaiPan/359/orig -> origin/gh/XuehaiPan/359/orig 2025-08-26T19:37:16.9206317Z * [new branch] gh/XuehaiPan/360/base -> origin/gh/XuehaiPan/360/base 2025-08-26T19:37:16.9206868Z * [new branch] gh/XuehaiPan/360/head -> origin/gh/XuehaiPan/360/head 2025-08-26T19:37:16.9207388Z * [new branch] gh/XuehaiPan/360/orig -> origin/gh/XuehaiPan/360/orig 2025-08-26T19:37:16.9207918Z * [new branch] gh/XuehaiPan/365/base -> origin/gh/XuehaiPan/365/base 2025-08-26T19:37:16.9208434Z * [new branch] gh/XuehaiPan/365/head -> origin/gh/XuehaiPan/365/head 2025-08-26T19:37:16.9208961Z * [new branch] gh/XuehaiPan/365/orig -> origin/gh/XuehaiPan/365/orig 2025-08-26T19:37:16.9209489Z * [new branch] gh/XuehaiPan/366/base -> origin/gh/XuehaiPan/366/base 2025-08-26T19:37:16.9210008Z * [new branch] gh/XuehaiPan/366/head -> origin/gh/XuehaiPan/366/head 2025-08-26T19:37:16.9210686Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-08-26T19:37:16.9211210Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-08-26T19:37:16.9211739Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-08-26T19:37:16.9212260Z * [new branch] gh/XuehaiPan/370/base -> origin/gh/XuehaiPan/370/base 2025-08-26T19:37:16.9212770Z * [new branch] gh/XuehaiPan/370/head -> origin/gh/XuehaiPan/370/head 2025-08-26T19:37:16.9213294Z * [new branch] gh/XuehaiPan/370/orig -> origin/gh/XuehaiPan/370/orig 2025-08-26T19:37:16.9629804Z * [new branch] gh/XuehaiPan/371/base -> origin/gh/XuehaiPan/371/base 2025-08-26T19:37:16.9630386Z * [new branch] gh/XuehaiPan/371/head -> origin/gh/XuehaiPan/371/head 2025-08-26T19:37:16.9630921Z * [new branch] gh/XuehaiPan/371/orig -> origin/gh/XuehaiPan/371/orig 2025-08-26T19:37:16.9631443Z * [new branch] gh/XuehaiPan/377/base -> origin/gh/XuehaiPan/377/base 2025-08-26T19:37:16.9631977Z * [new branch] gh/XuehaiPan/377/head -> origin/gh/XuehaiPan/377/head 2025-08-26T19:37:16.9632494Z * [new branch] gh/XuehaiPan/377/orig -> origin/gh/XuehaiPan/377/orig 2025-08-26T19:37:16.9633025Z * [new branch] gh/XuehaiPan/378/base -> origin/gh/XuehaiPan/378/base 2025-08-26T19:37:16.9633550Z * [new branch] gh/XuehaiPan/378/head -> origin/gh/XuehaiPan/378/head 2025-08-26T19:37:16.9634082Z * [new branch] gh/XuehaiPan/378/orig -> origin/gh/XuehaiPan/378/orig 2025-08-26T19:37:16.9634601Z * [new branch] gh/XuehaiPan/379/base -> origin/gh/XuehaiPan/379/base 2025-08-26T19:37:16.9635242Z * [new branch] gh/XuehaiPan/379/head -> origin/gh/XuehaiPan/379/head 2025-08-26T19:37:16.9635767Z * [new branch] gh/XuehaiPan/379/orig -> origin/gh/XuehaiPan/379/orig 2025-08-26T19:37:16.9636285Z * [new branch] gh/XuehaiPan/380/base -> origin/gh/XuehaiPan/380/base 2025-08-26T19:37:16.9636793Z * [new branch] gh/XuehaiPan/380/head -> origin/gh/XuehaiPan/380/head 2025-08-26T19:37:16.9637375Z * [new branch] gh/XuehaiPan/380/orig -> origin/gh/XuehaiPan/380/orig 2025-08-26T19:37:16.9637931Z * [new branch] gh/XuehaiPan/381/base -> origin/gh/XuehaiPan/381/base 2025-08-26T19:37:16.9638470Z * [new branch] gh/XuehaiPan/381/head -> origin/gh/XuehaiPan/381/head 2025-08-26T19:37:16.9638995Z * [new branch] gh/XuehaiPan/382/base -> origin/gh/XuehaiPan/382/base 2025-08-26T19:37:16.9639513Z * [new branch] gh/XuehaiPan/382/head -> origin/gh/XuehaiPan/382/head 2025-08-26T19:37:16.9640048Z * [new branch] gh/XuehaiPan/382/orig -> origin/gh/XuehaiPan/382/orig 2025-08-26T19:37:16.9640573Z * [new branch] gh/XuehaiPan/383/base -> origin/gh/XuehaiPan/383/base 2025-08-26T19:37:16.9641100Z * [new branch] gh/XuehaiPan/383/head -> origin/gh/XuehaiPan/383/head 2025-08-26T19:37:16.9641626Z * [new branch] gh/XuehaiPan/383/orig -> origin/gh/XuehaiPan/383/orig 2025-08-26T19:37:16.9642138Z * [new branch] gh/XuehaiPan/384/base -> origin/gh/XuehaiPan/384/base 2025-08-26T19:37:16.9642659Z * [new branch] gh/XuehaiPan/384/head -> origin/gh/XuehaiPan/384/head 2025-08-26T19:37:16.9643214Z * [new branch] gh/XuehaiPan/384/orig -> origin/gh/XuehaiPan/384/orig 2025-08-26T19:37:16.9643816Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-08-26T19:37:16.9644379Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-08-26T19:37:16.9644997Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-08-26T19:37:16.9645544Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-08-26T19:37:16.9646069Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-08-26T19:37:16.9646617Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-08-26T19:37:16.9647141Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-08-26T19:37:16.9647684Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-08-26T19:37:16.9648220Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-08-26T19:37:16.9648743Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-08-26T19:37:16.9649286Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-08-26T19:37:16.9649808Z * [new branch] gh/ZhiweiYan-96/64/base -> origin/gh/ZhiweiYan-96/64/base 2025-08-26T19:37:16.9650344Z * [new branch] gh/ZhiweiYan-96/64/head -> origin/gh/ZhiweiYan-96/64/head 2025-08-26T19:37:16.9650874Z * [new branch] gh/ZhiweiYan-96/64/orig -> origin/gh/ZhiweiYan-96/64/orig 2025-08-26T19:37:16.9651396Z * [new branch] gh/ZhiweiYan-96/65/base -> origin/gh/ZhiweiYan-96/65/base 2025-08-26T19:37:16.9651931Z * [new branch] gh/ZhiweiYan-96/65/head -> origin/gh/ZhiweiYan-96/65/head 2025-08-26T19:37:16.9652456Z * [new branch] gh/ZhiweiYan-96/65/orig -> origin/gh/ZhiweiYan-96/65/orig 2025-08-26T19:37:16.9652995Z * [new branch] gh/ZhiweiYan-96/66/base -> origin/gh/ZhiweiYan-96/66/base 2025-08-26T19:37:16.9653615Z * [new branch] gh/ZhiweiYan-96/66/head -> origin/gh/ZhiweiYan-96/66/head 2025-08-26T19:37:17.0129945Z * [new branch] gh/ZhiweiYan-96/67/base -> origin/gh/ZhiweiYan-96/67/base 2025-08-26T19:37:17.0130743Z * [new branch] gh/ZhiweiYan-96/67/head -> origin/gh/ZhiweiYan-96/67/head 2025-08-26T19:37:17.0131649Z * [new branch] gh/ZhiweiYan-96/68/base -> origin/gh/ZhiweiYan-96/68/base 2025-08-26T19:37:17.0132412Z * [new branch] gh/ZhiweiYan-96/68/head -> origin/gh/ZhiweiYan-96/68/head 2025-08-26T19:37:17.0132960Z * [new branch] gh/ZhiweiYan-96/68/orig -> origin/gh/ZhiweiYan-96/68/orig 2025-08-26T19:37:17.0133489Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-08-26T19:37:17.0134025Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-08-26T19:37:17.0134527Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-08-26T19:37:17.0135044Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-08-26T19:37:17.0135571Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-08-26T19:37:17.0136077Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-08-26T19:37:17.0136588Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-08-26T19:37:17.0137324Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-08-26T19:37:17.0138122Z * [new branch] gh/alexsamardzic/8/base -> origin/gh/alexsamardzic/8/base 2025-08-26T19:37:17.0138696Z * [new branch] gh/alexsamardzic/8/head -> origin/gh/alexsamardzic/8/head 2025-08-26T19:37:17.0139238Z * [new branch] gh/alexsamardzic/8/orig -> origin/gh/alexsamardzic/8/orig 2025-08-26T19:37:17.0139787Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-08-26T19:37:17.0140453Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-08-26T19:37:17.0140946Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-08-26T19:37:17.0141467Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-08-26T19:37:17.0141986Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-08-26T19:37:17.0142596Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-08-26T19:37:17.0143184Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-08-26T19:37:17.0143707Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-08-26T19:37:17.0144228Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-08-26T19:37:17.0144747Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-08-26T19:37:17.0145272Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-08-26T19:37:17.0145777Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-08-26T19:37:17.0146295Z * [new branch] gh/andyanwang/13/base -> origin/gh/andyanwang/13/base 2025-08-26T19:37:17.0146811Z * [new branch] gh/andyanwang/13/head -> origin/gh/andyanwang/13/head 2025-08-26T19:37:17.0147323Z * [new branch] gh/andyanwang/13/orig -> origin/gh/andyanwang/13/orig 2025-08-26T19:37:17.0147825Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-08-26T19:37:17.0148340Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-08-26T19:37:17.0148959Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-08-26T19:37:17.0149475Z * [new branch] gh/andyanwang/28/base -> origin/gh/andyanwang/28/base 2025-08-26T19:37:17.0149990Z * [new branch] gh/andyanwang/28/head -> origin/gh/andyanwang/28/head 2025-08-26T19:37:17.0150490Z * [new branch] gh/andyanwang/28/orig -> origin/gh/andyanwang/28/orig 2025-08-26T19:37:17.0151010Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-08-26T19:37:17.0151522Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-08-26T19:37:17.0152024Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-08-26T19:37:17.0152535Z * [new branch] gh/andyanwang/30/base -> origin/gh/andyanwang/30/base 2025-08-26T19:37:17.0153039Z * [new branch] gh/andyanwang/30/orig -> origin/gh/andyanwang/30/orig 2025-08-26T19:37:17.0153555Z * [new branch] gh/andyanwang/31/base -> origin/gh/andyanwang/31/base 2025-08-26T19:37:17.0154072Z * [new branch] gh/andyanwang/31/orig -> origin/gh/andyanwang/31/orig 2025-08-26T19:37:17.0154580Z * [new branch] gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-08-26T19:37:17.0155088Z * [new branch] gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-08-26T19:37:17.0605613Z * [new branch] gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig 2025-08-26T19:37:17.0606182Z * [new branch] gh/andyanwang/35/base -> origin/gh/andyanwang/35/base 2025-08-26T19:37:17.0606702Z * [new branch] gh/andyanwang/35/head -> origin/gh/andyanwang/35/head 2025-08-26T19:37:17.0607206Z * [new branch] gh/andyanwang/35/orig -> origin/gh/andyanwang/35/orig 2025-08-26T19:37:17.0607738Z * [new branch] gh/andyanwang/36/base -> origin/gh/andyanwang/36/base 2025-08-26T19:37:17.0608245Z * [new branch] gh/andyanwang/36/head -> origin/gh/andyanwang/36/head 2025-08-26T19:37:17.0608924Z * [new branch] gh/andyanwang/36/orig -> origin/gh/andyanwang/36/orig 2025-08-26T19:37:17.0609447Z * [new branch] gh/andyanwang/37/base -> origin/gh/andyanwang/37/base 2025-08-26T19:37:17.0609955Z * [new branch] gh/andyanwang/37/head -> origin/gh/andyanwang/37/head 2025-08-26T19:37:17.0610467Z * [new branch] gh/andyanwang/37/orig -> origin/gh/andyanwang/37/orig 2025-08-26T19:37:17.0610978Z * [new branch] gh/andyanwang/38/base -> origin/gh/andyanwang/38/base 2025-08-26T19:37:17.0611486Z * [new branch] gh/andyanwang/38/head -> origin/gh/andyanwang/38/head 2025-08-26T19:37:17.0611998Z * [new branch] gh/andyanwang/38/orig -> origin/gh/andyanwang/38/orig 2025-08-26T19:37:17.0612508Z * [new branch] gh/andyanwang/39/base -> origin/gh/andyanwang/39/base 2025-08-26T19:37:17.0613018Z * [new branch] gh/andyanwang/39/head -> origin/gh/andyanwang/39/head 2025-08-26T19:37:17.0613526Z * [new branch] gh/andyanwang/39/orig -> origin/gh/andyanwang/39/orig 2025-08-26T19:37:17.0614045Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-08-26T19:37:17.0614555Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-08-26T19:37:17.0615060Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-08-26T19:37:17.0615572Z * [new branch] gh/andyanwang/40/base -> origin/gh/andyanwang/40/base 2025-08-26T19:37:17.0616076Z * [new branch] gh/andyanwang/40/head -> origin/gh/andyanwang/40/head 2025-08-26T19:37:17.0616589Z * [new branch] gh/andyanwang/40/orig -> origin/gh/andyanwang/40/orig 2025-08-26T19:37:17.0617196Z * [new branch] gh/angelayi/106/base -> origin/gh/angelayi/106/base 2025-08-26T19:37:17.0617709Z * [new branch] gh/angelayi/106/head -> origin/gh/angelayi/106/head 2025-08-26T19:37:17.0618220Z * [new branch] gh/angelayi/106/orig -> origin/gh/angelayi/106/orig 2025-08-26T19:37:17.0618715Z * [new branch] gh/angelayi/107/base -> origin/gh/angelayi/107/base 2025-08-26T19:37:17.0619209Z * [new branch] gh/angelayi/107/head -> origin/gh/angelayi/107/head 2025-08-26T19:37:17.0619776Z * [new branch] gh/angelayi/108/base -> origin/gh/angelayi/108/base 2025-08-26T19:37:17.0620312Z * [new branch] gh/angelayi/108/head -> origin/gh/angelayi/108/head 2025-08-26T19:37:17.0620810Z * [new branch] gh/angelayi/108/orig -> origin/gh/angelayi/108/orig 2025-08-26T19:37:17.0621307Z * [new branch] gh/angelayi/109/base -> origin/gh/angelayi/109/base 2025-08-26T19:37:17.0621819Z * [new branch] gh/angelayi/109/head -> origin/gh/angelayi/109/head 2025-08-26T19:37:17.0622320Z * [new branch] gh/angelayi/109/orig -> origin/gh/angelayi/109/orig 2025-08-26T19:37:17.0622821Z * [new branch] gh/angelayi/110/base -> origin/gh/angelayi/110/base 2025-08-26T19:37:17.0623377Z * [new branch] gh/angelayi/110/head -> origin/gh/angelayi/110/head 2025-08-26T19:37:17.0623875Z * [new branch] gh/angelayi/110/orig -> origin/gh/angelayi/110/orig 2025-08-26T19:37:17.0624381Z * [new branch] gh/angelayi/111/base -> origin/gh/angelayi/111/base 2025-08-26T19:37:17.0624871Z * [new branch] gh/angelayi/111/head -> origin/gh/angelayi/111/head 2025-08-26T19:37:17.0625368Z * [new branch] gh/angelayi/111/orig -> origin/gh/angelayi/111/orig 2025-08-26T19:37:17.0625868Z * [new branch] gh/angelayi/112/base -> origin/gh/angelayi/112/base 2025-08-26T19:37:17.0626453Z * [new branch] gh/angelayi/112/head -> origin/gh/angelayi/112/head 2025-08-26T19:37:17.0626961Z * [new branch] gh/angelayi/112/orig -> origin/gh/angelayi/112/orig 2025-08-26T19:37:17.0627449Z * [new branch] gh/angelayi/113/base -> origin/gh/angelayi/113/base 2025-08-26T19:37:17.0627951Z * [new branch] gh/angelayi/113/head -> origin/gh/angelayi/113/head 2025-08-26T19:37:17.0628438Z * [new branch] gh/angelayi/113/orig -> origin/gh/angelayi/113/orig 2025-08-26T19:37:17.0628944Z * [new branch] gh/angelayi/114/base -> origin/gh/angelayi/114/base 2025-08-26T19:37:17.1062851Z * [new branch] gh/angelayi/114/head -> origin/gh/angelayi/114/head 2025-08-26T19:37:17.1063486Z * [new branch] gh/angelayi/114/orig -> origin/gh/angelayi/114/orig 2025-08-26T19:37:17.1064013Z * [new branch] gh/angelayi/115/base -> origin/gh/angelayi/115/base 2025-08-26T19:37:17.1064526Z * [new branch] gh/angelayi/115/head -> origin/gh/angelayi/115/head 2025-08-26T19:37:17.1065018Z * [new branch] gh/angelayi/115/orig -> origin/gh/angelayi/115/orig 2025-08-26T19:37:17.1065544Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-08-26T19:37:17.1066072Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-08-26T19:37:17.1066607Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-08-26T19:37:17.1067129Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-08-26T19:37:17.1067643Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-08-26T19:37:17.1068329Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-08-26T19:37:17.1068855Z * [new branch] gh/anijain2305/790/base -> origin/gh/anijain2305/790/base 2025-08-26T19:37:17.1069493Z * [new branch] gh/anijain2305/790/head -> origin/gh/anijain2305/790/head 2025-08-26T19:37:17.1070024Z * [new branch] gh/anijain2305/790/orig -> origin/gh/anijain2305/790/orig 2025-08-26T19:37:17.1070540Z * [new branch] gh/anijain2305/792/base -> origin/gh/anijain2305/792/base 2025-08-26T19:37:17.1071066Z * [new branch] gh/anijain2305/792/head -> origin/gh/anijain2305/792/head 2025-08-26T19:37:17.1071593Z * [new branch] gh/anijain2305/792/orig -> origin/gh/anijain2305/792/orig 2025-08-26T19:37:17.1072121Z * [new branch] gh/anijain2305/803/base -> origin/gh/anijain2305/803/base 2025-08-26T19:37:17.1072647Z * [new branch] gh/anijain2305/803/head -> origin/gh/anijain2305/803/head 2025-08-26T19:37:17.1073169Z * [new branch] gh/anijain2305/803/orig -> origin/gh/anijain2305/803/orig 2025-08-26T19:37:17.1073704Z * [new branch] gh/anijain2305/804/base -> origin/gh/anijain2305/804/base 2025-08-26T19:37:17.1074219Z * [new branch] gh/anijain2305/804/head -> origin/gh/anijain2305/804/head 2025-08-26T19:37:17.1074746Z * [new branch] gh/anijain2305/804/orig -> origin/gh/anijain2305/804/orig 2025-08-26T19:37:17.1075268Z * [new branch] gh/anijain2305/805/base -> origin/gh/anijain2305/805/base 2025-08-26T19:37:17.1075790Z * [new branch] gh/anijain2305/805/head -> origin/gh/anijain2305/805/head 2025-08-26T19:37:17.1076311Z * [new branch] gh/anijain2305/805/orig -> origin/gh/anijain2305/805/orig 2025-08-26T19:37:17.1076829Z * [new branch] gh/anijain2305/810/base -> origin/gh/anijain2305/810/base 2025-08-26T19:37:17.1077365Z * [new branch] gh/anijain2305/810/head -> origin/gh/anijain2305/810/head 2025-08-26T19:37:17.1077994Z * [new branch] gh/anijain2305/810/orig -> origin/gh/anijain2305/810/orig 2025-08-26T19:37:17.1078514Z * [new branch] gh/anijain2305/812/base -> origin/gh/anijain2305/812/base 2025-08-26T19:37:17.1079039Z * [new branch] gh/anijain2305/812/head -> origin/gh/anijain2305/812/head 2025-08-26T19:37:17.1079578Z * [new branch] gh/anijain2305/812/orig -> origin/gh/anijain2305/812/orig 2025-08-26T19:37:17.1080105Z * [new branch] gh/anijain2305/817/base -> origin/gh/anijain2305/817/base 2025-08-26T19:37:17.1080641Z * [new branch] gh/anijain2305/817/head -> origin/gh/anijain2305/817/head 2025-08-26T19:37:17.1081166Z * [new branch] gh/anijain2305/817/orig -> origin/gh/anijain2305/817/orig 2025-08-26T19:37:17.1081679Z * [new branch] gh/anijain2305/823/base -> origin/gh/anijain2305/823/base 2025-08-26T19:37:17.1082214Z * [new branch] gh/anijain2305/823/head -> origin/gh/anijain2305/823/head 2025-08-26T19:37:17.1082736Z * [new branch] gh/anijain2305/823/orig -> origin/gh/anijain2305/823/orig 2025-08-26T19:37:17.1083259Z * [new branch] gh/anijain2305/829/base -> origin/gh/anijain2305/829/base 2025-08-26T19:37:17.1083787Z * [new branch] gh/anijain2305/829/head -> origin/gh/anijain2305/829/head 2025-08-26T19:37:17.1084302Z * [new branch] gh/anijain2305/829/orig -> origin/gh/anijain2305/829/orig 2025-08-26T19:37:17.1084827Z * [new branch] gh/anijain2305/830/base -> origin/gh/anijain2305/830/base 2025-08-26T19:37:17.1085343Z * [new branch] gh/anijain2305/830/head -> origin/gh/anijain2305/830/head 2025-08-26T19:37:17.1085865Z * [new branch] gh/anijain2305/830/orig -> origin/gh/anijain2305/830/orig 2025-08-26T19:37:17.1086475Z * [new branch] gh/anijain2305/831/base -> origin/gh/anijain2305/831/base 2025-08-26T19:37:17.1493220Z * [new branch] gh/anijain2305/831/head -> origin/gh/anijain2305/831/head 2025-08-26T19:37:17.1493816Z * [new branch] gh/anijain2305/831/orig -> origin/gh/anijain2305/831/orig 2025-08-26T19:37:17.1494361Z * [new branch] gh/anijain2305/832/base -> origin/gh/anijain2305/832/base 2025-08-26T19:37:17.1494877Z * [new branch] gh/anijain2305/832/head -> origin/gh/anijain2305/832/head 2025-08-26T19:37:17.1495398Z * [new branch] gh/anijain2305/832/orig -> origin/gh/anijain2305/832/orig 2025-08-26T19:37:17.1495911Z * [new branch] gh/anijain2305/833/base -> origin/gh/anijain2305/833/base 2025-08-26T19:37:17.1496433Z * [new branch] gh/anijain2305/833/head -> origin/gh/anijain2305/833/head 2025-08-26T19:37:17.1496949Z * [new branch] gh/anijain2305/833/orig -> origin/gh/anijain2305/833/orig 2025-08-26T19:37:17.1501246Z * [new branch] gh/anijain2305/834/base -> origin/gh/anijain2305/834/base 2025-08-26T19:37:17.1501781Z * [new branch] gh/anijain2305/834/head -> origin/gh/anijain2305/834/head 2025-08-26T19:37:17.1502297Z * [new branch] gh/anijain2305/834/orig -> origin/gh/anijain2305/834/orig 2025-08-26T19:37:17.1502821Z * [new branch] gh/anijain2305/835/base -> origin/gh/anijain2305/835/base 2025-08-26T19:37:17.1503400Z * [new branch] gh/anijain2305/835/head -> origin/gh/anijain2305/835/head 2025-08-26T19:37:17.1503920Z * [new branch] gh/anijain2305/835/orig -> origin/gh/anijain2305/835/orig 2025-08-26T19:37:17.1504444Z * [new branch] gh/anijain2305/836/base -> origin/gh/anijain2305/836/base 2025-08-26T19:37:17.1504961Z * [new branch] gh/anijain2305/836/head -> origin/gh/anijain2305/836/head 2025-08-26T19:37:17.1505487Z * [new branch] gh/anijain2305/836/orig -> origin/gh/anijain2305/836/orig 2025-08-26T19:37:17.1528394Z * [new branch] gh/anijain2305/837/base -> origin/gh/anijain2305/837/base 2025-08-26T19:37:17.1528944Z * [new branch] gh/anijain2305/837/head -> origin/gh/anijain2305/837/head 2025-08-26T19:37:17.1529470Z * [new branch] gh/anijain2305/837/orig -> origin/gh/anijain2305/837/orig 2025-08-26T19:37:17.1529989Z * [new branch] gh/anijain2305/838/base -> origin/gh/anijain2305/838/base 2025-08-26T19:37:17.1530522Z * [new branch] gh/anijain2305/838/head -> origin/gh/anijain2305/838/head 2025-08-26T19:37:17.1531049Z * [new branch] gh/anijain2305/838/orig -> origin/gh/anijain2305/838/orig 2025-08-26T19:37:17.1531577Z * [new branch] gh/anijain2305/839/base -> origin/gh/anijain2305/839/base 2025-08-26T19:37:17.1532104Z * [new branch] gh/anijain2305/839/head -> origin/gh/anijain2305/839/head 2025-08-26T19:37:17.1534008Z * [new branch] gh/anijain2305/839/orig -> origin/gh/anijain2305/839/orig 2025-08-26T19:37:17.1534564Z * [new branch] gh/anijain2305/840/base -> origin/gh/anijain2305/840/base 2025-08-26T19:37:17.1535079Z * [new branch] gh/anijain2305/840/head -> origin/gh/anijain2305/840/head 2025-08-26T19:37:17.1535602Z * [new branch] gh/anijain2305/840/orig -> origin/gh/anijain2305/840/orig 2025-08-26T19:37:17.1536130Z * [new branch] gh/anijain2305/841/base -> origin/gh/anijain2305/841/base 2025-08-26T19:37:17.1536641Z * [new branch] gh/anijain2305/841/head -> origin/gh/anijain2305/841/head 2025-08-26T19:37:17.1537168Z * [new branch] gh/anijain2305/841/orig -> origin/gh/anijain2305/841/orig 2025-08-26T19:37:17.1537680Z * [new branch] gh/anijain2305/842/base -> origin/gh/anijain2305/842/base 2025-08-26T19:37:17.1538317Z * [new branch] gh/anijain2305/842/head -> origin/gh/anijain2305/842/head 2025-08-26T19:37:17.1540195Z * [new branch] gh/anijain2305/842/orig -> origin/gh/anijain2305/842/orig 2025-08-26T19:37:17.1540733Z * [new branch] gh/anijain2305/843/base -> origin/gh/anijain2305/843/base 2025-08-26T19:37:17.1541256Z * [new branch] gh/anijain2305/843/head -> origin/gh/anijain2305/843/head 2025-08-26T19:37:17.1541776Z * [new branch] gh/anijain2305/843/orig -> origin/gh/anijain2305/843/orig 2025-08-26T19:37:17.1542308Z * [new branch] gh/anijain2305/844/base -> origin/gh/anijain2305/844/base 2025-08-26T19:37:17.1542819Z * [new branch] gh/anijain2305/844/head -> origin/gh/anijain2305/844/head 2025-08-26T19:37:17.1543408Z * [new branch] gh/anijain2305/844/orig -> origin/gh/anijain2305/844/orig 2025-08-26T19:37:17.1543937Z * [new branch] gh/anijain2305/845/base -> origin/gh/anijain2305/845/base 2025-08-26T19:37:17.1544455Z * [new branch] gh/anijain2305/845/head -> origin/gh/anijain2305/845/head 2025-08-26T19:37:17.1546328Z * [new branch] gh/anijain2305/845/orig -> origin/gh/anijain2305/845/orig 2025-08-26T19:37:17.1546845Z * [new branch] gh/anijain2305/846/base -> origin/gh/anijain2305/846/base 2025-08-26T19:37:17.1918157Z * [new branch] gh/anijain2305/846/head -> origin/gh/anijain2305/846/head 2025-08-26T19:37:17.1918733Z * [new branch] gh/anijain2305/846/orig -> origin/gh/anijain2305/846/orig 2025-08-26T19:37:17.1919262Z * [new branch] gh/anijain2305/847/base -> origin/gh/anijain2305/847/base 2025-08-26T19:37:17.1919790Z * [new branch] gh/anijain2305/847/head -> origin/gh/anijain2305/847/head 2025-08-26T19:37:17.1920306Z * [new branch] gh/anijain2305/847/orig -> origin/gh/anijain2305/847/orig 2025-08-26T19:37:17.1920839Z * [new branch] gh/anijain2305/848/base -> origin/gh/anijain2305/848/base 2025-08-26T19:37:17.1921527Z * [new branch] gh/anijain2305/848/head -> origin/gh/anijain2305/848/head 2025-08-26T19:37:17.1922050Z * [new branch] gh/anijain2305/848/orig -> origin/gh/anijain2305/848/orig 2025-08-26T19:37:17.1922583Z * [new branch] gh/anijain2305/849/base -> origin/gh/anijain2305/849/base 2025-08-26T19:37:17.1923112Z * [new branch] gh/anijain2305/849/head -> origin/gh/anijain2305/849/head 2025-08-26T19:37:17.1923635Z * [new branch] gh/anijain2305/849/orig -> origin/gh/anijain2305/849/orig 2025-08-26T19:37:17.1924173Z * [new branch] gh/anijain2305/850/base -> origin/gh/anijain2305/850/base 2025-08-26T19:37:17.1924695Z * [new branch] gh/anijain2305/850/head -> origin/gh/anijain2305/850/head 2025-08-26T19:37:17.1925229Z * [new branch] gh/anijain2305/850/orig -> origin/gh/anijain2305/850/orig 2025-08-26T19:37:17.1925752Z * [new branch] gh/anijain2305/851/base -> origin/gh/anijain2305/851/base 2025-08-26T19:37:17.1926271Z * [new branch] gh/anijain2305/851/head -> origin/gh/anijain2305/851/head 2025-08-26T19:37:17.1926794Z * [new branch] gh/anijain2305/851/orig -> origin/gh/anijain2305/851/orig 2025-08-26T19:37:17.1927307Z * [new branch] gh/anijain2305/852/base -> origin/gh/anijain2305/852/base 2025-08-26T19:37:17.1927839Z * [new branch] gh/anijain2305/852/head -> origin/gh/anijain2305/852/head 2025-08-26T19:37:17.1928352Z * [new branch] gh/anijain2305/852/orig -> origin/gh/anijain2305/852/orig 2025-08-26T19:37:17.1928875Z * [new branch] gh/anijain2305/853/base -> origin/gh/anijain2305/853/base 2025-08-26T19:37:17.1929396Z * [new branch] gh/anijain2305/853/head -> origin/gh/anijain2305/853/head 2025-08-26T19:37:17.1930614Z * [new branch] gh/anijain2305/853/orig -> origin/gh/anijain2305/853/orig 2025-08-26T19:37:17.1931150Z * [new branch] gh/anijain2305/854/base -> origin/gh/anijain2305/854/base 2025-08-26T19:37:17.1931673Z * [new branch] gh/anijain2305/854/head -> origin/gh/anijain2305/854/head 2025-08-26T19:37:17.1932208Z * [new branch] gh/anijain2305/854/orig -> origin/gh/anijain2305/854/orig 2025-08-26T19:37:17.1932734Z * [new branch] gh/anijain2305/855/base -> origin/gh/anijain2305/855/base 2025-08-26T19:37:17.1933250Z * [new branch] gh/anijain2305/855/head -> origin/gh/anijain2305/855/head 2025-08-26T19:37:17.1933772Z * [new branch] gh/anijain2305/855/orig -> origin/gh/anijain2305/855/orig 2025-08-26T19:37:17.1934289Z * [new branch] gh/anijain2305/856/base -> origin/gh/anijain2305/856/base 2025-08-26T19:37:17.1934816Z * [new branch] gh/anijain2305/856/head -> origin/gh/anijain2305/856/head 2025-08-26T19:37:17.1935346Z * [new branch] gh/anijain2305/856/orig -> origin/gh/anijain2305/856/orig 2025-08-26T19:37:17.1935858Z * [new branch] gh/anijain2305/857/base -> origin/gh/anijain2305/857/base 2025-08-26T19:37:17.1936384Z * [new branch] gh/anijain2305/857/head -> origin/gh/anijain2305/857/head 2025-08-26T19:37:17.1936901Z * [new branch] gh/anijain2305/857/orig -> origin/gh/anijain2305/857/orig 2025-08-26T19:37:17.1937430Z * [new branch] gh/anijain2305/858/base -> origin/gh/anijain2305/858/base 2025-08-26T19:37:17.1937953Z * [new branch] gh/anijain2305/858/head -> origin/gh/anijain2305/858/head 2025-08-26T19:37:17.1938467Z * [new branch] gh/anijain2305/858/orig -> origin/gh/anijain2305/858/orig 2025-08-26T19:37:17.1938994Z * [new branch] gh/anijain2305/859/base -> origin/gh/anijain2305/859/base 2025-08-26T19:37:17.1939513Z * [new branch] gh/anijain2305/859/head -> origin/gh/anijain2305/859/head 2025-08-26T19:37:17.1940126Z * [new branch] gh/anijain2305/859/orig -> origin/gh/anijain2305/859/orig 2025-08-26T19:37:17.1940651Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-08-26T19:37:17.1941158Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-08-26T19:37:17.1941660Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-08-26T19:37:17.1942174Z * [new branch] gh/ankitageorge/13/base -> origin/gh/ankitageorge/13/base 2025-08-26T19:37:17.2390267Z * [new branch] gh/ankitageorge/13/head -> origin/gh/ankitageorge/13/head 2025-08-26T19:37:17.2390864Z * [new branch] gh/ankitageorge/13/orig -> origin/gh/ankitageorge/13/orig 2025-08-26T19:37:17.2391485Z * [new branch] gh/ankitageorge/14/base -> origin/gh/ankitageorge/14/base 2025-08-26T19:37:17.2392103Z * [new branch] gh/ankitageorge/14/head -> origin/gh/ankitageorge/14/head 2025-08-26T19:37:17.2392640Z * [new branch] gh/ankitageorge/14/orig -> origin/gh/ankitageorge/14/orig 2025-08-26T19:37:17.2393181Z * [new branch] gh/ankitageorge/15/base -> origin/gh/ankitageorge/15/base 2025-08-26T19:37:17.2393720Z * [new branch] gh/ankitageorge/15/head -> origin/gh/ankitageorge/15/head 2025-08-26T19:37:17.2394249Z * [new branch] gh/ankitageorge/15/orig -> origin/gh/ankitageorge/15/orig 2025-08-26T19:37:17.2394788Z * [new branch] gh/ankitageorge/16/base -> origin/gh/ankitageorge/16/base 2025-08-26T19:37:17.2395318Z * [new branch] gh/ankitageorge/16/head -> origin/gh/ankitageorge/16/head 2025-08-26T19:37:17.2395861Z * [new branch] gh/ankitageorge/16/orig -> origin/gh/ankitageorge/16/orig 2025-08-26T19:37:17.2396943Z * [new branch] gh/ankitageorge/17/base -> origin/gh/ankitageorge/17/base 2025-08-26T19:37:17.2397547Z * [new branch] gh/ankitageorge/17/head -> origin/gh/ankitageorge/17/head 2025-08-26T19:37:17.2398130Z * [new branch] gh/ankitageorge/17/orig -> origin/gh/ankitageorge/17/orig 2025-08-26T19:37:17.2398660Z * [new branch] gh/ankitageorge/18/base -> origin/gh/ankitageorge/18/base 2025-08-26T19:37:17.2399196Z * [new branch] gh/ankitageorge/18/head -> origin/gh/ankitageorge/18/head 2025-08-26T19:37:17.2399734Z * [new branch] gh/ankitageorge/18/orig -> origin/gh/ankitageorge/18/orig 2025-08-26T19:37:17.2400260Z * [new branch] gh/ankitageorge/19/base -> origin/gh/ankitageorge/19/base 2025-08-26T19:37:17.2400794Z * [new branch] gh/ankitageorge/19/head -> origin/gh/ankitageorge/19/head 2025-08-26T19:37:17.2401326Z * [new branch] gh/ankitageorge/19/orig -> origin/gh/ankitageorge/19/orig 2025-08-26T19:37:17.2401870Z * [new branch] gh/ankitageorge/20/base -> origin/gh/ankitageorge/20/base 2025-08-26T19:37:17.2402413Z * [new branch] gh/ankitageorge/20/head -> origin/gh/ankitageorge/20/head 2025-08-26T19:37:17.2402985Z * [new branch] gh/ankitageorge/20/orig -> origin/gh/ankitageorge/20/orig 2025-08-26T19:37:17.2403564Z * [new branch] gh/ankitageorge/21/base -> origin/gh/ankitageorge/21/base 2025-08-26T19:37:17.2404095Z * [new branch] gh/ankitageorge/21/head -> origin/gh/ankitageorge/21/head 2025-08-26T19:37:17.2404627Z * [new branch] gh/ankitageorge/21/orig -> origin/gh/ankitageorge/21/orig 2025-08-26T19:37:17.2405152Z * [new branch] gh/anshul-si/1/base -> origin/gh/anshul-si/1/base 2025-08-26T19:37:17.2405664Z * [new branch] gh/anshul-si/1/head -> origin/gh/anshul-si/1/head 2025-08-26T19:37:17.2406176Z * [new branch] gh/anshul-si/10/base -> origin/gh/anshul-si/10/base 2025-08-26T19:37:17.2407189Z * [new branch] gh/anshul-si/10/head -> origin/gh/anshul-si/10/head 2025-08-26T19:37:17.2407700Z * [new branch] gh/anshul-si/10/orig -> origin/gh/anshul-si/10/orig 2025-08-26T19:37:17.2408198Z * [new branch] gh/anshul-si/11/base -> origin/gh/anshul-si/11/base 2025-08-26T19:37:17.2408753Z * [new branch] gh/anshul-si/11/head -> origin/gh/anshul-si/11/head 2025-08-26T19:37:17.2409294Z * [new branch] gh/anshul-si/11/orig -> origin/gh/anshul-si/11/orig 2025-08-26T19:37:17.2409792Z * [new branch] gh/anshul-si/12/base -> origin/gh/anshul-si/12/base 2025-08-26T19:37:17.2410289Z * [new branch] gh/anshul-si/12/head -> origin/gh/anshul-si/12/head 2025-08-26T19:37:17.2410788Z * [new branch] gh/anshul-si/12/orig -> origin/gh/anshul-si/12/orig 2025-08-26T19:37:17.2411298Z * [new branch] gh/anshul-si/13/base -> origin/gh/anshul-si/13/base 2025-08-26T19:37:17.2411789Z * [new branch] gh/anshul-si/13/head -> origin/gh/anshul-si/13/head 2025-08-26T19:37:17.2412276Z * [new branch] gh/anshul-si/13/orig -> origin/gh/anshul-si/13/orig 2025-08-26T19:37:17.2412769Z * [new branch] gh/anshul-si/14/base -> origin/gh/anshul-si/14/base 2025-08-26T19:37:17.2413255Z * [new branch] gh/anshul-si/14/head -> origin/gh/anshul-si/14/head 2025-08-26T19:37:17.2413748Z * [new branch] gh/anshul-si/14/orig -> origin/gh/anshul-si/14/orig 2025-08-26T19:37:17.2414270Z * [new branch] gh/anshul-si/15/base -> origin/gh/anshul-si/15/base 2025-08-26T19:37:17.2414816Z * [new branch] gh/anshul-si/15/head -> origin/gh/anshul-si/15/head 2025-08-26T19:37:17.2415612Z * [new branch] gh/anshul-si/15/orig -> origin/gh/anshul-si/15/orig 2025-08-26T19:37:17.2825538Z * [new branch] gh/anshul-si/16/base -> origin/gh/anshul-si/16/base 2025-08-26T19:37:17.2826114Z * [new branch] gh/anshul-si/16/head -> origin/gh/anshul-si/16/head 2025-08-26T19:37:17.2826627Z * [new branch] gh/anshul-si/16/orig -> origin/gh/anshul-si/16/orig 2025-08-26T19:37:17.2827122Z * [new branch] gh/anshul-si/17/base -> origin/gh/anshul-si/17/base 2025-08-26T19:37:17.2827665Z * [new branch] gh/anshul-si/17/head -> origin/gh/anshul-si/17/head 2025-08-26T19:37:17.2828206Z * [new branch] gh/anshul-si/17/orig -> origin/gh/anshul-si/17/orig 2025-08-26T19:37:17.2828701Z * [new branch] gh/anshul-si/18/base -> origin/gh/anshul-si/18/base 2025-08-26T19:37:17.2829202Z * [new branch] gh/anshul-si/18/head -> origin/gh/anshul-si/18/head 2025-08-26T19:37:17.2829700Z * [new branch] gh/anshul-si/18/orig -> origin/gh/anshul-si/18/orig 2025-08-26T19:37:17.2830208Z * [new branch] gh/anshul-si/19/base -> origin/gh/anshul-si/19/base 2025-08-26T19:37:17.2830694Z * [new branch] gh/anshul-si/19/head -> origin/gh/anshul-si/19/head 2025-08-26T19:37:17.2831192Z * [new branch] gh/anshul-si/19/orig -> origin/gh/anshul-si/19/orig 2025-08-26T19:37:17.2831696Z * [new branch] gh/anshul-si/2/base -> origin/gh/anshul-si/2/base 2025-08-26T19:37:17.2832191Z * [new branch] gh/anshul-si/2/head -> origin/gh/anshul-si/2/head 2025-08-26T19:37:17.2832691Z * [new branch] gh/anshul-si/20/base -> origin/gh/anshul-si/20/base 2025-08-26T19:37:17.2833176Z * [new branch] gh/anshul-si/20/head -> origin/gh/anshul-si/20/head 2025-08-26T19:37:17.2833721Z * [new branch] gh/anshul-si/20/orig -> origin/gh/anshul-si/20/orig 2025-08-26T19:37:17.2834264Z * [new branch] gh/anshul-si/21/base -> origin/gh/anshul-si/21/base 2025-08-26T19:37:17.2835433Z * [new branch] gh/anshul-si/21/head -> origin/gh/anshul-si/21/head 2025-08-26T19:37:17.2835971Z * [new branch] gh/anshul-si/21/orig -> origin/gh/anshul-si/21/orig 2025-08-26T19:37:17.2836465Z * [new branch] gh/anshul-si/22/base -> origin/gh/anshul-si/22/base 2025-08-26T19:37:17.2836964Z * [new branch] gh/anshul-si/22/head -> origin/gh/anshul-si/22/head 2025-08-26T19:37:17.2837449Z * [new branch] gh/anshul-si/22/orig -> origin/gh/anshul-si/22/orig 2025-08-26T19:37:17.2837952Z * [new branch] gh/anshul-si/23/base -> origin/gh/anshul-si/23/base 2025-08-26T19:37:17.2838446Z * [new branch] gh/anshul-si/23/head -> origin/gh/anshul-si/23/head 2025-08-26T19:37:17.2838941Z * [new branch] gh/anshul-si/23/orig -> origin/gh/anshul-si/23/orig 2025-08-26T19:37:17.2839530Z * [new branch] gh/anshul-si/24/base -> origin/gh/anshul-si/24/base 2025-08-26T19:37:17.2840021Z * [new branch] gh/anshul-si/24/head -> origin/gh/anshul-si/24/head 2025-08-26T19:37:17.2840533Z * [new branch] gh/anshul-si/24/orig -> origin/gh/anshul-si/24/orig 2025-08-26T19:37:17.2841025Z * [new branch] gh/anshul-si/25/base -> origin/gh/anshul-si/25/base 2025-08-26T19:37:17.2841509Z * [new branch] gh/anshul-si/25/head -> origin/gh/anshul-si/25/head 2025-08-26T19:37:17.2842002Z * [new branch] gh/anshul-si/25/orig -> origin/gh/anshul-si/25/orig 2025-08-26T19:37:17.2842494Z * [new branch] gh/anshul-si/26/base -> origin/gh/anshul-si/26/base 2025-08-26T19:37:17.2842983Z * [new branch] gh/anshul-si/26/head -> origin/gh/anshul-si/26/head 2025-08-26T19:37:17.2843810Z * [new branch] gh/anshul-si/26/orig -> origin/gh/anshul-si/26/orig 2025-08-26T19:37:17.2844306Z * [new branch] gh/anshul-si/27/base -> origin/gh/anshul-si/27/base 2025-08-26T19:37:17.2844850Z * [new branch] gh/anshul-si/27/head -> origin/gh/anshul-si/27/head 2025-08-26T19:37:17.2845382Z * [new branch] gh/anshul-si/27/orig -> origin/gh/anshul-si/27/orig 2025-08-26T19:37:17.2845877Z * [new branch] gh/anshul-si/28/base -> origin/gh/anshul-si/28/base 2025-08-26T19:37:17.2846371Z * [new branch] gh/anshul-si/28/head -> origin/gh/anshul-si/28/head 2025-08-26T19:37:17.2846862Z * [new branch] gh/anshul-si/28/orig -> origin/gh/anshul-si/28/orig 2025-08-26T19:37:17.2847365Z * [new branch] gh/anshul-si/3/base -> origin/gh/anshul-si/3/base 2025-08-26T19:37:17.2847857Z * [new branch] gh/anshul-si/3/head -> origin/gh/anshul-si/3/head 2025-08-26T19:37:17.2848344Z * [new branch] gh/anshul-si/4/base -> origin/gh/anshul-si/4/base 2025-08-26T19:37:17.2848847Z * [new branch] gh/anshul-si/4/head -> origin/gh/anshul-si/4/head 2025-08-26T19:37:17.2849329Z * [new branch] gh/anshul-si/5/base -> origin/gh/anshul-si/5/base 2025-08-26T19:37:17.2849816Z * [new branch] gh/anshul-si/5/head -> origin/gh/anshul-si/5/head 2025-08-26T19:37:17.3274096Z * [new branch] gh/anshul-si/7/base -> origin/gh/anshul-si/7/base 2025-08-26T19:37:17.3274674Z * [new branch] gh/anshul-si/7/head -> origin/gh/anshul-si/7/head 2025-08-26T19:37:17.3275172Z * [new branch] gh/anshul-si/7/orig -> origin/gh/anshul-si/7/orig 2025-08-26T19:37:17.3275663Z * [new branch] gh/anshul-si/8/base -> origin/gh/anshul-si/8/base 2025-08-26T19:37:17.3276174Z * [new branch] gh/anshul-si/8/head -> origin/gh/anshul-si/8/head 2025-08-26T19:37:17.3277158Z * [new branch] gh/anshul-si/8/orig -> origin/gh/anshul-si/8/orig 2025-08-26T19:37:17.3277668Z * [new branch] gh/anshul-si/9/base -> origin/gh/anshul-si/9/base 2025-08-26T19:37:17.3278163Z * [new branch] gh/anshul-si/9/head -> origin/gh/anshul-si/9/head 2025-08-26T19:37:17.3278645Z * [new branch] gh/anshul-si/9/orig -> origin/gh/anshul-si/9/orig 2025-08-26T19:37:17.3279148Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-08-26T19:37:17.3279646Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-08-26T19:37:17.3280147Z * [new branch] gh/aorenste/237/base -> origin/gh/aorenste/237/base 2025-08-26T19:37:17.3280649Z * [new branch] gh/aorenste/237/head -> origin/gh/aorenste/237/head 2025-08-26T19:37:17.3281143Z * [new branch] gh/aorenste/237/orig -> origin/gh/aorenste/237/orig 2025-08-26T19:37:17.3281641Z * [new branch] gh/aorenste/238/base -> origin/gh/aorenste/238/base 2025-08-26T19:37:17.3282127Z * [new branch] gh/aorenste/238/head -> origin/gh/aorenste/238/head 2025-08-26T19:37:17.3282632Z * [new branch] gh/aorenste/238/orig -> origin/gh/aorenste/238/orig 2025-08-26T19:37:17.3283127Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-08-26T19:37:17.3283609Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-08-26T19:37:17.3284100Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-08-26T19:37:17.3284584Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-08-26T19:37:17.3285073Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-08-26T19:37:17.3285868Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-08-26T19:37:17.3286361Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-08-26T19:37:17.3286857Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-08-26T19:37:17.3287347Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-08-26T19:37:17.3287841Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-08-26T19:37:17.3288323Z * [new branch] gh/bdhirsh/665/base -> origin/gh/bdhirsh/665/base 2025-08-26T19:37:17.3288812Z * [new branch] gh/bdhirsh/665/head -> origin/gh/bdhirsh/665/head 2025-08-26T19:37:17.3289305Z * [new branch] gh/bdhirsh/665/orig -> origin/gh/bdhirsh/665/orig 2025-08-26T19:37:17.3289790Z * [new branch] gh/bdhirsh/666/base -> origin/gh/bdhirsh/666/base 2025-08-26T19:37:17.3290286Z * [new branch] gh/bdhirsh/666/head -> origin/gh/bdhirsh/666/head 2025-08-26T19:37:17.3290779Z * [new branch] gh/bdhirsh/666/orig -> origin/gh/bdhirsh/666/orig 2025-08-26T19:37:17.3291268Z * [new branch] gh/bdhirsh/667/base -> origin/gh/bdhirsh/667/base 2025-08-26T19:37:17.3291757Z * [new branch] gh/bdhirsh/667/head -> origin/gh/bdhirsh/667/head 2025-08-26T19:37:17.3292240Z * [new branch] gh/bdhirsh/667/orig -> origin/gh/bdhirsh/667/orig 2025-08-26T19:37:17.3292726Z * [new branch] gh/bdhirsh/668/base -> origin/gh/bdhirsh/668/base 2025-08-26T19:37:17.3293204Z * [new branch] gh/bdhirsh/668/head -> origin/gh/bdhirsh/668/head 2025-08-26T19:37:17.3293687Z * [new branch] gh/bdhirsh/668/orig -> origin/gh/bdhirsh/668/orig 2025-08-26T19:37:17.3294235Z * [new branch] gh/benjaminglass1/100/base -> origin/gh/benjaminglass1/100/base 2025-08-26T19:37:17.3295084Z * [new branch] gh/benjaminglass1/100/head -> origin/gh/benjaminglass1/100/head 2025-08-26T19:37:17.3295670Z * [new branch] gh/benjaminglass1/100/orig -> origin/gh/benjaminglass1/100/orig 2025-08-26T19:37:17.3296239Z * [new branch] gh/benjaminglass1/101/base -> origin/gh/benjaminglass1/101/base 2025-08-26T19:37:17.3296812Z * [new branch] gh/benjaminglass1/101/head -> origin/gh/benjaminglass1/101/head 2025-08-26T19:37:17.3297376Z * [new branch] gh/benjaminglass1/101/orig -> origin/gh/benjaminglass1/101/orig 2025-08-26T19:37:17.3297947Z * [new branch] gh/benjaminglass1/102/base -> origin/gh/benjaminglass1/102/base 2025-08-26T19:37:17.3722600Z * [new branch] gh/benjaminglass1/102/head -> origin/gh/benjaminglass1/102/head 2025-08-26T19:37:17.3723258Z * [new branch] gh/benjaminglass1/102/orig -> origin/gh/benjaminglass1/102/orig 2025-08-26T19:37:17.3723847Z * [new branch] gh/benjaminglass1/103/base -> origin/gh/benjaminglass1/103/base 2025-08-26T19:37:17.3724421Z * [new branch] gh/benjaminglass1/103/head -> origin/gh/benjaminglass1/103/head 2025-08-26T19:37:17.3724989Z * [new branch] gh/benjaminglass1/103/orig -> origin/gh/benjaminglass1/103/orig 2025-08-26T19:37:17.3725797Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-08-26T19:37:17.3726656Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-08-26T19:37:17.3727535Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-08-26T19:37:17.3728392Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-08-26T19:37:17.3728972Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-08-26T19:37:17.3730017Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-08-26T19:37:17.3730580Z * [new branch] gh/benjaminglass1/89/base -> origin/gh/benjaminglass1/89/base 2025-08-26T19:37:17.3731149Z * [new branch] gh/benjaminglass1/89/head -> origin/gh/benjaminglass1/89/head 2025-08-26T19:37:17.3731713Z * [new branch] gh/benjaminglass1/89/orig -> origin/gh/benjaminglass1/89/orig 2025-08-26T19:37:17.3732266Z * [new branch] gh/benjaminglass1/91/base -> origin/gh/benjaminglass1/91/base 2025-08-26T19:37:17.3732826Z * [new branch] gh/benjaminglass1/91/head -> origin/gh/benjaminglass1/91/head 2025-08-26T19:37:17.3733375Z * [new branch] gh/benjaminglass1/91/orig -> origin/gh/benjaminglass1/91/orig 2025-08-26T19:37:17.3733941Z * [new branch] gh/benjaminglass1/93/base -> origin/gh/benjaminglass1/93/base 2025-08-26T19:37:17.3734502Z * [new branch] gh/benjaminglass1/93/head -> origin/gh/benjaminglass1/93/head 2025-08-26T19:37:17.3735058Z * [new branch] gh/benjaminglass1/93/orig -> origin/gh/benjaminglass1/93/orig 2025-08-26T19:37:17.3735619Z * [new branch] gh/benjaminglass1/95/base -> origin/gh/benjaminglass1/95/base 2025-08-26T19:37:17.3736171Z * [new branch] gh/benjaminglass1/95/head -> origin/gh/benjaminglass1/95/head 2025-08-26T19:37:17.3736737Z * [new branch] gh/benjaminglass1/95/orig -> origin/gh/benjaminglass1/95/orig 2025-08-26T19:37:17.3737293Z * [new branch] gh/benjaminglass1/97/base -> origin/gh/benjaminglass1/97/base 2025-08-26T19:37:17.3737849Z * [new branch] gh/benjaminglass1/97/head -> origin/gh/benjaminglass1/97/head 2025-08-26T19:37:17.3738409Z * [new branch] gh/benjaminglass1/97/orig -> origin/gh/benjaminglass1/97/orig 2025-08-26T19:37:17.3738965Z * [new branch] gh/benjaminglass1/98/base -> origin/gh/benjaminglass1/98/base 2025-08-26T19:37:17.3739830Z * [new branch] gh/benjaminglass1/98/head -> origin/gh/benjaminglass1/98/head 2025-08-26T19:37:17.3740406Z * [new branch] gh/benjaminglass1/98/orig -> origin/gh/benjaminglass1/98/orig 2025-08-26T19:37:17.3740971Z * [new branch] gh/benjaminglass1/99/base -> origin/gh/benjaminglass1/99/base 2025-08-26T19:37:17.3741531Z * [new branch] gh/benjaminglass1/99/head -> origin/gh/benjaminglass1/99/head 2025-08-26T19:37:17.3742085Z * [new branch] gh/benjaminglass1/99/orig -> origin/gh/benjaminglass1/99/orig 2025-08-26T19:37:17.3742632Z * [new branch] gh/bobrenjc93/514/base -> origin/gh/bobrenjc93/514/base 2025-08-26T19:37:17.3743236Z * [new branch] gh/bobrenjc93/514/head -> origin/gh/bobrenjc93/514/head 2025-08-26T19:37:17.3743758Z * [new branch] gh/bobrenjc93/514/orig -> origin/gh/bobrenjc93/514/orig 2025-08-26T19:37:17.3744276Z * [new branch] gh/bobrenjc93/521/base -> origin/gh/bobrenjc93/521/base 2025-08-26T19:37:17.3744787Z * [new branch] gh/bobrenjc93/521/head -> origin/gh/bobrenjc93/521/head 2025-08-26T19:37:17.3745300Z * [new branch] gh/bobrenjc93/521/orig -> origin/gh/bobrenjc93/521/orig 2025-08-26T19:37:17.3745802Z * [new branch] gh/bobrenjc93/522/base -> origin/gh/bobrenjc93/522/base 2025-08-26T19:37:17.3746321Z * [new branch] gh/bobrenjc93/522/head -> origin/gh/bobrenjc93/522/head 2025-08-26T19:37:17.3746834Z * [new branch] gh/bobrenjc93/522/orig -> origin/gh/bobrenjc93/522/orig 2025-08-26T19:37:17.3747343Z * [new branch] gh/bobrenjc93/525/base -> origin/gh/bobrenjc93/525/base 2025-08-26T19:37:17.3747864Z * [new branch] gh/bobrenjc93/525/head -> origin/gh/bobrenjc93/525/head 2025-08-26T19:37:17.3748681Z * [new branch] gh/bobrenjc93/525/orig -> origin/gh/bobrenjc93/525/orig 2025-08-26T19:37:17.3749214Z * [new branch] gh/bobrenjc93/526/base -> origin/gh/bobrenjc93/526/base 2025-08-26T19:37:17.4166477Z * [new branch] gh/bobrenjc93/526/head -> origin/gh/bobrenjc93/526/head 2025-08-26T19:37:17.4167055Z * [new branch] gh/bobrenjc93/526/orig -> origin/gh/bobrenjc93/526/orig 2025-08-26T19:37:17.4167675Z * [new branch] gh/bobrenjc93/527/base -> origin/gh/bobrenjc93/527/base 2025-08-26T19:37:17.4168248Z * [new branch] gh/bobrenjc93/527/head -> origin/gh/bobrenjc93/527/head 2025-08-26T19:37:17.4168762Z * [new branch] gh/bobrenjc93/527/orig -> origin/gh/bobrenjc93/527/orig 2025-08-26T19:37:17.4169278Z * [new branch] gh/bobrenjc93/528/base -> origin/gh/bobrenjc93/528/base 2025-08-26T19:37:17.4169788Z * [new branch] gh/bobrenjc93/528/head -> origin/gh/bobrenjc93/528/head 2025-08-26T19:37:17.4170316Z * [new branch] gh/bobrenjc93/528/orig -> origin/gh/bobrenjc93/528/orig 2025-08-26T19:37:17.4170845Z * [new branch] gh/bobrenjc93/529/base -> origin/gh/bobrenjc93/529/base 2025-08-26T19:37:17.4171360Z * [new branch] gh/bobrenjc93/529/head -> origin/gh/bobrenjc93/529/head 2025-08-26T19:37:17.4171881Z * [new branch] gh/bobrenjc93/529/orig -> origin/gh/bobrenjc93/529/orig 2025-08-26T19:37:17.4172383Z * [new branch] gh/bobrenjc93/535/base -> origin/gh/bobrenjc93/535/base 2025-08-26T19:37:17.4172903Z * [new branch] gh/bobrenjc93/535/head -> origin/gh/bobrenjc93/535/head 2025-08-26T19:37:17.4173457Z * [new branch] gh/bobrenjc93/535/orig -> origin/gh/bobrenjc93/535/orig 2025-08-26T19:37:17.4174021Z * [new branch] gh/bobrenjc93/537/base -> origin/gh/bobrenjc93/537/base 2025-08-26T19:37:17.4174535Z * [new branch] gh/bobrenjc93/537/head -> origin/gh/bobrenjc93/537/head 2025-08-26T19:37:17.4175461Z * [new branch] gh/bobrenjc93/537/orig -> origin/gh/bobrenjc93/537/orig 2025-08-26T19:37:17.4176001Z * [new branch] gh/bobrenjc93/538/base -> origin/gh/bobrenjc93/538/base 2025-08-26T19:37:17.4176507Z * [new branch] gh/bobrenjc93/538/head -> origin/gh/bobrenjc93/538/head 2025-08-26T19:37:17.4177022Z * [new branch] gh/bobrenjc93/538/orig -> origin/gh/bobrenjc93/538/orig 2025-08-26T19:37:17.4177542Z * [new branch] gh/bobrenjc93/539/base -> origin/gh/bobrenjc93/539/base 2025-08-26T19:37:17.4178049Z * [new branch] gh/bobrenjc93/539/head -> origin/gh/bobrenjc93/539/head 2025-08-26T19:37:17.4178573Z * [new branch] gh/bobrenjc93/539/orig -> origin/gh/bobrenjc93/539/orig 2025-08-26T19:37:17.4179080Z * [new branch] gh/bobrenjc93/540/base -> origin/gh/bobrenjc93/540/base 2025-08-26T19:37:17.4179603Z * [new branch] gh/bobrenjc93/540/head -> origin/gh/bobrenjc93/540/head 2025-08-26T19:37:17.4180125Z * [new branch] gh/bobrenjc93/540/orig -> origin/gh/bobrenjc93/540/orig 2025-08-26T19:37:17.4180636Z * [new branch] gh/bobrenjc93/541/base -> origin/gh/bobrenjc93/541/base 2025-08-26T19:37:17.4181150Z * [new branch] gh/bobrenjc93/541/head -> origin/gh/bobrenjc93/541/head 2025-08-26T19:37:17.4181657Z * [new branch] gh/bobrenjc93/541/orig -> origin/gh/bobrenjc93/541/orig 2025-08-26T19:37:17.4182170Z * [new branch] gh/bobrenjc93/542/base -> origin/gh/bobrenjc93/542/base 2025-08-26T19:37:17.4182684Z * [new branch] gh/bobrenjc93/542/head -> origin/gh/bobrenjc93/542/head 2025-08-26T19:37:17.4183265Z * [new branch] gh/bobrenjc93/542/orig -> origin/gh/bobrenjc93/542/orig 2025-08-26T19:37:17.4184135Z * [new branch] gh/bobrenjc93/543/base -> origin/gh/bobrenjc93/543/base 2025-08-26T19:37:17.4184642Z * [new branch] gh/bobrenjc93/543/head -> origin/gh/bobrenjc93/543/head 2025-08-26T19:37:17.4185169Z * [new branch] gh/bobrenjc93/543/orig -> origin/gh/bobrenjc93/543/orig 2025-08-26T19:37:17.4185690Z * [new branch] gh/bobrenjc93/544/base -> origin/gh/bobrenjc93/544/base 2025-08-26T19:37:17.4186205Z * [new branch] gh/bobrenjc93/544/head -> origin/gh/bobrenjc93/544/head 2025-08-26T19:37:17.4186719Z * [new branch] gh/bobrenjc93/544/orig -> origin/gh/bobrenjc93/544/orig 2025-08-26T19:37:17.4187227Z * [new branch] gh/bobrenjc93/545/base -> origin/gh/bobrenjc93/545/base 2025-08-26T19:37:17.4187737Z * [new branch] gh/bobrenjc93/545/head -> origin/gh/bobrenjc93/545/head 2025-08-26T19:37:17.4188239Z * [new branch] gh/bobrenjc93/545/orig -> origin/gh/bobrenjc93/545/orig 2025-08-26T19:37:17.4188758Z * [new branch] gh/bobrenjc93/546/base -> origin/gh/bobrenjc93/546/base 2025-08-26T19:37:17.4189273Z * [new branch] gh/bobrenjc93/546/head -> origin/gh/bobrenjc93/546/head 2025-08-26T19:37:17.4189776Z * [new branch] gh/bobrenjc93/546/orig -> origin/gh/bobrenjc93/546/orig 2025-08-26T19:37:17.4190283Z * [new branch] gh/bobrenjc93/547/base -> origin/gh/bobrenjc93/547/base 2025-08-26T19:37:17.4666120Z * [new branch] gh/bobrenjc93/547/head -> origin/gh/bobrenjc93/547/head 2025-08-26T19:37:17.4666687Z * [new branch] gh/bobrenjc93/547/orig -> origin/gh/bobrenjc93/547/orig 2025-08-26T19:37:17.4667213Z * [new branch] gh/bobrenjc93/548/base -> origin/gh/bobrenjc93/548/base 2025-08-26T19:37:17.4667731Z * [new branch] gh/bobrenjc93/548/head -> origin/gh/bobrenjc93/548/head 2025-08-26T19:37:17.4668274Z * [new branch] gh/bobrenjc93/548/orig -> origin/gh/bobrenjc93/548/orig 2025-08-26T19:37:17.4669796Z * [new branch] gh/bobrenjc93/549/base -> origin/gh/bobrenjc93/549/base 2025-08-26T19:37:17.4670800Z * [new branch] gh/bobrenjc93/549/head -> origin/gh/bobrenjc93/549/head 2025-08-26T19:37:17.4671342Z * [new branch] gh/bobrenjc93/549/orig -> origin/gh/bobrenjc93/549/orig 2025-08-26T19:37:17.4671856Z * [new branch] gh/bobrenjc93/550/base -> origin/gh/bobrenjc93/550/base 2025-08-26T19:37:17.4672370Z * [new branch] gh/bobrenjc93/550/head -> origin/gh/bobrenjc93/550/head 2025-08-26T19:37:17.4672881Z * [new branch] gh/bobrenjc93/550/orig -> origin/gh/bobrenjc93/550/orig 2025-08-26T19:37:17.4673394Z * [new branch] gh/bobrenjc93/551/base -> origin/gh/bobrenjc93/551/base 2025-08-26T19:37:17.4673908Z * [new branch] gh/bobrenjc93/551/head -> origin/gh/bobrenjc93/551/head 2025-08-26T19:37:17.4674427Z * [new branch] gh/bobrenjc93/551/orig -> origin/gh/bobrenjc93/551/orig 2025-08-26T19:37:17.4674973Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-08-26T19:37:17.4675516Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-08-26T19:37:17.4676020Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-08-26T19:37:17.4676475Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-08-26T19:37:17.4676920Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-08-26T19:37:17.4677376Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-08-26T19:37:17.4677814Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-08-26T19:37:17.4678257Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-08-26T19:37:17.4679082Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-08-26T19:37:17.4679545Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-08-26T19:37:17.4679987Z * [new branch] gh/c00w/51/base -> origin/gh/c00w/51/base 2025-08-26T19:37:17.4680426Z * [new branch] gh/c00w/51/head -> origin/gh/c00w/51/head 2025-08-26T19:37:17.4680875Z * [new branch] gh/c00w/51/orig -> origin/gh/c00w/51/orig 2025-08-26T19:37:17.4681326Z * [new branch] gh/c00w/52/base -> origin/gh/c00w/52/base 2025-08-26T19:37:17.4681768Z * [new branch] gh/c00w/52/head -> origin/gh/c00w/52/head 2025-08-26T19:37:17.4682216Z * [new branch] gh/c00w/52/orig -> origin/gh/c00w/52/orig 2025-08-26T19:37:17.4682654Z * [new branch] gh/c00w/53/base -> origin/gh/c00w/53/base 2025-08-26T19:37:17.4683106Z * [new branch] gh/c00w/53/head -> origin/gh/c00w/53/head 2025-08-26T19:37:17.4683549Z * [new branch] gh/c00w/53/orig -> origin/gh/c00w/53/orig 2025-08-26T19:37:17.4683987Z * [new branch] gh/c00w/54/base -> origin/gh/c00w/54/base 2025-08-26T19:37:17.4684435Z * [new branch] gh/c00w/54/head -> origin/gh/c00w/54/head 2025-08-26T19:37:17.4684879Z * [new branch] gh/c00w/54/orig -> origin/gh/c00w/54/orig 2025-08-26T19:37:17.4685333Z * [new branch] gh/c00w/55/base -> origin/gh/c00w/55/base 2025-08-26T19:37:17.4685768Z * [new branch] gh/c00w/55/head -> origin/gh/c00w/55/head 2025-08-26T19:37:17.4686218Z * [new branch] gh/c00w/55/orig -> origin/gh/c00w/55/orig 2025-08-26T19:37:17.4686728Z * [new branch] gh/chenmillie/1/base -> origin/gh/chenmillie/1/base 2025-08-26T19:37:17.4687254Z * [new branch] gh/chenmillie/1/head -> origin/gh/chenmillie/1/head 2025-08-26T19:37:17.4687862Z * [new branch] gh/chenmillie/1/orig -> origin/gh/chenmillie/1/orig 2025-08-26T19:37:17.4688363Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-08-26T19:37:17.4688857Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-08-26T19:37:17.4689336Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-08-26T19:37:17.4689842Z * [new branch] gh/coconutruben/1/base -> origin/gh/coconutruben/1/base 2025-08-26T19:37:17.4690387Z * [new branch] gh/coconutruben/1/head -> origin/gh/coconutruben/1/head 2025-08-26T19:37:17.4690925Z * [new branch] gh/coconutruben/11/base -> origin/gh/coconutruben/11/base 2025-08-26T19:37:17.5120404Z * [new branch] gh/coconutruben/11/head -> origin/gh/coconutruben/11/head 2025-08-26T19:37:17.5121008Z * [new branch] gh/coconutruben/11/orig -> origin/gh/coconutruben/11/orig 2025-08-26T19:37:17.5121547Z * [new branch] gh/coconutruben/12/base -> origin/gh/coconutruben/12/base 2025-08-26T19:37:17.5122085Z * [new branch] gh/coconutruben/12/head -> origin/gh/coconutruben/12/head 2025-08-26T19:37:17.5122621Z * [new branch] gh/coconutruben/12/orig -> origin/gh/coconutruben/12/orig 2025-08-26T19:37:17.5123141Z * [new branch] gh/coconutruben/13/base -> origin/gh/coconutruben/13/base 2025-08-26T19:37:17.5123680Z * [new branch] gh/coconutruben/13/head -> origin/gh/coconutruben/13/head 2025-08-26T19:37:17.5124206Z * [new branch] gh/coconutruben/13/orig -> origin/gh/coconutruben/13/orig 2025-08-26T19:37:17.5126120Z * [new branch] gh/coconutruben/14/base -> origin/gh/coconutruben/14/base 2025-08-26T19:37:17.5127436Z * [new branch] gh/coconutruben/14/head -> origin/gh/coconutruben/14/head 2025-08-26T19:37:17.5127988Z * [new branch] gh/coconutruben/14/orig -> origin/gh/coconutruben/14/orig 2025-08-26T19:37:17.5128529Z * [new branch] gh/coconutruben/15/base -> origin/gh/coconutruben/15/base 2025-08-26T19:37:17.5129054Z * [new branch] gh/coconutruben/15/head -> origin/gh/coconutruben/15/head 2025-08-26T19:37:17.5129587Z * [new branch] gh/coconutruben/15/orig -> origin/gh/coconutruben/15/orig 2025-08-26T19:37:17.5130114Z * [new branch] gh/coconutruben/16/base -> origin/gh/coconutruben/16/base 2025-08-26T19:37:17.5132081Z * [new branch] gh/coconutruben/16/head -> origin/gh/coconutruben/16/head 2025-08-26T19:37:17.5132636Z * [new branch] gh/coconutruben/16/orig -> origin/gh/coconutruben/16/orig 2025-08-26T19:37:17.5133166Z * [new branch] gh/coconutruben/17/base -> origin/gh/coconutruben/17/base 2025-08-26T19:37:17.5133710Z * [new branch] gh/coconutruben/17/head -> origin/gh/coconutruben/17/head 2025-08-26T19:37:17.5134242Z * [new branch] gh/coconutruben/17/orig -> origin/gh/coconutruben/17/orig 2025-08-26T19:37:17.5134777Z * [new branch] gh/coconutruben/18/base -> origin/gh/coconutruben/18/base 2025-08-26T19:37:17.5135318Z * [new branch] gh/coconutruben/18/head -> origin/gh/coconutruben/18/head 2025-08-26T19:37:17.5135848Z * [new branch] gh/coconutruben/18/orig -> origin/gh/coconutruben/18/orig 2025-08-26T19:37:17.5136443Z * [new branch] gh/coconutruben/19/base -> origin/gh/coconutruben/19/base 2025-08-26T19:37:17.5138670Z * [new branch] gh/coconutruben/19/head -> origin/gh/coconutruben/19/head 2025-08-26T19:37:17.5139220Z * [new branch] gh/coconutruben/19/orig -> origin/gh/coconutruben/19/orig 2025-08-26T19:37:17.5139765Z * [new branch] gh/coconutruben/20/base -> origin/gh/coconutruben/20/base 2025-08-26T19:37:17.5140428Z * [new branch] gh/coconutruben/20/head -> origin/gh/coconutruben/20/head 2025-08-26T19:37:17.5140980Z * [new branch] gh/coconutruben/20/orig -> origin/gh/coconutruben/20/orig 2025-08-26T19:37:17.5141507Z * [new branch] gh/coconutruben/21/base -> origin/gh/coconutruben/21/base 2025-08-26T19:37:17.5142045Z * [new branch] gh/coconutruben/21/head -> origin/gh/coconutruben/21/head 2025-08-26T19:37:17.5142593Z * [new branch] gh/coconutruben/21/orig -> origin/gh/coconutruben/21/orig 2025-08-26T19:37:17.5144571Z * [new branch] gh/coconutruben/22/base -> origin/gh/coconutruben/22/base 2025-08-26T19:37:17.5145124Z * [new branch] gh/coconutruben/22/head -> origin/gh/coconutruben/22/head 2025-08-26T19:37:17.5145665Z * [new branch] gh/coconutruben/22/orig -> origin/gh/coconutruben/22/orig 2025-08-26T19:37:17.5146212Z * [new branch] gh/coconutruben/23/base -> origin/gh/coconutruben/23/base 2025-08-26T19:37:17.5146756Z * [new branch] gh/coconutruben/23/head -> origin/gh/coconutruben/23/head 2025-08-26T19:37:17.5147287Z * [new branch] gh/coconutruben/23/orig -> origin/gh/coconutruben/23/orig 2025-08-26T19:37:17.5147823Z * [new branch] gh/coconutruben/24/base -> origin/gh/coconutruben/24/base 2025-08-26T19:37:17.5148352Z * [new branch] gh/coconutruben/24/head -> origin/gh/coconutruben/24/head 2025-08-26T19:37:17.5148892Z * [new branch] gh/coconutruben/24/orig -> origin/gh/coconutruben/24/orig 2025-08-26T19:37:17.5149418Z * [new branch] gh/coconutruben/25/base -> origin/gh/coconutruben/25/base 2025-08-26T19:37:17.5149966Z * [new branch] gh/coconutruben/25/head -> origin/gh/coconutruben/25/head 2025-08-26T19:37:17.5150877Z * [new branch] gh/coconutruben/25/orig -> origin/gh/coconutruben/25/orig 2025-08-26T19:37:17.5151409Z * [new branch] gh/coconutruben/26/base -> origin/gh/coconutruben/26/base 2025-08-26T19:37:17.5575508Z * [new branch] gh/coconutruben/26/head -> origin/gh/coconutruben/26/head 2025-08-26T19:37:17.5576232Z * [new branch] gh/coconutruben/26/orig -> origin/gh/coconutruben/26/orig 2025-08-26T19:37:17.5576784Z * [new branch] gh/coconutruben/27/base -> origin/gh/coconutruben/27/base 2025-08-26T19:37:17.5577333Z * [new branch] gh/coconutruben/27/head -> origin/gh/coconutruben/27/head 2025-08-26T19:37:17.5577867Z * [new branch] gh/coconutruben/27/orig -> origin/gh/coconutruben/27/orig 2025-08-26T19:37:17.5578402Z * [new branch] gh/coconutruben/28/base -> origin/gh/coconutruben/28/base 2025-08-26T19:37:17.5578954Z * [new branch] gh/coconutruben/28/head -> origin/gh/coconutruben/28/head 2025-08-26T19:37:17.5579494Z * [new branch] gh/coconutruben/28/orig -> origin/gh/coconutruben/28/orig 2025-08-26T19:37:17.5580027Z * [new branch] gh/coconutruben/29/base -> origin/gh/coconutruben/29/base 2025-08-26T19:37:17.5580563Z * [new branch] gh/coconutruben/29/head -> origin/gh/coconutruben/29/head 2025-08-26T19:37:17.5581100Z * [new branch] gh/coconutruben/29/orig -> origin/gh/coconutruben/29/orig 2025-08-26T19:37:17.5581685Z * [new branch] gh/coconutruben/30/base -> origin/gh/coconutruben/30/base 2025-08-26T19:37:17.5582322Z * [new branch] gh/coconutruben/30/head -> origin/gh/coconutruben/30/head 2025-08-26T19:37:17.5582868Z * [new branch] gh/coconutruben/30/orig -> origin/gh/coconutruben/30/orig 2025-08-26T19:37:17.5583464Z * [new branch] gh/coconutruben/31/base -> origin/gh/coconutruben/31/base 2025-08-26T19:37:17.5584005Z * [new branch] gh/coconutruben/31/head -> origin/gh/coconutruben/31/head 2025-08-26T19:37:17.5584721Z * [new branch] gh/coconutruben/31/orig -> origin/gh/coconutruben/31/orig 2025-08-26T19:37:17.5585261Z * [new branch] gh/coconutruben/32/base -> origin/gh/coconutruben/32/base 2025-08-26T19:37:17.5585808Z * [new branch] gh/coconutruben/32/head -> origin/gh/coconutruben/32/head 2025-08-26T19:37:17.5586341Z * [new branch] gh/coconutruben/32/orig -> origin/gh/coconutruben/32/orig 2025-08-26T19:37:17.5586886Z * [new branch] gh/coconutruben/33/base -> origin/gh/coconutruben/33/base 2025-08-26T19:37:17.5587430Z * [new branch] gh/coconutruben/33/head -> origin/gh/coconutruben/33/head 2025-08-26T19:37:17.5587963Z * [new branch] gh/coconutruben/33/orig -> origin/gh/coconutruben/33/orig 2025-08-26T19:37:17.5588512Z * [new branch] gh/coconutruben/34/base -> origin/gh/coconutruben/34/base 2025-08-26T19:37:17.5589054Z * [new branch] gh/coconutruben/34/head -> origin/gh/coconutruben/34/head 2025-08-26T19:37:17.5589591Z * [new branch] gh/coconutruben/34/orig -> origin/gh/coconutruben/34/orig 2025-08-26T19:37:17.5590130Z * [new branch] gh/coconutruben/35/base -> origin/gh/coconutruben/35/base 2025-08-26T19:37:17.5590659Z * [new branch] gh/coconutruben/35/head -> origin/gh/coconutruben/35/head 2025-08-26T19:37:17.5591195Z * [new branch] gh/coconutruben/35/orig -> origin/gh/coconutruben/35/orig 2025-08-26T19:37:17.5591723Z * [new branch] gh/coconutruben/36/base -> origin/gh/coconutruben/36/base 2025-08-26T19:37:17.5592265Z * [new branch] gh/coconutruben/36/head -> origin/gh/coconutruben/36/head 2025-08-26T19:37:17.5592855Z * [new branch] gh/coconutruben/36/orig -> origin/gh/coconutruben/36/orig 2025-08-26T19:37:17.5593989Z * [new branch] gh/coconutruben/37/base -> origin/gh/coconutruben/37/base 2025-08-26T19:37:17.5594553Z * [new branch] gh/coconutruben/37/head -> origin/gh/coconutruben/37/head 2025-08-26T19:37:17.5595083Z * [new branch] gh/coconutruben/37/orig -> origin/gh/coconutruben/37/orig 2025-08-26T19:37:17.5595622Z * [new branch] gh/coconutruben/38/base -> origin/gh/coconutruben/38/base 2025-08-26T19:37:17.5596152Z * [new branch] gh/coconutruben/38/head -> origin/gh/coconutruben/38/head 2025-08-26T19:37:17.5596695Z * [new branch] gh/coconutruben/38/orig -> origin/gh/coconutruben/38/orig 2025-08-26T19:37:17.5597232Z * [new branch] gh/coconutruben/39/base -> origin/gh/coconutruben/39/base 2025-08-26T19:37:17.5597761Z * [new branch] gh/coconutruben/39/head -> origin/gh/coconutruben/39/head 2025-08-26T19:37:17.5598308Z * [new branch] gh/coconutruben/39/orig -> origin/gh/coconutruben/39/orig 2025-08-26T19:37:17.5598846Z * [new branch] gh/coconutruben/40/base -> origin/gh/coconutruben/40/base 2025-08-26T19:37:17.5599385Z * [new branch] gh/coconutruben/40/head -> origin/gh/coconutruben/40/head 2025-08-26T19:37:17.5599919Z * [new branch] gh/coconutruben/40/orig -> origin/gh/coconutruben/40/orig 2025-08-26T19:37:17.5600447Z * [new branch] gh/coconutruben/41/base -> origin/gh/coconutruben/41/base 2025-08-26T19:37:17.6008135Z * [new branch] gh/coconutruben/41/head -> origin/gh/coconutruben/41/head 2025-08-26T19:37:17.6008964Z * [new branch] gh/coconutruben/41/orig -> origin/gh/coconutruben/41/orig 2025-08-26T19:37:17.6009873Z * [new branch] gh/coconutruben/42/base -> origin/gh/coconutruben/42/base 2025-08-26T19:37:17.6010828Z * [new branch] gh/coconutruben/42/head -> origin/gh/coconutruben/42/head 2025-08-26T19:37:17.6011822Z * [new branch] gh/coconutruben/42/orig -> origin/gh/coconutruben/42/orig 2025-08-26T19:37:17.6012979Z * [new branch] gh/coconutruben/43/base -> origin/gh/coconutruben/43/base 2025-08-26T19:37:17.6013852Z * [new branch] gh/coconutruben/43/head -> origin/gh/coconutruben/43/head 2025-08-26T19:37:17.6014767Z * [new branch] gh/coconutruben/43/orig -> origin/gh/coconutruben/43/orig 2025-08-26T19:37:17.6015737Z * [new branch] gh/coconutruben/44/base -> origin/gh/coconutruben/44/base 2025-08-26T19:37:17.6016737Z * [new branch] gh/coconutruben/44/head -> origin/gh/coconutruben/44/head 2025-08-26T19:37:17.6017778Z * [new branch] gh/coconutruben/44/orig -> origin/gh/coconutruben/44/orig 2025-08-26T19:37:17.6018802Z * [new branch] gh/coconutruben/45/base -> origin/gh/coconutruben/45/base 2025-08-26T19:37:17.6019847Z * [new branch] gh/coconutruben/45/head -> origin/gh/coconutruben/45/head 2025-08-26T19:37:17.6020860Z * [new branch] gh/coconutruben/45/orig -> origin/gh/coconutruben/45/orig 2025-08-26T19:37:17.6021864Z * [new branch] gh/coconutruben/46/base -> origin/gh/coconutruben/46/base 2025-08-26T19:37:17.6022967Z * [new branch] gh/coconutruben/46/head -> origin/gh/coconutruben/46/head 2025-08-26T19:37:17.6024051Z * [new branch] gh/coconutruben/46/orig -> origin/gh/coconutruben/46/orig 2025-08-26T19:37:17.6025082Z * [new branch] gh/coconutruben/47/base -> origin/gh/coconutruben/47/base 2025-08-26T19:37:17.6026089Z * [new branch] gh/coconutruben/47/head -> origin/gh/coconutruben/47/head 2025-08-26T19:37:17.6027115Z * [new branch] gh/coconutruben/47/orig -> origin/gh/coconutruben/47/orig 2025-08-26T19:37:17.6028107Z * [new branch] gh/coconutruben/48/base -> origin/gh/coconutruben/48/base 2025-08-26T19:37:17.6029943Z * [new branch] gh/coconutruben/48/head -> origin/gh/coconutruben/48/head 2025-08-26T19:37:17.6030973Z * [new branch] gh/coconutruben/48/orig -> origin/gh/coconutruben/48/orig 2025-08-26T19:37:17.6031946Z * [new branch] gh/coconutruben/49/base -> origin/gh/coconutruben/49/base 2025-08-26T19:37:17.6032917Z * [new branch] gh/coconutruben/49/head -> origin/gh/coconutruben/49/head 2025-08-26T19:37:17.6033738Z * [new branch] gh/coconutruben/49/orig -> origin/gh/coconutruben/49/orig 2025-08-26T19:37:17.6034282Z * [new branch] gh/coconutruben/50/base -> origin/gh/coconutruben/50/base 2025-08-26T19:37:17.6034979Z * [new branch] gh/coconutruben/50/head -> origin/gh/coconutruben/50/head 2025-08-26T19:37:17.6035572Z * [new branch] gh/coconutruben/50/orig -> origin/gh/coconutruben/50/orig 2025-08-26T19:37:17.6036111Z * [new branch] gh/coconutruben/51/base -> origin/gh/coconutruben/51/base 2025-08-26T19:37:17.6036653Z * [new branch] gh/coconutruben/51/head -> origin/gh/coconutruben/51/head 2025-08-26T19:37:17.6037178Z * [new branch] gh/coconutruben/51/orig -> origin/gh/coconutruben/51/orig 2025-08-26T19:37:17.6037719Z * [new branch] gh/coconutruben/52/base -> origin/gh/coconutruben/52/base 2025-08-26T19:37:17.6038248Z * [new branch] gh/coconutruben/52/head -> origin/gh/coconutruben/52/head 2025-08-26T19:37:17.6038775Z * [new branch] gh/coconutruben/52/orig -> origin/gh/coconutruben/52/orig 2025-08-26T19:37:17.6039306Z * [new branch] gh/coconutruben/53/base -> origin/gh/coconutruben/53/base 2025-08-26T19:37:17.6039893Z * [new branch] gh/coconutruben/53/head -> origin/gh/coconutruben/53/head 2025-08-26T19:37:17.6040434Z * [new branch] gh/coconutruben/53/orig -> origin/gh/coconutruben/53/orig 2025-08-26T19:37:17.6040969Z * [new branch] gh/coconutruben/54/base -> origin/gh/coconutruben/54/base 2025-08-26T19:37:17.6041639Z * [new branch] gh/coconutruben/54/head -> origin/gh/coconutruben/54/head 2025-08-26T19:37:17.6042224Z * [new branch] gh/coconutruben/54/orig -> origin/gh/coconutruben/54/orig 2025-08-26T19:37:17.6042780Z * [new branch] gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-08-26T19:37:17.6043369Z * [new branch] gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-08-26T19:37:17.6043949Z * [new branch] gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig 2025-08-26T19:37:17.6528257Z * [new branch] gh/codingwithsurya/13/base -> origin/gh/codingwithsurya/13/base 2025-08-26T19:37:17.6528983Z * [new branch] gh/codingwithsurya/13/head -> origin/gh/codingwithsurya/13/head 2025-08-26T19:37:17.6529676Z * [new branch] gh/codingwithsurya/13/orig -> origin/gh/codingwithsurya/13/orig 2025-08-26T19:37:17.6530325Z * [new branch] gh/codingwithsurya/14/base -> origin/gh/codingwithsurya/14/base 2025-08-26T19:37:17.6531004Z * [new branch] gh/codingwithsurya/14/head -> origin/gh/codingwithsurya/14/head 2025-08-26T19:37:17.6531666Z * [new branch] gh/codingwithsurya/14/orig -> origin/gh/codingwithsurya/14/orig 2025-08-26T19:37:17.6532290Z * [new branch] gh/codingwithsurya/15/base -> origin/gh/codingwithsurya/15/base 2025-08-26T19:37:17.6532946Z * [new branch] gh/codingwithsurya/15/head -> origin/gh/codingwithsurya/15/head 2025-08-26T19:37:17.6533625Z * [new branch] gh/codingwithsurya/15/orig -> origin/gh/codingwithsurya/15/orig 2025-08-26T19:37:17.6534289Z * [new branch] gh/codingwithsurya/16/base -> origin/gh/codingwithsurya/16/base 2025-08-26T19:37:17.6535493Z * [new branch] gh/codingwithsurya/16/head -> origin/gh/codingwithsurya/16/head 2025-08-26T19:37:17.6536123Z * [new branch] gh/codingwithsurya/16/orig -> origin/gh/codingwithsurya/16/orig 2025-08-26T19:37:17.6536785Z * [new branch] gh/codingwithsurya/17/base -> origin/gh/codingwithsurya/17/base 2025-08-26T19:37:17.6537457Z * [new branch] gh/codingwithsurya/17/head -> origin/gh/codingwithsurya/17/head 2025-08-26T19:37:17.6538042Z * [new branch] gh/codingwithsurya/17/orig -> origin/gh/codingwithsurya/17/orig 2025-08-26T19:37:17.6538604Z * [new branch] gh/codingwithsurya/18/base -> origin/gh/codingwithsurya/18/base 2025-08-26T19:37:17.6539179Z * [new branch] gh/codingwithsurya/18/head -> origin/gh/codingwithsurya/18/head 2025-08-26T19:37:17.6539744Z * [new branch] gh/codingwithsurya/18/orig -> origin/gh/codingwithsurya/18/orig 2025-08-26T19:37:17.6540340Z * [new branch] gh/codingwithsurya/19/base -> origin/gh/codingwithsurya/19/base 2025-08-26T19:37:17.6540921Z * [new branch] gh/codingwithsurya/19/head -> origin/gh/codingwithsurya/19/head 2025-08-26T19:37:17.6541492Z * [new branch] gh/codingwithsurya/19/orig -> origin/gh/codingwithsurya/19/orig 2025-08-26T19:37:17.6542074Z * [new branch] gh/codingwithsurya/20/base -> origin/gh/codingwithsurya/20/base 2025-08-26T19:37:17.6542689Z * [new branch] gh/codingwithsurya/20/head -> origin/gh/codingwithsurya/20/head 2025-08-26T19:37:17.6543430Z * [new branch] gh/codingwithsurya/20/orig -> origin/gh/codingwithsurya/20/orig 2025-08-26T19:37:17.6544055Z * [new branch] gh/codingwithsurya/21/base -> origin/gh/codingwithsurya/21/base 2025-08-26T19:37:17.6544721Z * [new branch] gh/codingwithsurya/21/head -> origin/gh/codingwithsurya/21/head 2025-08-26T19:37:17.6545399Z * [new branch] gh/codingwithsurya/21/orig -> origin/gh/codingwithsurya/21/orig 2025-08-26T19:37:17.6546010Z * [new branch] gh/colinchan15/1/base -> origin/gh/colinchan15/1/base 2025-08-26T19:37:17.6546737Z * [new branch] gh/colinchan15/1/head -> origin/gh/colinchan15/1/head 2025-08-26T19:37:17.6547356Z * [new branch] gh/colinchan15/2/base -> origin/gh/colinchan15/2/base 2025-08-26T19:37:17.6547914Z * [new branch] gh/colinchan15/2/head -> origin/gh/colinchan15/2/head 2025-08-26T19:37:17.6548531Z * [new branch] gh/colinchan15/3/base -> origin/gh/colinchan15/3/base 2025-08-26T19:37:17.6549096Z * [new branch] gh/colinchan15/3/head -> origin/gh/colinchan15/3/head 2025-08-26T19:37:17.6549700Z * [new branch] gh/colinchan15/4/base -> origin/gh/colinchan15/4/base 2025-08-26T19:37:17.6550272Z * [new branch] gh/colinchan15/4/head -> origin/gh/colinchan15/4/head 2025-08-26T19:37:17.6550881Z * [new branch] gh/colinchan15/5/base -> origin/gh/colinchan15/5/base 2025-08-26T19:37:17.6551469Z * [new branch] gh/colinchan15/5/head -> origin/gh/colinchan15/5/head 2025-08-26T19:37:17.6552047Z * [new branch] gh/colinchan15/6/base -> origin/gh/colinchan15/6/base 2025-08-26T19:37:17.6552648Z * [new branch] gh/colinchan15/6/head -> origin/gh/colinchan15/6/head 2025-08-26T19:37:17.6553239Z * [new branch] gh/davidberard98/382/base -> origin/gh/davidberard98/382/base 2025-08-26T19:37:17.6553906Z * [new branch] gh/davidberard98/382/head -> origin/gh/davidberard98/382/head 2025-08-26T19:37:17.6554514Z * [new branch] gh/davidberard98/382/orig -> origin/gh/davidberard98/382/orig 2025-08-26T19:37:17.6555164Z * [new branch] gh/davidberard98/386/base -> origin/gh/davidberard98/386/base 2025-08-26T19:37:17.6555817Z * [new branch] gh/davidberard98/386/head -> origin/gh/davidberard98/386/head 2025-08-26T19:37:17.6556569Z * [new branch] gh/davidberard98/386/orig -> origin/gh/davidberard98/386/orig 2025-08-26T19:37:17.7325444Z * [new branch] gh/davidberard98/391/base -> origin/gh/davidberard98/391/base 2025-08-26T19:37:17.7326040Z * [new branch] gh/davidberard98/391/head -> origin/gh/davidberard98/391/head 2025-08-26T19:37:17.7326611Z * [new branch] gh/davidberard98/391/orig -> origin/gh/davidberard98/391/orig 2025-08-26T19:37:17.7327226Z * [new branch] gh/davidberard98/392/base -> origin/gh/davidberard98/392/base 2025-08-26T19:37:17.7327829Z * [new branch] gh/davidberard98/392/head -> origin/gh/davidberard98/392/head 2025-08-26T19:37:17.7328390Z * [new branch] gh/davidberard98/392/orig -> origin/gh/davidberard98/392/orig 2025-08-26T19:37:17.7328945Z * [new branch] gh/davidberard98/393/base -> origin/gh/davidberard98/393/base 2025-08-26T19:37:17.7329498Z * [new branch] gh/davidberard98/393/head -> origin/gh/davidberard98/393/head 2025-08-26T19:37:17.7330054Z * [new branch] gh/davidberard98/393/orig -> origin/gh/davidberard98/393/orig 2025-08-26T19:37:17.7330606Z * [new branch] gh/davidberard98/394/base -> origin/gh/davidberard98/394/base 2025-08-26T19:37:17.7331145Z * [new branch] gh/davidberard98/394/head -> origin/gh/davidberard98/394/head 2025-08-26T19:37:17.7331700Z * [new branch] gh/davidberard98/394/orig -> origin/gh/davidberard98/394/orig 2025-08-26T19:37:17.7332240Z * [new branch] gh/davidberard98/395/base -> origin/gh/davidberard98/395/base 2025-08-26T19:37:17.7332827Z * [new branch] gh/davidberard98/395/head -> origin/gh/davidberard98/395/head 2025-08-26T19:37:17.7333444Z * [new branch] gh/davidberard98/395/orig -> origin/gh/davidberard98/395/orig 2025-08-26T19:37:17.7333997Z * [new branch] gh/davidberard98/396/base -> origin/gh/davidberard98/396/base 2025-08-26T19:37:17.7334689Z * [new branch] gh/davidberard98/396/head -> origin/gh/davidberard98/396/head 2025-08-26T19:37:17.7335250Z * [new branch] gh/davidberard98/396/orig -> origin/gh/davidberard98/396/orig 2025-08-26T19:37:17.7335811Z * [new branch] gh/davidberard98/397/base -> origin/gh/davidberard98/397/base 2025-08-26T19:37:17.7336369Z * [new branch] gh/davidberard98/397/head -> origin/gh/davidberard98/397/head 2025-08-26T19:37:17.7336913Z * [new branch] gh/davidberard98/397/orig -> origin/gh/davidberard98/397/orig 2025-08-26T19:37:17.7337462Z * [new branch] gh/davidberard98/398/base -> origin/gh/davidberard98/398/base 2025-08-26T19:37:17.7338004Z * [new branch] gh/davidberard98/398/head -> origin/gh/davidberard98/398/head 2025-08-26T19:37:17.7338607Z * [new branch] gh/davidberard98/398/orig -> origin/gh/davidberard98/398/orig 2025-08-26T19:37:17.7339207Z * [new branch] gh/davidberard98/399/base -> origin/gh/davidberard98/399/base 2025-08-26T19:37:17.7339768Z * [new branch] gh/davidberard98/399/head -> origin/gh/davidberard98/399/head 2025-08-26T19:37:17.7340320Z * [new branch] gh/davidberard98/399/orig -> origin/gh/davidberard98/399/orig 2025-08-26T19:37:17.7340870Z * [new branch] gh/davidberard98/400/base -> origin/gh/davidberard98/400/base 2025-08-26T19:37:17.7341422Z * [new branch] gh/davidberard98/400/head -> origin/gh/davidberard98/400/head 2025-08-26T19:37:17.7341966Z * [new branch] gh/davidberard98/400/orig -> origin/gh/davidberard98/400/orig 2025-08-26T19:37:17.7342513Z * [new branch] gh/davidberard98/401/base -> origin/gh/davidberard98/401/base 2025-08-26T19:37:17.7343073Z * [new branch] gh/davidberard98/401/head -> origin/gh/davidberard98/401/head 2025-08-26T19:37:17.7343819Z * [new branch] gh/davidberard98/401/orig -> origin/gh/davidberard98/401/orig 2025-08-26T19:37:17.7344428Z * [new branch] gh/davidberard98/402/base -> origin/gh/davidberard98/402/base 2025-08-26T19:37:17.7345024Z * [new branch] gh/davidberard98/402/head -> origin/gh/davidberard98/402/head 2025-08-26T19:37:17.7345579Z * [new branch] gh/davidberard98/402/orig -> origin/gh/davidberard98/402/orig 2025-08-26T19:37:17.7346116Z * [new branch] gh/desertfire/589/base -> origin/gh/desertfire/589/base 2025-08-26T19:37:17.7346637Z * [new branch] gh/desertfire/589/head -> origin/gh/desertfire/589/head 2025-08-26T19:37:17.7347159Z * [new branch] gh/desertfire/589/orig -> origin/gh/desertfire/589/orig 2025-08-26T19:37:17.7347672Z * [new branch] gh/desertfire/591/base -> origin/gh/desertfire/591/base 2025-08-26T19:37:17.7348207Z * [new branch] gh/desertfire/591/head -> origin/gh/desertfire/591/head 2025-08-26T19:37:17.7348730Z * [new branch] gh/desertfire/591/orig -> origin/gh/desertfire/591/orig 2025-08-26T19:37:17.7349244Z * [new branch] gh/desertfire/592/base -> origin/gh/desertfire/592/base 2025-08-26T19:37:17.7349764Z * [new branch] gh/desertfire/592/head -> origin/gh/desertfire/592/head 2025-08-26T19:37:17.7827767Z * [new branch] gh/desertfire/592/orig -> origin/gh/desertfire/592/orig 2025-08-26T19:37:17.7828340Z * [new branch] gh/desertfire/593/base -> origin/gh/desertfire/593/base 2025-08-26T19:37:17.7828866Z * [new branch] gh/desertfire/593/head -> origin/gh/desertfire/593/head 2025-08-26T19:37:17.7829394Z * [new branch] gh/desertfire/593/orig -> origin/gh/desertfire/593/orig 2025-08-26T19:37:17.7829918Z * [new branch] gh/desertfire/594/base -> origin/gh/desertfire/594/base 2025-08-26T19:37:17.7830447Z * [new branch] gh/desertfire/594/head -> origin/gh/desertfire/594/head 2025-08-26T19:37:17.7831119Z * [new branch] gh/desertfire/594/orig -> origin/gh/desertfire/594/orig 2025-08-26T19:37:17.7831644Z * [new branch] gh/desertfire/595/base -> origin/gh/desertfire/595/base 2025-08-26T19:37:17.7832166Z * [new branch] gh/desertfire/595/head -> origin/gh/desertfire/595/head 2025-08-26T19:37:17.7832691Z * [new branch] gh/desertfire/595/orig -> origin/gh/desertfire/595/orig 2025-08-26T19:37:17.7833203Z * [new branch] gh/desertfire/596/base -> origin/gh/desertfire/596/base 2025-08-26T19:37:17.7833727Z * [new branch] gh/desertfire/596/head -> origin/gh/desertfire/596/head 2025-08-26T19:37:17.7834248Z * [new branch] gh/desertfire/596/orig -> origin/gh/desertfire/596/orig 2025-08-26T19:37:17.7834766Z * [new branch] gh/desertfire/597/base -> origin/gh/desertfire/597/base 2025-08-26T19:37:17.7835311Z * [new branch] gh/desertfire/597/head -> origin/gh/desertfire/597/head 2025-08-26T19:37:17.7835824Z * [new branch] gh/desertfire/597/orig -> origin/gh/desertfire/597/orig 2025-08-26T19:37:17.7836343Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-08-26T19:37:17.7836823Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-08-26T19:37:17.7837305Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-08-26T19:37:17.7837784Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-08-26T19:37:17.7838249Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-08-26T19:37:17.7838747Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-08-26T19:37:17.7839705Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-08-26T19:37:17.7840205Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-08-26T19:37:17.7840701Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-08-26T19:37:17.7841190Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-08-26T19:37:17.7841683Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-08-26T19:37:17.7842164Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-08-26T19:37:17.7842661Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-08-26T19:37:17.7843160Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-08-26T19:37:17.7843644Z * [new branch] gh/drisspg/159/base -> origin/gh/drisspg/159/base 2025-08-26T19:37:17.7844137Z * [new branch] gh/drisspg/159/head -> origin/gh/drisspg/159/head 2025-08-26T19:37:17.7844628Z * [new branch] gh/drisspg/159/orig -> origin/gh/drisspg/159/orig 2025-08-26T19:37:17.7845128Z * [new branch] gh/drisspg/166/base -> origin/gh/drisspg/166/base 2025-08-26T19:37:17.7845606Z * [new branch] gh/drisspg/166/head -> origin/gh/drisspg/166/head 2025-08-26T19:37:17.7846166Z * [new branch] gh/drisspg/166/orig -> origin/gh/drisspg/166/orig 2025-08-26T19:37:17.7846707Z * [new branch] gh/drisspg/170/base -> origin/gh/drisspg/170/base 2025-08-26T19:37:17.7847215Z * [new branch] gh/drisspg/170/head -> origin/gh/drisspg/170/head 2025-08-26T19:37:17.7847835Z * [new branch] gh/drisspg/170/orig -> origin/gh/drisspg/170/orig 2025-08-26T19:37:17.7848378Z * [new branch] gh/drisspg/172/base -> origin/gh/drisspg/172/base 2025-08-26T19:37:17.7848898Z * [new branch] gh/drisspg/172/head -> origin/gh/drisspg/172/head 2025-08-26T19:37:17.7849562Z * [new branch] gh/drisspg/172/orig -> origin/gh/drisspg/172/orig 2025-08-26T19:37:17.7850092Z * [new branch] gh/drisspg/173/base -> origin/gh/drisspg/173/base 2025-08-26T19:37:17.7850631Z * [new branch] gh/drisspg/173/head -> origin/gh/drisspg/173/head 2025-08-26T19:37:17.7851199Z * [new branch] gh/drisspg/173/orig -> origin/gh/drisspg/173/orig 2025-08-26T19:37:17.7875417Z * [new branch] gh/drisspg/175/base -> origin/gh/drisspg/175/base 2025-08-26T19:37:17.7876098Z * [new branch] gh/drisspg/175/head -> origin/gh/drisspg/175/head 2025-08-26T19:37:18.0794908Z * [new branch] gh/drisspg/175/orig -> origin/gh/drisspg/175/orig 2025-08-26T19:37:18.0795492Z * [new branch] gh/drisspg/176/base -> origin/gh/drisspg/176/base 2025-08-26T19:37:18.0796025Z * [new branch] gh/drisspg/176/head -> origin/gh/drisspg/176/head 2025-08-26T19:37:18.0796532Z * [new branch] gh/drisspg/176/orig -> origin/gh/drisspg/176/orig 2025-08-26T19:37:18.0797021Z * [new branch] gh/drisspg/177/base -> origin/gh/drisspg/177/base 2025-08-26T19:37:18.0797519Z * [new branch] gh/drisspg/177/head -> origin/gh/drisspg/177/head 2025-08-26T19:37:18.0798097Z * [new branch] gh/drisspg/177/orig -> origin/gh/drisspg/177/orig 2025-08-26T19:37:18.0798587Z * [new branch] gh/drisspg/178/base -> origin/gh/drisspg/178/base 2025-08-26T19:37:18.0799087Z * [new branch] gh/drisspg/178/head -> origin/gh/drisspg/178/head 2025-08-26T19:37:18.0799574Z * [new branch] gh/drisspg/178/orig -> origin/gh/drisspg/178/orig 2025-08-26T19:37:18.0800236Z * [new branch] gh/drisspg/179/base -> origin/gh/drisspg/179/base 2025-08-26T19:37:18.0800734Z * [new branch] gh/drisspg/179/head -> origin/gh/drisspg/179/head 2025-08-26T19:37:18.0801224Z * [new branch] gh/drisspg/179/orig -> origin/gh/drisspg/179/orig 2025-08-26T19:37:18.0801731Z * [new branch] gh/drisspg/180/base -> origin/gh/drisspg/180/base 2025-08-26T19:37:18.0802226Z * [new branch] gh/drisspg/180/head -> origin/gh/drisspg/180/head 2025-08-26T19:37:18.0802718Z * [new branch] gh/drisspg/180/orig -> origin/gh/drisspg/180/orig 2025-08-26T19:37:18.0803198Z * [new branch] gh/drisspg/181/base -> origin/gh/drisspg/181/base 2025-08-26T19:37:18.0803704Z * [new branch] gh/drisspg/181/head -> origin/gh/drisspg/181/head 2025-08-26T19:37:18.0804194Z * [new branch] gh/drisspg/181/orig -> origin/gh/drisspg/181/orig 2025-08-26T19:37:18.0804681Z * [new branch] gh/drisspg/182/base -> origin/gh/drisspg/182/base 2025-08-26T19:37:18.0805190Z * [new branch] gh/drisspg/182/head -> origin/gh/drisspg/182/head 2025-08-26T19:37:18.0805671Z * [new branch] gh/drisspg/183/base -> origin/gh/drisspg/183/base 2025-08-26T19:37:18.0806165Z * [new branch] gh/drisspg/183/head -> origin/gh/drisspg/183/head 2025-08-26T19:37:18.0806649Z * [new branch] gh/drisspg/184/base -> origin/gh/drisspg/184/base 2025-08-26T19:37:18.0807130Z * [new branch] gh/drisspg/184/head -> origin/gh/drisspg/184/head 2025-08-26T19:37:18.0807622Z * [new branch] gh/drisspg/185/base -> origin/gh/drisspg/185/base 2025-08-26T19:37:18.0808100Z * [new branch] gh/drisspg/185/head -> origin/gh/drisspg/185/head 2025-08-26T19:37:18.0808595Z * [new branch] gh/drisspg/186/base -> origin/gh/drisspg/186/base 2025-08-26T19:37:18.0809089Z * [new branch] gh/drisspg/186/head -> origin/gh/drisspg/186/head 2025-08-26T19:37:18.0810074Z * [new branch] gh/drisspg/186/orig -> origin/gh/drisspg/186/orig 2025-08-26T19:37:18.0810587Z * [new branch] gh/drisspg/187/base -> origin/gh/drisspg/187/base 2025-08-26T19:37:18.0811071Z * [new branch] gh/drisspg/187/head -> origin/gh/drisspg/187/head 2025-08-26T19:37:18.0811567Z * [new branch] gh/drisspg/187/orig -> origin/gh/drisspg/187/orig 2025-08-26T19:37:18.0812049Z * [new branch] gh/drisspg/188/base -> origin/gh/drisspg/188/base 2025-08-26T19:37:18.0812543Z * [new branch] gh/drisspg/188/head -> origin/gh/drisspg/188/head 2025-08-26T19:37:18.0813037Z * [new branch] gh/drisspg/188/orig -> origin/gh/drisspg/188/orig 2025-08-26T19:37:18.0813517Z * [new branch] gh/drisspg/189/base -> origin/gh/drisspg/189/base 2025-08-26T19:37:18.0814011Z * [new branch] gh/drisspg/189/head -> origin/gh/drisspg/189/head 2025-08-26T19:37:18.0814498Z * [new branch] gh/drisspg/189/orig -> origin/gh/drisspg/189/orig 2025-08-26T19:37:18.0814994Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-08-26T19:37:18.0815602Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-08-26T19:37:18.0816163Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-08-26T19:37:18.0816670Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-08-26T19:37:18.0817171Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-08-26T19:37:18.0817669Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-08-26T19:37:18.0818277Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-08-26T19:37:18.0818773Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-08-26T19:37:18.1277582Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-08-26T19:37:18.1278142Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-08-26T19:37:18.1278673Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-08-26T19:37:18.1279246Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-08-26T19:37:18.1279790Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-08-26T19:37:18.1280295Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-08-26T19:37:18.1280787Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-08-26T19:37:18.1281322Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-08-26T19:37:18.1281840Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-08-26T19:37:18.1282342Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-08-26T19:37:18.1282853Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-08-26T19:37:18.1283358Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-08-26T19:37:18.1283860Z * [new branch] gh/eellison/805/base -> origin/gh/eellison/805/base 2025-08-26T19:37:18.1284366Z * [new branch] gh/eellison/805/head -> origin/gh/eellison/805/head 2025-08-26T19:37:18.1284857Z * [new branch] gh/eellison/805/orig -> origin/gh/eellison/805/orig 2025-08-26T19:37:18.1285414Z * [new branch] gh/eellison/808/base -> origin/gh/eellison/808/base 2025-08-26T19:37:18.1285960Z * [new branch] gh/eellison/808/head -> origin/gh/eellison/808/head 2025-08-26T19:37:18.1286675Z * [new branch] gh/eellison/808/orig -> origin/gh/eellison/808/orig 2025-08-26T19:37:18.1287178Z * [new branch] gh/eellison/809/base -> origin/gh/eellison/809/base 2025-08-26T19:37:18.1287691Z * [new branch] gh/eellison/809/head -> origin/gh/eellison/809/head 2025-08-26T19:37:18.1288201Z * [new branch] gh/eellison/809/orig -> origin/gh/eellison/809/orig 2025-08-26T19:37:18.1288695Z * [new branch] gh/eellison/810/base -> origin/gh/eellison/810/base 2025-08-26T19:37:18.1289203Z * [new branch] gh/eellison/810/head -> origin/gh/eellison/810/head 2025-08-26T19:37:18.1289697Z * [new branch] gh/eellison/810/orig -> origin/gh/eellison/810/orig 2025-08-26T19:37:18.1290224Z * [new branch] gh/eellison/811/base -> origin/gh/eellison/811/base 2025-08-26T19:37:18.1290732Z * [new branch] gh/eellison/811/head -> origin/gh/eellison/811/head 2025-08-26T19:37:18.1291225Z * [new branch] gh/eellison/811/orig -> origin/gh/eellison/811/orig 2025-08-26T19:37:18.1291790Z * [new branch] gh/eellison/812/base -> origin/gh/eellison/812/base 2025-08-26T19:37:18.1292327Z * [new branch] gh/eellison/812/head -> origin/gh/eellison/812/head 2025-08-26T19:37:18.1293178Z * [new branch] gh/eellison/812/orig -> origin/gh/eellison/812/orig 2025-08-26T19:37:18.1294077Z * [new branch] gh/eellison/813/base -> origin/gh/eellison/813/base 2025-08-26T19:37:18.1294955Z * [new branch] gh/eellison/813/head -> origin/gh/eellison/813/head 2025-08-26T19:37:18.1295463Z * [new branch] gh/eellison/813/orig -> origin/gh/eellison/813/orig 2025-08-26T19:37:18.1296113Z * [new branch] gh/eellison/814/base -> origin/gh/eellison/814/base 2025-08-26T19:37:18.1296628Z * [new branch] gh/eellison/814/head -> origin/gh/eellison/814/head 2025-08-26T19:37:18.1297130Z * [new branch] gh/eellison/814/orig -> origin/gh/eellison/814/orig 2025-08-26T19:37:18.1297688Z * [new branch] gh/eellison/815/base -> origin/gh/eellison/815/base 2025-08-26T19:37:18.1298241Z * [new branch] gh/eellison/815/head -> origin/gh/eellison/815/head 2025-08-26T19:37:18.1298744Z * [new branch] gh/eellison/815/orig -> origin/gh/eellison/815/orig 2025-08-26T19:37:18.1299253Z * [new branch] gh/eellison/816/base -> origin/gh/eellison/816/base 2025-08-26T19:37:18.1299761Z * [new branch] gh/eellison/816/head -> origin/gh/eellison/816/head 2025-08-26T19:37:18.1300255Z * [new branch] gh/eellison/816/orig -> origin/gh/eellison/816/orig 2025-08-26T19:37:18.1300755Z * [new branch] gh/eellison/817/base -> origin/gh/eellison/817/base 2025-08-26T19:37:18.1301254Z * [new branch] gh/eellison/817/head -> origin/gh/eellison/817/head 2025-08-26T19:37:18.1301753Z * [new branch] gh/eellison/817/orig -> origin/gh/eellison/817/orig 2025-08-26T19:37:18.1302258Z * [new branch] gh/eellison/818/base -> origin/gh/eellison/818/base 2025-08-26T19:37:18.1768619Z * [new branch] gh/eellison/818/head -> origin/gh/eellison/818/head 2025-08-26T19:37:18.1769191Z * [new branch] gh/eellison/818/orig -> origin/gh/eellison/818/orig 2025-08-26T19:37:18.1769705Z * [new branch] gh/eellison/819/base -> origin/gh/eellison/819/base 2025-08-26T19:37:18.1770214Z * [new branch] gh/eellison/819/head -> origin/gh/eellison/819/head 2025-08-26T19:37:18.1770737Z * [new branch] gh/eellison/819/orig -> origin/gh/eellison/819/orig 2025-08-26T19:37:18.1771431Z * [new branch] gh/eellison/820/base -> origin/gh/eellison/820/base 2025-08-26T19:37:18.1771932Z * [new branch] gh/eellison/820/head -> origin/gh/eellison/820/head 2025-08-26T19:37:18.1772427Z * [new branch] gh/eellison/820/orig -> origin/gh/eellison/820/orig 2025-08-26T19:37:18.1772920Z * [new branch] gh/eellison/821/base -> origin/gh/eellison/821/base 2025-08-26T19:37:18.1773420Z * [new branch] gh/eellison/821/head -> origin/gh/eellison/821/head 2025-08-26T19:37:18.1773917Z * [new branch] gh/eellison/821/orig -> origin/gh/eellison/821/orig 2025-08-26T19:37:18.1774409Z * [new branch] gh/eellison/822/base -> origin/gh/eellison/822/base 2025-08-26T19:37:18.1774902Z * [new branch] gh/eellison/822/head -> origin/gh/eellison/822/head 2025-08-26T19:37:18.1775398Z * [new branch] gh/eellison/822/orig -> origin/gh/eellison/822/orig 2025-08-26T19:37:18.1775885Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-08-26T19:37:18.1776359Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-08-26T19:37:18.1776812Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-08-26T19:37:18.1777271Z * [new branch] gh/etaf/138/base -> origin/gh/etaf/138/base 2025-08-26T19:37:18.1777729Z * [new branch] gh/etaf/138/head -> origin/gh/etaf/138/head 2025-08-26T19:37:18.1778189Z * [new branch] gh/etaf/138/orig -> origin/gh/etaf/138/orig 2025-08-26T19:37:18.1778643Z * [new branch] gh/etaf/140/base -> origin/gh/etaf/140/base 2025-08-26T19:37:18.1779148Z * [new branch] gh/etaf/140/head -> origin/gh/etaf/140/head 2025-08-26T19:37:18.1779791Z * [new branch] gh/etaf/140/orig -> origin/gh/etaf/140/orig 2025-08-26T19:37:18.1780247Z * [new branch] gh/etaf/143/base -> origin/gh/etaf/143/base 2025-08-26T19:37:18.1780711Z * [new branch] gh/etaf/143/head -> origin/gh/etaf/143/head 2025-08-26T19:37:18.1781175Z * [new branch] gh/etaf/143/orig -> origin/gh/etaf/143/orig 2025-08-26T19:37:18.1781653Z * [new branch] gh/etaf/147/base -> origin/gh/etaf/147/base 2025-08-26T19:37:18.1782111Z * [new branch] gh/etaf/147/head -> origin/gh/etaf/147/head 2025-08-26T19:37:18.1782561Z * [new branch] gh/etaf/149/base -> origin/gh/etaf/149/base 2025-08-26T19:37:18.1783024Z * [new branch] gh/etaf/149/head -> origin/gh/etaf/149/head 2025-08-26T19:37:18.1783528Z * [new branch] gh/etaf/149/orig -> origin/gh/etaf/149/orig 2025-08-26T19:37:18.1783994Z * [new branch] gh/etaf/150/base -> origin/gh/etaf/150/base 2025-08-26T19:37:18.1784463Z * [new branch] gh/etaf/150/head -> origin/gh/etaf/150/head 2025-08-26T19:37:18.1784917Z * [new branch] gh/etaf/150/orig -> origin/gh/etaf/150/orig 2025-08-26T19:37:18.1785382Z * [new branch] gh/etaf/151/base -> origin/gh/etaf/151/base 2025-08-26T19:37:18.1785839Z * [new branch] gh/etaf/151/head -> origin/gh/etaf/151/head 2025-08-26T19:37:18.1786300Z * [new branch] gh/etaf/151/orig -> origin/gh/etaf/151/orig 2025-08-26T19:37:18.1786758Z * [new branch] gh/etaf/152/base -> origin/gh/etaf/152/base 2025-08-26T19:37:18.1787207Z * [new branch] gh/etaf/152/head -> origin/gh/etaf/152/head 2025-08-26T19:37:18.1787678Z * [new branch] gh/etaf/152/orig -> origin/gh/etaf/152/orig 2025-08-26T19:37:18.1788133Z * [new branch] gh/etaf/153/base -> origin/gh/etaf/153/base 2025-08-26T19:37:18.1788693Z * [new branch] gh/etaf/153/head -> origin/gh/etaf/153/head 2025-08-26T19:37:18.1789160Z * [new branch] gh/etaf/153/orig -> origin/gh/etaf/153/orig 2025-08-26T19:37:18.1789617Z * [new branch] gh/etaf/154/base -> origin/gh/etaf/154/base 2025-08-26T19:37:18.1790124Z * [new branch] gh/etaf/154/head -> origin/gh/etaf/154/head 2025-08-26T19:37:18.1790601Z * [new branch] gh/etaf/154/orig -> origin/gh/etaf/154/orig 2025-08-26T19:37:18.1791116Z * [new branch] gh/etaf/155/base -> origin/gh/etaf/155/base 2025-08-26T19:37:18.1791563Z * [new branch] gh/etaf/155/head -> origin/gh/etaf/155/head 2025-08-26T19:37:18.2216557Z * [new branch] gh/etaf/155/orig -> origin/gh/etaf/155/orig 2025-08-26T19:37:18.2217122Z * [new branch] gh/etaf/156/base -> origin/gh/etaf/156/base 2025-08-26T19:37:18.2217618Z * [new branch] gh/etaf/156/head -> origin/gh/etaf/156/head 2025-08-26T19:37:18.2218091Z * [new branch] gh/etaf/156/orig -> origin/gh/etaf/156/orig 2025-08-26T19:37:18.2218553Z * [new branch] gh/etaf/157/base -> origin/gh/etaf/157/base 2025-08-26T19:37:18.2219001Z * [new branch] gh/etaf/157/head -> origin/gh/etaf/157/head 2025-08-26T19:37:18.2219454Z * [new branch] gh/etaf/157/orig -> origin/gh/etaf/157/orig 2025-08-26T19:37:18.2219903Z * [new branch] gh/etaf/158/base -> origin/gh/etaf/158/base 2025-08-26T19:37:18.2220361Z * [new branch] gh/etaf/158/head -> origin/gh/etaf/158/head 2025-08-26T19:37:18.2220822Z * [new branch] gh/etaf/158/orig -> origin/gh/etaf/158/orig 2025-08-26T19:37:18.2221473Z * [new branch] gh/etaf/159/base -> origin/gh/etaf/159/base 2025-08-26T19:37:18.2221935Z * [new branch] gh/etaf/159/head -> origin/gh/etaf/159/head 2025-08-26T19:37:18.2222387Z * [new branch] gh/etaf/159/orig -> origin/gh/etaf/159/orig 2025-08-26T19:37:18.2222857Z * [new branch] gh/etaf/160/base -> origin/gh/etaf/160/base 2025-08-26T19:37:18.2223377Z * [new branch] gh/etaf/160/head -> origin/gh/etaf/160/head 2025-08-26T19:37:18.2223844Z * [new branch] gh/etaf/160/orig -> origin/gh/etaf/160/orig 2025-08-26T19:37:18.2224307Z * [new branch] gh/etaf/161/base -> origin/gh/etaf/161/base 2025-08-26T19:37:18.2224844Z * [new branch] gh/etaf/161/head -> origin/gh/etaf/161/head 2025-08-26T19:37:18.2225353Z * [new branch] gh/etaf/161/orig -> origin/gh/etaf/161/orig 2025-08-26T19:37:18.2225811Z * [new branch] gh/etaf/162/base -> origin/gh/etaf/162/base 2025-08-26T19:37:18.2226288Z * [new branch] gh/etaf/162/head -> origin/gh/etaf/162/head 2025-08-26T19:37:18.2226749Z * [new branch] gh/etaf/162/orig -> origin/gh/etaf/162/orig 2025-08-26T19:37:18.2227199Z * [new branch] gh/etaf/163/base -> origin/gh/etaf/163/base 2025-08-26T19:37:18.2227655Z * [new branch] gh/etaf/163/head -> origin/gh/etaf/163/head 2025-08-26T19:37:18.2228109Z * [new branch] gh/etaf/163/orig -> origin/gh/etaf/163/orig 2025-08-26T19:37:18.2228573Z * [new branch] gh/etaf/164/base -> origin/gh/etaf/164/base 2025-08-26T19:37:18.2229032Z * [new branch] gh/etaf/164/head -> origin/gh/etaf/164/head 2025-08-26T19:37:18.2229483Z * [new branch] gh/etaf/164/orig -> origin/gh/etaf/164/orig 2025-08-26T19:37:18.2229950Z * [new branch] gh/etaf/165/base -> origin/gh/etaf/165/base 2025-08-26T19:37:18.2230549Z * [new branch] gh/etaf/165/head -> origin/gh/etaf/165/head 2025-08-26T19:37:18.2231017Z * [new branch] gh/etaf/165/orig -> origin/gh/etaf/165/orig 2025-08-26T19:37:18.2231543Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-08-26T19:37:18.2232044Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-08-26T19:37:18.2232534Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-08-26T19:37:18.2233022Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-08-26T19:37:18.2233506Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-08-26T19:37:18.2233988Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-08-26T19:37:18.2234480Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-08-26T19:37:18.2234971Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-08-26T19:37:18.2235452Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-08-26T19:37:18.2235939Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-08-26T19:37:18.2236418Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-08-26T19:37:18.2237000Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-08-26T19:37:18.2237492Z * [new branch] gh/ezyang/3071/base -> origin/gh/ezyang/3071/base 2025-08-26T19:37:18.2237970Z * [new branch] gh/ezyang/3071/head -> origin/gh/ezyang/3071/head 2025-08-26T19:37:18.2238559Z * [new branch] gh/ezyang/3071/orig -> origin/gh/ezyang/3071/orig 2025-08-26T19:37:18.2239044Z * [new branch] gh/ezyang/3074/base -> origin/gh/ezyang/3074/base 2025-08-26T19:37:18.2239544Z * [new branch] gh/ezyang/3074/head -> origin/gh/ezyang/3074/head 2025-08-26T19:37:18.2240039Z * [new branch] gh/ezyang/3074/orig -> origin/gh/ezyang/3074/orig 2025-08-26T19:37:18.2703851Z * [new branch] gh/ezyang/3088/base -> origin/gh/ezyang/3088/base 2025-08-26T19:37:18.2704422Z * [new branch] gh/ezyang/3088/head -> origin/gh/ezyang/3088/head 2025-08-26T19:37:18.2704916Z * [new branch] gh/ezyang/3088/orig -> origin/gh/ezyang/3088/orig 2025-08-26T19:37:18.2705400Z * [new branch] gh/ezyang/3092/base -> origin/gh/ezyang/3092/base 2025-08-26T19:37:18.2705888Z * [new branch] gh/ezyang/3092/head -> origin/gh/ezyang/3092/head 2025-08-26T19:37:18.2706501Z * [new branch] gh/ezyang/3092/orig -> origin/gh/ezyang/3092/orig 2025-08-26T19:37:18.2707006Z * [new branch] gh/ezyang/3103/base -> origin/gh/ezyang/3103/base 2025-08-26T19:37:18.2707496Z * [new branch] gh/ezyang/3103/head -> origin/gh/ezyang/3103/head 2025-08-26T19:37:18.2707970Z * [new branch] gh/ezyang/3103/orig -> origin/gh/ezyang/3103/orig 2025-08-26T19:37:18.2708453Z * [new branch] gh/ezyang/3105/base -> origin/gh/ezyang/3105/base 2025-08-26T19:37:18.2708942Z * [new branch] gh/ezyang/3105/head -> origin/gh/ezyang/3105/head 2025-08-26T19:37:18.2709415Z * [new branch] gh/ezyang/3105/orig -> origin/gh/ezyang/3105/orig 2025-08-26T19:37:18.2709900Z * [new branch] gh/ezyang/3114/base -> origin/gh/ezyang/3114/base 2025-08-26T19:37:18.2710381Z * [new branch] gh/ezyang/3114/head -> origin/gh/ezyang/3114/head 2025-08-26T19:37:18.2710869Z * [new branch] gh/ezyang/3114/orig -> origin/gh/ezyang/3114/orig 2025-08-26T19:37:18.2711521Z * [new branch] gh/ezyang/3116/base -> origin/gh/ezyang/3116/base 2025-08-26T19:37:18.2712007Z * [new branch] gh/ezyang/3116/head -> origin/gh/ezyang/3116/head 2025-08-26T19:37:18.2712503Z * [new branch] gh/ezyang/3116/orig -> origin/gh/ezyang/3116/orig 2025-08-26T19:37:18.2712984Z * [new branch] gh/ezyang/3117/base -> origin/gh/ezyang/3117/base 2025-08-26T19:37:18.2713476Z * [new branch] gh/ezyang/3117/head -> origin/gh/ezyang/3117/head 2025-08-26T19:37:18.2713956Z * [new branch] gh/ezyang/3117/orig -> origin/gh/ezyang/3117/orig 2025-08-26T19:37:18.2714446Z * [new branch] gh/ezyang/3118/base -> origin/gh/ezyang/3118/base 2025-08-26T19:37:18.2714935Z * [new branch] gh/ezyang/3118/head -> origin/gh/ezyang/3118/head 2025-08-26T19:37:18.2715419Z * [new branch] gh/ezyang/3118/orig -> origin/gh/ezyang/3118/orig 2025-08-26T19:37:18.2715919Z * [new branch] gh/ezyang/3119/base -> origin/gh/ezyang/3119/base 2025-08-26T19:37:18.2716403Z * [new branch] gh/ezyang/3119/head -> origin/gh/ezyang/3119/head 2025-08-26T19:37:18.2716887Z * [new branch] gh/ezyang/3119/orig -> origin/gh/ezyang/3119/orig 2025-08-26T19:37:18.2717365Z * [new branch] gh/ezyang/3120/base -> origin/gh/ezyang/3120/base 2025-08-26T19:37:18.2717841Z * [new branch] gh/ezyang/3120/head -> origin/gh/ezyang/3120/head 2025-08-26T19:37:18.2718328Z * [new branch] gh/ezyang/3120/orig -> origin/gh/ezyang/3120/orig 2025-08-26T19:37:18.2718806Z * [new branch] gh/ezyang/3121/base -> origin/gh/ezyang/3121/base 2025-08-26T19:37:18.2719393Z * [new branch] gh/ezyang/3121/head -> origin/gh/ezyang/3121/head 2025-08-26T19:37:18.2719877Z * [new branch] gh/ezyang/3121/orig -> origin/gh/ezyang/3121/orig 2025-08-26T19:37:18.2720365Z * [new branch] gh/ezyang/3122/base -> origin/gh/ezyang/3122/base 2025-08-26T19:37:18.2720856Z * [new branch] gh/ezyang/3122/head -> origin/gh/ezyang/3122/head 2025-08-26T19:37:18.2721344Z * [new branch] gh/ezyang/3122/orig -> origin/gh/ezyang/3122/orig 2025-08-26T19:37:18.2721831Z * [new branch] gh/ezyang/3123/base -> origin/gh/ezyang/3123/base 2025-08-26T19:37:18.2722308Z * [new branch] gh/ezyang/3123/head -> origin/gh/ezyang/3123/head 2025-08-26T19:37:18.2722788Z * [new branch] gh/ezyang/3123/orig -> origin/gh/ezyang/3123/orig 2025-08-26T19:37:18.2723267Z * [new branch] gh/ezyang/3124/base -> origin/gh/ezyang/3124/base 2025-08-26T19:37:18.2723751Z * [new branch] gh/ezyang/3124/head -> origin/gh/ezyang/3124/head 2025-08-26T19:37:18.2724234Z * [new branch] gh/ezyang/3124/orig -> origin/gh/ezyang/3124/orig 2025-08-26T19:37:18.2724712Z * [new branch] gh/ezyang/3125/base -> origin/gh/ezyang/3125/base 2025-08-26T19:37:18.2725202Z * [new branch] gh/ezyang/3125/head -> origin/gh/ezyang/3125/head 2025-08-26T19:37:18.2725687Z * [new branch] gh/ezyang/3125/orig -> origin/gh/ezyang/3125/orig 2025-08-26T19:37:18.2726166Z * [new branch] gh/ezyang/3126/base -> origin/gh/ezyang/3126/base 2025-08-26T19:37:18.2726646Z * [new branch] gh/ezyang/3126/head -> origin/gh/ezyang/3126/head 2025-08-26T19:37:18.6333222Z * [new branch] gh/ezyang/3126/orig -> origin/gh/ezyang/3126/orig 2025-08-26T19:37:18.6333770Z * [new branch] gh/ezyang/3127/base -> origin/gh/ezyang/3127/base 2025-08-26T19:37:18.6334301Z * [new branch] gh/ezyang/3127/head -> origin/gh/ezyang/3127/head 2025-08-26T19:37:18.6335005Z * [new branch] gh/ezyang/3127/orig -> origin/gh/ezyang/3127/orig 2025-08-26T19:37:18.6335494Z * [new branch] gh/ezyang/3128/base -> origin/gh/ezyang/3128/base 2025-08-26T19:37:18.6335985Z * [new branch] gh/ezyang/3128/head -> origin/gh/ezyang/3128/head 2025-08-26T19:37:18.6336459Z * [new branch] gh/ezyang/3128/orig -> origin/gh/ezyang/3128/orig 2025-08-26T19:37:18.6336949Z * [new branch] gh/ezyang/3129/base -> origin/gh/ezyang/3129/base 2025-08-26T19:37:18.6337445Z * [new branch] gh/ezyang/3129/head -> origin/gh/ezyang/3129/head 2025-08-26T19:37:18.6337920Z * [new branch] gh/ezyang/3129/orig -> origin/gh/ezyang/3129/orig 2025-08-26T19:37:18.6338408Z * [new branch] gh/ezyang/3130/base -> origin/gh/ezyang/3130/base 2025-08-26T19:37:18.6338895Z * [new branch] gh/ezyang/3130/head -> origin/gh/ezyang/3130/head 2025-08-26T19:37:18.6339383Z * [new branch] gh/ezyang/3130/orig -> origin/gh/ezyang/3130/orig 2025-08-26T19:37:18.6339871Z * [new branch] gh/ezyang/3131/base -> origin/gh/ezyang/3131/base 2025-08-26T19:37:18.6340343Z * [new branch] gh/ezyang/3131/head -> origin/gh/ezyang/3131/head 2025-08-26T19:37:18.6340827Z * [new branch] gh/ezyang/3131/orig -> origin/gh/ezyang/3131/orig 2025-08-26T19:37:18.6341305Z * [new branch] gh/ezyang/3132/base -> origin/gh/ezyang/3132/base 2025-08-26T19:37:18.6341790Z * [new branch] gh/ezyang/3132/head -> origin/gh/ezyang/3132/head 2025-08-26T19:37:18.6342298Z * [new branch] gh/ezyang/3132/orig -> origin/gh/ezyang/3132/orig 2025-08-26T19:37:18.6342899Z * [new branch] gh/ezyang/3133/base -> origin/gh/ezyang/3133/base 2025-08-26T19:37:18.6343466Z * [new branch] gh/ezyang/3133/head -> origin/gh/ezyang/3133/head 2025-08-26T19:37:18.6343952Z * [new branch] gh/ezyang/3133/orig -> origin/gh/ezyang/3133/orig 2025-08-26T19:37:18.6344442Z * [new branch] gh/ezyang/3134/base -> origin/gh/ezyang/3134/base 2025-08-26T19:37:18.6344928Z * [new branch] gh/ezyang/3134/head -> origin/gh/ezyang/3134/head 2025-08-26T19:37:18.6345408Z * [new branch] gh/ezyang/3134/orig -> origin/gh/ezyang/3134/orig 2025-08-26T19:37:18.6345907Z * [new branch] gh/ezyang/3135/base -> origin/gh/ezyang/3135/base 2025-08-26T19:37:18.6346383Z * [new branch] gh/ezyang/3135/head -> origin/gh/ezyang/3135/head 2025-08-26T19:37:18.6346868Z * [new branch] gh/ezyang/3135/orig -> origin/gh/ezyang/3135/orig 2025-08-26T19:37:18.6347353Z * [new branch] gh/ezyang/3136/base -> origin/gh/ezyang/3136/base 2025-08-26T19:37:18.6347844Z * [new branch] gh/ezyang/3136/head -> origin/gh/ezyang/3136/head 2025-08-26T19:37:18.6348329Z * [new branch] gh/ezyang/3136/orig -> origin/gh/ezyang/3136/orig 2025-08-26T19:37:18.6348808Z * [new branch] gh/ezyang/3137/base -> origin/gh/ezyang/3137/base 2025-08-26T19:37:18.6349291Z * [new branch] gh/ezyang/3137/head -> origin/gh/ezyang/3137/head 2025-08-26T19:37:18.6349770Z * [new branch] gh/ezyang/3137/orig -> origin/gh/ezyang/3137/orig 2025-08-26T19:37:18.6350265Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-08-26T19:37:18.6350821Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-08-26T19:37:18.6351298Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-08-26T19:37:18.6351782Z * [new branch] gh/fduwjj/169/base -> origin/gh/fduwjj/169/base 2025-08-26T19:37:18.6352367Z * [new branch] gh/fduwjj/169/head -> origin/gh/fduwjj/169/head 2025-08-26T19:37:18.6352856Z * [new branch] gh/fduwjj/169/orig -> origin/gh/fduwjj/169/orig 2025-08-26T19:37:18.6353343Z * [new branch] gh/fduwjj/171/base -> origin/gh/fduwjj/171/base 2025-08-26T19:37:18.6353815Z * [new branch] gh/fduwjj/171/head -> origin/gh/fduwjj/171/head 2025-08-26T19:37:18.6354295Z * [new branch] gh/fduwjj/171/orig -> origin/gh/fduwjj/171/orig 2025-08-26T19:37:18.6354761Z * [new branch] gh/fduwjj/175/base -> origin/gh/fduwjj/175/base 2025-08-26T19:37:18.6355244Z * [new branch] gh/fduwjj/175/head -> origin/gh/fduwjj/175/head 2025-08-26T19:37:18.6355725Z * [new branch] gh/fduwjj/175/orig -> origin/gh/fduwjj/175/orig 2025-08-26T19:37:18.6356203Z * [new branch] gh/fduwjj/176/base -> origin/gh/fduwjj/176/base 2025-08-26T19:37:18.6842638Z * [new branch] gh/fduwjj/176/head -> origin/gh/fduwjj/176/head 2025-08-26T19:37:18.6843181Z * [new branch] gh/fduwjj/176/orig -> origin/gh/fduwjj/176/orig 2025-08-26T19:37:18.6843676Z * [new branch] gh/fduwjj/177/base -> origin/gh/fduwjj/177/base 2025-08-26T19:37:18.6844165Z * [new branch] gh/fduwjj/177/head -> origin/gh/fduwjj/177/head 2025-08-26T19:37:18.6844635Z * [new branch] gh/fduwjj/177/orig -> origin/gh/fduwjj/177/orig 2025-08-26T19:37:18.6845115Z * [new branch] gh/fduwjj/178/base -> origin/gh/fduwjj/178/base 2025-08-26T19:37:18.6845584Z * [new branch] gh/fduwjj/178/head -> origin/gh/fduwjj/178/head 2025-08-26T19:37:18.6846067Z * [new branch] gh/fduwjj/178/orig -> origin/gh/fduwjj/178/orig 2025-08-26T19:37:18.6846734Z * [new branch] gh/fduwjj/179/base -> origin/gh/fduwjj/179/base 2025-08-26T19:37:18.6847229Z * [new branch] gh/fduwjj/179/head -> origin/gh/fduwjj/179/head 2025-08-26T19:37:18.6847714Z * [new branch] gh/fduwjj/179/orig -> origin/gh/fduwjj/179/orig 2025-08-26T19:37:18.6848182Z * [new branch] gh/fduwjj/180/base -> origin/gh/fduwjj/180/base 2025-08-26T19:37:18.6848655Z * [new branch] gh/fduwjj/180/head -> origin/gh/fduwjj/180/head 2025-08-26T19:37:18.6849128Z * [new branch] gh/fduwjj/180/orig -> origin/gh/fduwjj/180/orig 2025-08-26T19:37:18.6849616Z * [new branch] gh/fduwjj/181/base -> origin/gh/fduwjj/181/base 2025-08-26T19:37:18.6850088Z * [new branch] gh/fduwjj/181/head -> origin/gh/fduwjj/181/head 2025-08-26T19:37:18.6850558Z * [new branch] gh/fduwjj/181/orig -> origin/gh/fduwjj/181/orig 2025-08-26T19:37:18.6851048Z * [new branch] gh/fduwjj/182/base -> origin/gh/fduwjj/182/base 2025-08-26T19:37:18.6851529Z * [new branch] gh/fduwjj/182/head -> origin/gh/fduwjj/182/head 2025-08-26T19:37:18.6852006Z * [new branch] gh/fduwjj/182/orig -> origin/gh/fduwjj/182/orig 2025-08-26T19:37:18.6852486Z * [new branch] gh/fduwjj/183/base -> origin/gh/fduwjj/183/base 2025-08-26T19:37:18.6852955Z * [new branch] gh/fduwjj/183/head -> origin/gh/fduwjj/183/head 2025-08-26T19:37:18.6853430Z * [new branch] gh/fduwjj/183/orig -> origin/gh/fduwjj/183/orig 2025-08-26T19:37:18.6853904Z * [new branch] gh/fduwjj/184/base -> origin/gh/fduwjj/184/base 2025-08-26T19:37:18.6854394Z * [new branch] gh/fduwjj/184/head -> origin/gh/fduwjj/184/head 2025-08-26T19:37:18.6854877Z * [new branch] gh/fduwjj/184/orig -> origin/gh/fduwjj/184/orig 2025-08-26T19:37:18.6855452Z * [new branch] gh/fduwjj/185/base -> origin/gh/fduwjj/185/base 2025-08-26T19:37:18.6855934Z * [new branch] gh/fduwjj/185/head -> origin/gh/fduwjj/185/head 2025-08-26T19:37:18.6856408Z * [new branch] gh/fduwjj/185/orig -> origin/gh/fduwjj/185/orig 2025-08-26T19:37:18.6856887Z * [new branch] gh/fduwjj/186/base -> origin/gh/fduwjj/186/base 2025-08-26T19:37:18.6857372Z * [new branch] gh/fduwjj/186/head -> origin/gh/fduwjj/186/head 2025-08-26T19:37:18.6857847Z * [new branch] gh/fduwjj/186/orig -> origin/gh/fduwjj/186/orig 2025-08-26T19:37:18.6858330Z * [new branch] gh/fduwjj/187/base -> origin/gh/fduwjj/187/base 2025-08-26T19:37:18.6858801Z * [new branch] gh/fduwjj/187/head -> origin/gh/fduwjj/187/head 2025-08-26T19:37:18.6859284Z * [new branch] gh/fduwjj/187/orig -> origin/gh/fduwjj/187/orig 2025-08-26T19:37:18.6859767Z * [new branch] gh/fduwjj/188/base -> origin/gh/fduwjj/188/base 2025-08-26T19:37:18.6860235Z * [new branch] gh/fduwjj/188/head -> origin/gh/fduwjj/188/head 2025-08-26T19:37:18.6860715Z * [new branch] gh/fduwjj/188/orig -> origin/gh/fduwjj/188/orig 2025-08-26T19:37:18.6861183Z * [new branch] gh/fduwjj/189/base -> origin/gh/fduwjj/189/base 2025-08-26T19:37:18.6861662Z * [new branch] gh/fduwjj/189/head -> origin/gh/fduwjj/189/head 2025-08-26T19:37:18.6862135Z * [new branch] gh/fduwjj/189/orig -> origin/gh/fduwjj/189/orig 2025-08-26T19:37:18.6862606Z * [new branch] gh/fduwjj/190/base -> origin/gh/fduwjj/190/base 2025-08-26T19:37:18.6863079Z * [new branch] gh/fduwjj/190/head -> origin/gh/fduwjj/190/head 2025-08-26T19:37:18.6863729Z * [new branch] gh/fduwjj/190/orig -> origin/gh/fduwjj/190/orig 2025-08-26T19:37:18.6864216Z * [new branch] gh/fduwjj/191/base -> origin/gh/fduwjj/191/base 2025-08-26T19:37:18.6864684Z * [new branch] gh/fduwjj/191/head -> origin/gh/fduwjj/191/head 2025-08-26T19:37:18.6865176Z * [new branch] gh/fduwjj/191/orig -> origin/gh/fduwjj/191/orig 2025-08-26T19:37:18.6865653Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-08-26T19:37:18.7741831Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-08-26T19:37:18.7742366Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-08-26T19:37:18.7742850Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-08-26T19:37:18.7743325Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-08-26T19:37:18.7743907Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-08-26T19:37:18.7744454Z * [new branch] gh/fffrog/124/base -> origin/gh/fffrog/124/base 2025-08-26T19:37:18.7744987Z * [new branch] gh/fffrog/124/head -> origin/gh/fffrog/124/head 2025-08-26T19:37:18.7745469Z * [new branch] gh/fffrog/124/orig -> origin/gh/fffrog/124/orig 2025-08-26T19:37:18.7745940Z * [new branch] gh/fffrog/128/base -> origin/gh/fffrog/128/base 2025-08-26T19:37:18.7746421Z * [new branch] gh/fffrog/128/head -> origin/gh/fffrog/128/head 2025-08-26T19:37:18.7746911Z * [new branch] gh/fffrog/128/orig -> origin/gh/fffrog/128/orig 2025-08-26T19:37:18.7747396Z * [new branch] gh/fffrog/129/base -> origin/gh/fffrog/129/base 2025-08-26T19:37:18.7747874Z * [new branch] gh/fffrog/129/head -> origin/gh/fffrog/129/head 2025-08-26T19:37:18.7748401Z * [new branch] gh/fffrog/129/orig -> origin/gh/fffrog/129/orig 2025-08-26T19:37:18.7749052Z * [new branch] gh/fffrog/130/base -> origin/gh/fffrog/130/base 2025-08-26T19:37:18.7749547Z * [new branch] gh/fffrog/130/head -> origin/gh/fffrog/130/head 2025-08-26T19:37:18.7750066Z * [new branch] gh/fffrog/130/orig -> origin/gh/fffrog/130/orig 2025-08-26T19:37:18.7750597Z * [new branch] gh/fffrog/131/base -> origin/gh/fffrog/131/base 2025-08-26T19:37:18.7751076Z * [new branch] gh/fffrog/131/head -> origin/gh/fffrog/131/head 2025-08-26T19:37:18.7751555Z * [new branch] gh/fffrog/131/orig -> origin/gh/fffrog/131/orig 2025-08-26T19:37:18.7752046Z * [new branch] gh/fffrog/132/base -> origin/gh/fffrog/132/base 2025-08-26T19:37:18.7752530Z * [new branch] gh/fffrog/132/head -> origin/gh/fffrog/132/head 2025-08-26T19:37:18.7753008Z * [new branch] gh/fffrog/132/orig -> origin/gh/fffrog/132/orig 2025-08-26T19:37:18.7753493Z * [new branch] gh/fffrog/133/base -> origin/gh/fffrog/133/base 2025-08-26T19:37:18.7754023Z * [new branch] gh/fffrog/133/head -> origin/gh/fffrog/133/head 2025-08-26T19:37:18.7754496Z * [new branch] gh/fffrog/133/orig -> origin/gh/fffrog/133/orig 2025-08-26T19:37:18.7754976Z * [new branch] gh/fffrog/134/base -> origin/gh/fffrog/134/base 2025-08-26T19:37:18.7755456Z * [new branch] gh/fffrog/134/head -> origin/gh/fffrog/134/head 2025-08-26T19:37:18.7756029Z * [new branch] gh/fffrog/134/orig -> origin/gh/fffrog/134/orig 2025-08-26T19:37:18.7756519Z * [new branch] gh/fffrog/135/base -> origin/gh/fffrog/135/base 2025-08-26T19:37:18.7757120Z * [new branch] gh/fffrog/135/head -> origin/gh/fffrog/135/head 2025-08-26T19:37:18.7757593Z * [new branch] gh/fffrog/135/orig -> origin/gh/fffrog/135/orig 2025-08-26T19:37:18.7758071Z * [new branch] gh/fffrog/136/base -> origin/gh/fffrog/136/base 2025-08-26T19:37:18.7758553Z * [new branch] gh/fffrog/136/head -> origin/gh/fffrog/136/head 2025-08-26T19:37:18.7759043Z * [new branch] gh/fffrog/136/orig -> origin/gh/fffrog/136/orig 2025-08-26T19:37:18.7759521Z * [new branch] gh/fffrog/137/base -> origin/gh/fffrog/137/base 2025-08-26T19:37:18.7759999Z * [new branch] gh/fffrog/137/head -> origin/gh/fffrog/137/head 2025-08-26T19:37:18.7760493Z * [new branch] gh/fffrog/137/orig -> origin/gh/fffrog/137/orig 2025-08-26T19:37:18.7760973Z * [new branch] gh/fffrog/138/base -> origin/gh/fffrog/138/base 2025-08-26T19:37:18.7761507Z * [new branch] gh/fffrog/138/head -> origin/gh/fffrog/138/head 2025-08-26T19:37:18.7762024Z * [new branch] gh/fffrog/138/orig -> origin/gh/fffrog/138/orig 2025-08-26T19:37:18.7762504Z * [new branch] gh/fffrog/139/base -> origin/gh/fffrog/139/base 2025-08-26T19:37:18.7762979Z * [new branch] gh/fffrog/139/head -> origin/gh/fffrog/139/head 2025-08-26T19:37:18.7763463Z * [new branch] gh/fffrog/139/orig -> origin/gh/fffrog/139/orig 2025-08-26T19:37:18.7763940Z * [new branch] gh/fffrog/140/base -> origin/gh/fffrog/140/base 2025-08-26T19:37:18.7764414Z * [new branch] gh/fffrog/140/head -> origin/gh/fffrog/140/head 2025-08-26T19:37:18.7764890Z * [new branch] gh/fffrog/140/orig -> origin/gh/fffrog/140/orig 2025-08-26T19:37:18.8208050Z * [new branch] gh/fffrog/141/base -> origin/gh/fffrog/141/base 2025-08-26T19:37:18.8208642Z * [new branch] gh/fffrog/141/head -> origin/gh/fffrog/141/head 2025-08-26T19:37:18.8209385Z * [new branch] gh/fffrog/141/orig -> origin/gh/fffrog/141/orig 2025-08-26T19:37:18.8209917Z * [new branch] gh/fffrog/142/base -> origin/gh/fffrog/142/base 2025-08-26T19:37:18.8210492Z * [new branch] gh/fffrog/142/head -> origin/gh/fffrog/142/head 2025-08-26T19:37:18.8211021Z * [new branch] gh/fffrog/142/orig -> origin/gh/fffrog/142/orig 2025-08-26T19:37:18.8211579Z * [new branch] gh/fffrog/143/base -> origin/gh/fffrog/143/base 2025-08-26T19:37:18.8212155Z * [new branch] gh/fffrog/143/head -> origin/gh/fffrog/143/head 2025-08-26T19:37:18.8212708Z * [new branch] gh/fffrog/143/orig -> origin/gh/fffrog/143/orig 2025-08-26T19:37:18.8213232Z * [new branch] gh/fffrog/144/base -> origin/gh/fffrog/144/base 2025-08-26T19:37:18.8213760Z * [new branch] gh/fffrog/144/head -> origin/gh/fffrog/144/head 2025-08-26T19:37:18.8214323Z * [new branch] gh/fffrog/144/orig -> origin/gh/fffrog/144/orig 2025-08-26T19:37:18.8214885Z * [new branch] gh/gmagogsfm/1/base -> origin/gh/gmagogsfm/1/base 2025-08-26T19:37:18.8215477Z * [new branch] gh/gmagogsfm/1/head -> origin/gh/gmagogsfm/1/head 2025-08-26T19:37:18.8216023Z * [new branch] gh/gmagogsfm/1/orig -> origin/gh/gmagogsfm/1/orig 2025-08-26T19:37:18.8216617Z * [new branch] gh/gmagogsfm/2/base -> origin/gh/gmagogsfm/2/base 2025-08-26T19:37:18.8217147Z * [new branch] gh/gmagogsfm/2/head -> origin/gh/gmagogsfm/2/head 2025-08-26T19:37:18.8217724Z * [new branch] gh/gmagogsfm/2/orig -> origin/gh/gmagogsfm/2/orig 2025-08-26T19:37:18.8218254Z * [new branch] gh/gmagogsfm/3/base -> origin/gh/gmagogsfm/3/base 2025-08-26T19:37:18.8218951Z * [new branch] gh/gmagogsfm/3/head -> origin/gh/gmagogsfm/3/head 2025-08-26T19:37:18.8219492Z * [new branch] gh/gmagogsfm/3/orig -> origin/gh/gmagogsfm/3/orig 2025-08-26T19:37:18.8220095Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-08-26T19:37:18.8220639Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-08-26T19:37:18.8221224Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-08-26T19:37:18.8221765Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-08-26T19:37:18.8222344Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-08-26T19:37:18.8222891Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-08-26T19:37:18.8223563Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-08-26T19:37:18.8224104Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-08-26T19:37:18.8224655Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-08-26T19:37:18.8225236Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-08-26T19:37:18.8225780Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-08-26T19:37:18.8226368Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-08-26T19:37:18.8226900Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-08-26T19:37:18.8227490Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-08-26T19:37:18.8228030Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-08-26T19:37:18.8228608Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-08-26T19:37:18.8229248Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-08-26T19:37:18.8229798Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-08-26T19:37:18.8230298Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-08-26T19:37:18.8230786Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-08-26T19:37:18.8231281Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-08-26T19:37:18.8231776Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-08-26T19:37:18.8232269Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-08-26T19:37:18.8232764Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-08-26T19:37:18.8233258Z * [new branch] gh/guangyey/153/base -> origin/gh/guangyey/153/base 2025-08-26T19:37:18.8233759Z * [new branch] gh/guangyey/153/head -> origin/gh/guangyey/153/head 2025-08-26T19:37:18.8639932Z * [new branch] gh/guangyey/153/orig -> origin/gh/guangyey/153/orig 2025-08-26T19:37:18.8640502Z * [new branch] gh/guangyey/158/base -> origin/gh/guangyey/158/base 2025-08-26T19:37:18.8641013Z * [new branch] gh/guangyey/158/head -> origin/gh/guangyey/158/head 2025-08-26T19:37:18.8641509Z * [new branch] gh/guangyey/158/orig -> origin/gh/guangyey/158/orig 2025-08-26T19:37:18.8642021Z * [new branch] gh/guangyey/159/base -> origin/gh/guangyey/159/base 2025-08-26T19:37:18.8642519Z * [new branch] gh/guangyey/159/head -> origin/gh/guangyey/159/head 2025-08-26T19:37:18.8643192Z * [new branch] gh/guangyey/159/orig -> origin/gh/guangyey/159/orig 2025-08-26T19:37:18.8643709Z * [new branch] gh/guangyey/163/base -> origin/gh/guangyey/163/base 2025-08-26T19:37:18.8644205Z * [new branch] gh/guangyey/163/head -> origin/gh/guangyey/163/head 2025-08-26T19:37:18.8644706Z * [new branch] gh/guangyey/163/orig -> origin/gh/guangyey/163/orig 2025-08-26T19:37:18.8645204Z * [new branch] gh/guangyey/165/base -> origin/gh/guangyey/165/base 2025-08-26T19:37:18.8645697Z * [new branch] gh/guangyey/165/head -> origin/gh/guangyey/165/head 2025-08-26T19:37:18.8646196Z * [new branch] gh/guangyey/165/orig -> origin/gh/guangyey/165/orig 2025-08-26T19:37:18.8646692Z * [new branch] gh/guangyey/168/base -> origin/gh/guangyey/168/base 2025-08-26T19:37:18.8647184Z * [new branch] gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-08-26T19:37:18.8647685Z * [new branch] gh/guangyey/168/orig -> origin/gh/guangyey/168/orig 2025-08-26T19:37:18.8648177Z * [new branch] gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-08-26T19:37:18.8648683Z * [new branch] gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-08-26T19:37:18.8649173Z * [new branch] gh/guangyey/169/orig -> origin/gh/guangyey/169/orig 2025-08-26T19:37:18.8649672Z * [new branch] gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-08-26T19:37:18.8650171Z * [new branch] gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-08-26T19:37:18.8650663Z * [new branch] gh/guangyey/170/orig -> origin/gh/guangyey/170/orig 2025-08-26T19:37:18.8651160Z * [new branch] gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-08-26T19:37:18.8651651Z * [new branch] gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-08-26T19:37:18.8652149Z * [new branch] gh/guangyey/171/orig -> origin/gh/guangyey/171/orig 2025-08-26T19:37:18.8652737Z * [new branch] gh/guangyey/173/base -> origin/gh/guangyey/173/base 2025-08-26T19:37:18.8653242Z * [new branch] gh/guangyey/173/head -> origin/gh/guangyey/173/head 2025-08-26T19:37:18.8653749Z * [new branch] gh/guangyey/173/orig -> origin/gh/guangyey/173/orig 2025-08-26T19:37:18.8654253Z * [new branch] gh/guangyey/174/base -> origin/gh/guangyey/174/base 2025-08-26T19:37:18.8654752Z * [new branch] gh/guangyey/174/head -> origin/gh/guangyey/174/head 2025-08-26T19:37:18.8655243Z * [new branch] gh/guangyey/174/orig -> origin/gh/guangyey/174/orig 2025-08-26T19:37:18.8655744Z * [new branch] gh/guangyey/175/base -> origin/gh/guangyey/175/base 2025-08-26T19:37:18.8656247Z * [new branch] gh/guangyey/175/head -> origin/gh/guangyey/175/head 2025-08-26T19:37:18.8656747Z * [new branch] gh/guangyey/175/orig -> origin/gh/guangyey/175/orig 2025-08-26T19:37:18.8657245Z * [new branch] gh/guangyey/176/base -> origin/gh/guangyey/176/base 2025-08-26T19:37:18.8657734Z * [new branch] gh/guangyey/176/head -> origin/gh/guangyey/176/head 2025-08-26T19:37:18.8658235Z * [new branch] gh/guangyey/176/orig -> origin/gh/guangyey/176/orig 2025-08-26T19:37:18.8658733Z * [new branch] gh/guangyey/177/base -> origin/gh/guangyey/177/base 2025-08-26T19:37:18.8659219Z * [new branch] gh/guangyey/177/head -> origin/gh/guangyey/177/head 2025-08-26T19:37:18.8659715Z * [new branch] gh/guangyey/177/orig -> origin/gh/guangyey/177/orig 2025-08-26T19:37:18.8660207Z * [new branch] gh/guangyey/178/base -> origin/gh/guangyey/178/base 2025-08-26T19:37:18.8660802Z * [new branch] gh/guangyey/178/head -> origin/gh/guangyey/178/head 2025-08-26T19:37:18.8661301Z * [new branch] gh/guangyey/178/orig -> origin/gh/guangyey/178/orig 2025-08-26T19:37:18.8661799Z * [new branch] gh/guangyey/179/base -> origin/gh/guangyey/179/base 2025-08-26T19:37:18.8662298Z * [new branch] gh/guangyey/179/head -> origin/gh/guangyey/179/head 2025-08-26T19:37:18.8662787Z * [new branch] gh/guangyey/179/orig -> origin/gh/guangyey/179/orig 2025-08-26T19:37:18.8663289Z * [new branch] gh/guangyey/180/base -> origin/gh/guangyey/180/base 2025-08-26T19:37:18.9062869Z * [new branch] gh/guangyey/180/head -> origin/gh/guangyey/180/head 2025-08-26T19:37:18.9063490Z * [new branch] gh/guangyey/180/orig -> origin/gh/guangyey/180/orig 2025-08-26T19:37:18.9064005Z * [new branch] gh/guangyey/181/base -> origin/gh/guangyey/181/base 2025-08-26T19:37:18.9064532Z * [new branch] gh/guangyey/181/head -> origin/gh/guangyey/181/head 2025-08-26T19:37:18.9065039Z * [new branch] gh/guangyey/181/orig -> origin/gh/guangyey/181/orig 2025-08-26T19:37:18.9065540Z * [new branch] gh/guangyey/182/base -> origin/gh/guangyey/182/base 2025-08-26T19:37:18.9066047Z * [new branch] gh/guangyey/182/head -> origin/gh/guangyey/182/head 2025-08-26T19:37:18.9066542Z * [new branch] gh/guangyey/182/orig -> origin/gh/guangyey/182/orig 2025-08-26T19:37:18.9067036Z * [new branch] gh/guangyey/183/base -> origin/gh/guangyey/183/base 2025-08-26T19:37:18.9067524Z * [new branch] gh/guangyey/183/head -> origin/gh/guangyey/183/head 2025-08-26T19:37:18.9068025Z * [new branch] gh/guangyey/183/orig -> origin/gh/guangyey/183/orig 2025-08-26T19:37:18.9068519Z * [new branch] gh/guangyey/184/base -> origin/gh/guangyey/184/base 2025-08-26T19:37:18.9069261Z * [new branch] gh/guangyey/184/head -> origin/gh/guangyey/184/head 2025-08-26T19:37:18.9069767Z * [new branch] gh/guangyey/184/orig -> origin/gh/guangyey/184/orig 2025-08-26T19:37:18.9070266Z * [new branch] gh/guangyey/185/base -> origin/gh/guangyey/185/base 2025-08-26T19:37:18.9070765Z * [new branch] gh/guangyey/185/head -> origin/gh/guangyey/185/head 2025-08-26T19:37:18.9071263Z * [new branch] gh/guangyey/185/orig -> origin/gh/guangyey/185/orig 2025-08-26T19:37:18.9071775Z * [new branch] gh/guangyey/186/base -> origin/gh/guangyey/186/base 2025-08-26T19:37:18.9072269Z * [new branch] gh/guangyey/186/head -> origin/gh/guangyey/186/head 2025-08-26T19:37:18.9072753Z * [new branch] gh/guangyey/186/orig -> origin/gh/guangyey/186/orig 2025-08-26T19:37:18.9073267Z * [new branch] gh/guangyey/187/base -> origin/gh/guangyey/187/base 2025-08-26T19:37:18.9073759Z * [new branch] gh/guangyey/187/head -> origin/gh/guangyey/187/head 2025-08-26T19:37:18.9074264Z * [new branch] gh/guangyey/187/orig -> origin/gh/guangyey/187/orig 2025-08-26T19:37:18.9074763Z * [new branch] gh/guangyey/188/base -> origin/gh/guangyey/188/base 2025-08-26T19:37:18.9075254Z * [new branch] gh/guangyey/188/head -> origin/gh/guangyey/188/head 2025-08-26T19:37:18.9075757Z * [new branch] gh/guangyey/188/orig -> origin/gh/guangyey/188/orig 2025-08-26T19:37:18.9076251Z * [new branch] gh/guangyey/189/base -> origin/gh/guangyey/189/base 2025-08-26T19:37:18.9076744Z * [new branch] gh/guangyey/189/head -> origin/gh/guangyey/189/head 2025-08-26T19:37:18.9077239Z * [new branch] gh/guangyey/189/orig -> origin/gh/guangyey/189/orig 2025-08-26T19:37:18.9077834Z * [new branch] gh/guangyey/190/base -> origin/gh/guangyey/190/base 2025-08-26T19:37:18.9078346Z * [new branch] gh/guangyey/190/head -> origin/gh/guangyey/190/head 2025-08-26T19:37:18.9078842Z * [new branch] gh/guangyey/190/orig -> origin/gh/guangyey/190/orig 2025-08-26T19:37:18.9079344Z * [new branch] gh/guangyey/191/base -> origin/gh/guangyey/191/base 2025-08-26T19:37:18.9079838Z * [new branch] gh/guangyey/191/head -> origin/gh/guangyey/191/head 2025-08-26T19:37:18.9080351Z * [new branch] gh/guangyey/191/orig -> origin/gh/guangyey/191/orig 2025-08-26T19:37:18.9080851Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-08-26T19:37:18.9081338Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-08-26T19:37:18.9081842Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-08-26T19:37:18.9082335Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-08-26T19:37:18.9082834Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-08-26T19:37:18.9083323Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-08-26T19:37:18.9083864Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-08-26T19:37:18.9084456Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-08-26T19:37:18.9085039Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-08-26T19:37:18.9085622Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-08-26T19:37:18.9086201Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-08-26T19:37:18.9480897Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-08-26T19:37:18.9481689Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-08-26T19:37:18.9482269Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-08-26T19:37:18.9482860Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-08-26T19:37:18.9483449Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-08-26T19:37:18.9484023Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-08-26T19:37:18.9484614Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-08-26T19:37:18.9485241Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-08-26T19:37:18.9485866Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-08-26T19:37:18.9486449Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-08-26T19:37:18.9487022Z * [new branch] gh/guilhermeleobas/163/base -> origin/gh/guilhermeleobas/163/base 2025-08-26T19:37:18.9487609Z * [new branch] gh/guilhermeleobas/163/head -> origin/gh/guilhermeleobas/163/head 2025-08-26T19:37:18.9488194Z * [new branch] gh/guilhermeleobas/163/orig -> origin/gh/guilhermeleobas/163/orig 2025-08-26T19:37:18.9488774Z * [new branch] gh/guilhermeleobas/164/base -> origin/gh/guilhermeleobas/164/base 2025-08-26T19:37:18.9489357Z * [new branch] gh/guilhermeleobas/164/head -> origin/gh/guilhermeleobas/164/head 2025-08-26T19:37:18.9489932Z * [new branch] gh/guilhermeleobas/164/orig -> origin/gh/guilhermeleobas/164/orig 2025-08-26T19:37:18.9491232Z * [new branch] gh/guilhermeleobas/165/base -> origin/gh/guilhermeleobas/165/base 2025-08-26T19:37:18.9491870Z * [new branch] gh/guilhermeleobas/165/head -> origin/gh/guilhermeleobas/165/head 2025-08-26T19:37:18.9492453Z * [new branch] gh/guilhermeleobas/165/orig -> origin/gh/guilhermeleobas/165/orig 2025-08-26T19:37:18.9493047Z * [new branch] gh/guilhermeleobas/166/base -> origin/gh/guilhermeleobas/166/base 2025-08-26T19:37:18.9493624Z * [new branch] gh/guilhermeleobas/166/head -> origin/gh/guilhermeleobas/166/head 2025-08-26T19:37:18.9494209Z * [new branch] gh/guilhermeleobas/166/orig -> origin/gh/guilhermeleobas/166/orig 2025-08-26T19:37:18.9494792Z * [new branch] gh/guilhermeleobas/167/base -> origin/gh/guilhermeleobas/167/base 2025-08-26T19:37:18.9495367Z * [new branch] gh/guilhermeleobas/167/head -> origin/gh/guilhermeleobas/167/head 2025-08-26T19:37:18.9495953Z * [new branch] gh/guilhermeleobas/167/orig -> origin/gh/guilhermeleobas/167/orig 2025-08-26T19:37:18.9496529Z * [new branch] gh/guilhermeleobas/168/base -> origin/gh/guilhermeleobas/168/base 2025-08-26T19:37:18.9497189Z * [new branch] gh/guilhermeleobas/168/head -> origin/gh/guilhermeleobas/168/head 2025-08-26T19:37:18.9497766Z * [new branch] gh/guilhermeleobas/168/orig -> origin/gh/guilhermeleobas/168/orig 2025-08-26T19:37:18.9498352Z * [new branch] gh/guilhermeleobas/169/base -> origin/gh/guilhermeleobas/169/base 2025-08-26T19:37:18.9498941Z * [new branch] gh/guilhermeleobas/169/head -> origin/gh/guilhermeleobas/169/head 2025-08-26T19:37:18.9499512Z * [new branch] gh/guilhermeleobas/169/orig -> origin/gh/guilhermeleobas/169/orig 2025-08-26T19:37:18.9500096Z * [new branch] gh/guilhermeleobas/170/base -> origin/gh/guilhermeleobas/170/base 2025-08-26T19:37:18.9500673Z * [new branch] gh/guilhermeleobas/170/head -> origin/gh/guilhermeleobas/170/head 2025-08-26T19:37:18.9501269Z * [new branch] gh/guilhermeleobas/170/orig -> origin/gh/guilhermeleobas/170/orig 2025-08-26T19:37:18.9501951Z * [new branch] gh/guilhermeleobas/171/base -> origin/gh/guilhermeleobas/171/base 2025-08-26T19:37:18.9502571Z * [new branch] gh/guilhermeleobas/171/head -> origin/gh/guilhermeleobas/171/head 2025-08-26T19:37:18.9503196Z * [new branch] gh/guilhermeleobas/171/orig -> origin/gh/guilhermeleobas/171/orig 2025-08-26T19:37:18.9503844Z * [new branch] gh/guilhermeleobas/173/base -> origin/gh/guilhermeleobas/173/base 2025-08-26T19:37:18.9504438Z * [new branch] gh/guilhermeleobas/173/head -> origin/gh/guilhermeleobas/173/head 2025-08-26T19:37:18.9505029Z * [new branch] gh/guilhermeleobas/173/orig -> origin/gh/guilhermeleobas/173/orig 2025-08-26T19:37:18.9505611Z * [new branch] gh/guilhermeleobas/183/base -> origin/gh/guilhermeleobas/183/base 2025-08-26T19:37:18.9506213Z * [new branch] gh/guilhermeleobas/183/head -> origin/gh/guilhermeleobas/183/head 2025-08-26T19:37:18.9506796Z * [new branch] gh/guilhermeleobas/183/orig -> origin/gh/guilhermeleobas/183/orig 2025-08-26T19:37:18.9875472Z * [new branch] gh/guilhermeleobas/184/base -> origin/gh/guilhermeleobas/184/base 2025-08-26T19:37:18.9876088Z * [new branch] gh/guilhermeleobas/184/head -> origin/gh/guilhermeleobas/184/head 2025-08-26T19:37:18.9876691Z * [new branch] gh/guilhermeleobas/184/orig -> origin/gh/guilhermeleobas/184/orig 2025-08-26T19:37:18.9877272Z * [new branch] gh/guilhermeleobas/185/base -> origin/gh/guilhermeleobas/185/base 2025-08-26T19:37:18.9877853Z * [new branch] gh/guilhermeleobas/185/head -> origin/gh/guilhermeleobas/185/head 2025-08-26T19:37:18.9878431Z * [new branch] gh/guilhermeleobas/185/orig -> origin/gh/guilhermeleobas/185/orig 2025-08-26T19:37:18.9879159Z * [new branch] gh/guilhermeleobas/192/base -> origin/gh/guilhermeleobas/192/base 2025-08-26T19:37:18.9879740Z * [new branch] gh/guilhermeleobas/192/head -> origin/gh/guilhermeleobas/192/head 2025-08-26T19:37:18.9880330Z * [new branch] gh/guilhermeleobas/192/orig -> origin/gh/guilhermeleobas/192/orig 2025-08-26T19:37:18.9880917Z * [new branch] gh/guilhermeleobas/193/base -> origin/gh/guilhermeleobas/193/base 2025-08-26T19:37:18.9881489Z * [new branch] gh/guilhermeleobas/193/head -> origin/gh/guilhermeleobas/193/head 2025-08-26T19:37:18.9882074Z * [new branch] gh/guilhermeleobas/193/orig -> origin/gh/guilhermeleobas/193/orig 2025-08-26T19:37:18.9882649Z * [new branch] gh/guilhermeleobas/194/base -> origin/gh/guilhermeleobas/194/base 2025-08-26T19:37:18.9883232Z * [new branch] gh/guilhermeleobas/194/head -> origin/gh/guilhermeleobas/194/head 2025-08-26T19:37:18.9883823Z * [new branch] gh/guilhermeleobas/194/orig -> origin/gh/guilhermeleobas/194/orig 2025-08-26T19:37:18.9884403Z * [new branch] gh/guilhermeleobas/203/base -> origin/gh/guilhermeleobas/203/base 2025-08-26T19:37:18.9884988Z * [new branch] gh/guilhermeleobas/203/head -> origin/gh/guilhermeleobas/203/head 2025-08-26T19:37:18.9885558Z * [new branch] gh/guilhermeleobas/203/orig -> origin/gh/guilhermeleobas/203/orig 2025-08-26T19:37:18.9886133Z * [new branch] gh/guilhermeleobas/204/base -> origin/gh/guilhermeleobas/204/base 2025-08-26T19:37:18.9886715Z * [new branch] gh/guilhermeleobas/204/head -> origin/gh/guilhermeleobas/204/head 2025-08-26T19:37:18.9887292Z * [new branch] gh/guilhermeleobas/204/orig -> origin/gh/guilhermeleobas/204/orig 2025-08-26T19:37:18.9887877Z * [new branch] gh/guilhermeleobas/205/base -> origin/gh/guilhermeleobas/205/base 2025-08-26T19:37:18.9888459Z * [new branch] gh/guilhermeleobas/205/head -> origin/gh/guilhermeleobas/205/head 2025-08-26T19:37:18.9889658Z * [new branch] gh/guilhermeleobas/205/orig -> origin/gh/guilhermeleobas/205/orig 2025-08-26T19:37:18.9890254Z * [new branch] gh/guilhermeleobas/206/base -> origin/gh/guilhermeleobas/206/base 2025-08-26T19:37:18.9890829Z * [new branch] gh/guilhermeleobas/206/head -> origin/gh/guilhermeleobas/206/head 2025-08-26T19:37:18.9891422Z * [new branch] gh/guilhermeleobas/206/orig -> origin/gh/guilhermeleobas/206/orig 2025-08-26T19:37:18.9892002Z * [new branch] gh/guilhermeleobas/209/base -> origin/gh/guilhermeleobas/209/base 2025-08-26T19:37:18.9892592Z * [new branch] gh/guilhermeleobas/209/head -> origin/gh/guilhermeleobas/209/head 2025-08-26T19:37:18.9893183Z * [new branch] gh/guilhermeleobas/209/orig -> origin/gh/guilhermeleobas/209/orig 2025-08-26T19:37:18.9893763Z * [new branch] gh/guilhermeleobas/210/base -> origin/gh/guilhermeleobas/210/base 2025-08-26T19:37:18.9894361Z * [new branch] gh/guilhermeleobas/210/head -> origin/gh/guilhermeleobas/210/head 2025-08-26T19:37:18.9894946Z * [new branch] gh/guilhermeleobas/210/orig -> origin/gh/guilhermeleobas/210/orig 2025-08-26T19:37:18.9895536Z * [new branch] gh/guilhermeleobas/211/base -> origin/gh/guilhermeleobas/211/base 2025-08-26T19:37:18.9896227Z * [new branch] gh/guilhermeleobas/211/head -> origin/gh/guilhermeleobas/211/head 2025-08-26T19:37:18.9896811Z * [new branch] gh/guilhermeleobas/211/orig -> origin/gh/guilhermeleobas/211/orig 2025-08-26T19:37:18.9897398Z * [new branch] gh/guilhermeleobas/213/base -> origin/gh/guilhermeleobas/213/base 2025-08-26T19:37:18.9897980Z * [new branch] gh/guilhermeleobas/213/head -> origin/gh/guilhermeleobas/213/head 2025-08-26T19:37:18.9898567Z * [new branch] gh/guilhermeleobas/213/orig -> origin/gh/guilhermeleobas/213/orig 2025-08-26T19:37:18.9899236Z * [new branch] gh/guilhermeleobas/214/base -> origin/gh/guilhermeleobas/214/base 2025-08-26T19:37:18.9899821Z * [new branch] gh/guilhermeleobas/214/head -> origin/gh/guilhermeleobas/214/head 2025-08-26T19:37:18.9900405Z * [new branch] gh/guilhermeleobas/214/orig -> origin/gh/guilhermeleobas/214/orig 2025-08-26T19:37:18.9900976Z * [new branch] gh/guilhermeleobas/215/base -> origin/gh/guilhermeleobas/215/base 2025-08-26T19:37:19.0273535Z * [new branch] gh/guilhermeleobas/215/head -> origin/gh/guilhermeleobas/215/head 2025-08-26T19:37:19.0274158Z * [new branch] gh/guilhermeleobas/215/orig -> origin/gh/guilhermeleobas/215/orig 2025-08-26T19:37:19.0274746Z * [new branch] gh/guilhermeleobas/216/base -> origin/gh/guilhermeleobas/216/base 2025-08-26T19:37:19.0275336Z * [new branch] gh/guilhermeleobas/216/head -> origin/gh/guilhermeleobas/216/head 2025-08-26T19:37:19.0275926Z * [new branch] gh/guilhermeleobas/216/orig -> origin/gh/guilhermeleobas/216/orig 2025-08-26T19:37:19.0276519Z * [new branch] gh/guilhermeleobas/217/base -> origin/gh/guilhermeleobas/217/base 2025-08-26T19:37:19.0277112Z * [new branch] gh/guilhermeleobas/217/head -> origin/gh/guilhermeleobas/217/head 2025-08-26T19:37:19.0277691Z * [new branch] gh/guilhermeleobas/217/orig -> origin/gh/guilhermeleobas/217/orig 2025-08-26T19:37:19.0278275Z * [new branch] gh/guilhermeleobas/218/base -> origin/gh/guilhermeleobas/218/base 2025-08-26T19:37:19.0278858Z * [new branch] gh/guilhermeleobas/218/head -> origin/gh/guilhermeleobas/218/head 2025-08-26T19:37:19.0279436Z * [new branch] gh/guilhermeleobas/218/orig -> origin/gh/guilhermeleobas/218/orig 2025-08-26T19:37:19.0280006Z * [new branch] gh/guilhermeleobas/219/base -> origin/gh/guilhermeleobas/219/base 2025-08-26T19:37:19.0280596Z * [new branch] gh/guilhermeleobas/219/head -> origin/gh/guilhermeleobas/219/head 2025-08-26T19:37:19.0281601Z * [new branch] gh/guilhermeleobas/219/orig -> origin/gh/guilhermeleobas/219/orig 2025-08-26T19:37:19.0282184Z * [new branch] gh/guilhermeleobas/220/base -> origin/gh/guilhermeleobas/220/base 2025-08-26T19:37:19.0282767Z * [new branch] gh/guilhermeleobas/220/head -> origin/gh/guilhermeleobas/220/head 2025-08-26T19:37:19.0283368Z * [new branch] gh/guilhermeleobas/220/orig -> origin/gh/guilhermeleobas/220/orig 2025-08-26T19:37:19.0283942Z * [new branch] gh/guilhermeleobas/221/base -> origin/gh/guilhermeleobas/221/base 2025-08-26T19:37:19.0284525Z * [new branch] gh/guilhermeleobas/221/head -> origin/gh/guilhermeleobas/221/head 2025-08-26T19:37:19.0285101Z * [new branch] gh/guilhermeleobas/221/orig -> origin/gh/guilhermeleobas/221/orig 2025-08-26T19:37:19.0285692Z * [new branch] gh/guilhermeleobas/222/base -> origin/gh/guilhermeleobas/222/base 2025-08-26T19:37:19.0286274Z * [new branch] gh/guilhermeleobas/222/head -> origin/gh/guilhermeleobas/222/head 2025-08-26T19:37:19.0286849Z * [new branch] gh/guilhermeleobas/222/orig -> origin/gh/guilhermeleobas/222/orig 2025-08-26T19:37:19.0287434Z * [new branch] gh/guilhermeleobas/223/base -> origin/gh/guilhermeleobas/223/base 2025-08-26T19:37:19.0288013Z * [new branch] gh/guilhermeleobas/223/head -> origin/gh/guilhermeleobas/223/head 2025-08-26T19:37:19.0288603Z * [new branch] gh/guilhermeleobas/223/orig -> origin/gh/guilhermeleobas/223/orig 2025-08-26T19:37:19.0289184Z * [new branch] gh/guilhermeleobas/224/base -> origin/gh/guilhermeleobas/224/base 2025-08-26T19:37:19.0289762Z * [new branch] gh/guilhermeleobas/224/head -> origin/gh/guilhermeleobas/224/head 2025-08-26T19:37:19.0290339Z * [new branch] gh/guilhermeleobas/224/orig -> origin/gh/guilhermeleobas/224/orig 2025-08-26T19:37:19.0291005Z * [new branch] gh/guilhermeleobas/225/base -> origin/gh/guilhermeleobas/225/base 2025-08-26T19:37:19.0291591Z * [new branch] gh/guilhermeleobas/225/head -> origin/gh/guilhermeleobas/225/head 2025-08-26T19:37:19.0292175Z * [new branch] gh/guilhermeleobas/225/orig -> origin/gh/guilhermeleobas/225/orig 2025-08-26T19:37:19.0292752Z * [new branch] gh/guilhermeleobas/226/base -> origin/gh/guilhermeleobas/226/base 2025-08-26T19:37:19.0293341Z * [new branch] gh/guilhermeleobas/226/head -> origin/gh/guilhermeleobas/226/head 2025-08-26T19:37:19.0293925Z * [new branch] gh/guilhermeleobas/226/orig -> origin/gh/guilhermeleobas/226/orig 2025-08-26T19:37:19.0294513Z * [new branch] gh/guilhermeleobas/227/base -> origin/gh/guilhermeleobas/227/base 2025-08-26T19:37:19.0295090Z * [new branch] gh/guilhermeleobas/227/head -> origin/gh/guilhermeleobas/227/head 2025-08-26T19:37:19.0295675Z * [new branch] gh/guilhermeleobas/227/orig -> origin/gh/guilhermeleobas/227/orig 2025-08-26T19:37:19.0296263Z * [new branch] gh/guilhermeleobas/228/base -> origin/gh/guilhermeleobas/228/base 2025-08-26T19:37:19.0296837Z * [new branch] gh/guilhermeleobas/228/head -> origin/gh/guilhermeleobas/228/head 2025-08-26T19:37:19.0297431Z * [new branch] gh/guilhermeleobas/228/orig -> origin/gh/guilhermeleobas/228/orig 2025-08-26T19:37:19.0298009Z * [new branch] gh/guilhermeleobas/229/base -> origin/gh/guilhermeleobas/229/base 2025-08-26T19:37:19.0298595Z * [new branch] gh/guilhermeleobas/229/head -> origin/gh/guilhermeleobas/229/head 2025-08-26T19:37:19.0701223Z * [new branch] gh/guilhermeleobas/229/orig -> origin/gh/guilhermeleobas/229/orig 2025-08-26T19:37:19.0701838Z * [new branch] gh/guilhermeleobas/230/base -> origin/gh/guilhermeleobas/230/base 2025-08-26T19:37:19.0702423Z * [new branch] gh/guilhermeleobas/230/head -> origin/gh/guilhermeleobas/230/head 2025-08-26T19:37:19.0703402Z * [new branch] gh/guilhermeleobas/230/orig -> origin/gh/guilhermeleobas/230/orig 2025-08-26T19:37:19.0704045Z * [new branch] gh/guilhermeleobas/231/base -> origin/gh/guilhermeleobas/231/base 2025-08-26T19:37:19.0704630Z * [new branch] gh/guilhermeleobas/231/head -> origin/gh/guilhermeleobas/231/head 2025-08-26T19:37:19.0705206Z * [new branch] gh/guilhermeleobas/231/orig -> origin/gh/guilhermeleobas/231/orig 2025-08-26T19:37:19.0705790Z * [new branch] gh/guilhermeleobas/232/base -> origin/gh/guilhermeleobas/232/base 2025-08-26T19:37:19.0706373Z * [new branch] gh/guilhermeleobas/232/head -> origin/gh/guilhermeleobas/232/head 2025-08-26T19:37:19.0706955Z * [new branch] gh/guilhermeleobas/232/orig -> origin/gh/guilhermeleobas/232/orig 2025-08-26T19:37:19.0707544Z * [new branch] gh/guilhermeleobas/233/base -> origin/gh/guilhermeleobas/233/base 2025-08-26T19:37:19.0708121Z * [new branch] gh/guilhermeleobas/233/head -> origin/gh/guilhermeleobas/233/head 2025-08-26T19:37:19.0708703Z * [new branch] gh/guilhermeleobas/233/orig -> origin/gh/guilhermeleobas/233/orig 2025-08-26T19:37:19.0709282Z * [new branch] gh/guilhermeleobas/234/base -> origin/gh/guilhermeleobas/234/base 2025-08-26T19:37:19.0709859Z * [new branch] gh/guilhermeleobas/234/head -> origin/gh/guilhermeleobas/234/head 2025-08-26T19:37:19.0710438Z * [new branch] gh/guilhermeleobas/234/orig -> origin/gh/guilhermeleobas/234/orig 2025-08-26T19:37:19.0711012Z * [new branch] gh/guilhermeleobas/235/base -> origin/gh/guilhermeleobas/235/base 2025-08-26T19:37:19.0711592Z * [new branch] gh/guilhermeleobas/235/head -> origin/gh/guilhermeleobas/235/head 2025-08-26T19:37:19.0712273Z * [new branch] gh/guilhermeleobas/235/orig -> origin/gh/guilhermeleobas/235/orig 2025-08-26T19:37:19.0712851Z * [new branch] gh/guilhermeleobas/236/base -> origin/gh/guilhermeleobas/236/base 2025-08-26T19:37:19.0713442Z * [new branch] gh/guilhermeleobas/236/head -> origin/gh/guilhermeleobas/236/head 2025-08-26T19:37:19.0714016Z * [new branch] gh/guilhermeleobas/236/orig -> origin/gh/guilhermeleobas/236/orig 2025-08-26T19:37:19.0714602Z * [new branch] gh/guilhermeleobas/237/base -> origin/gh/guilhermeleobas/237/base 2025-08-26T19:37:19.0715187Z * [new branch] gh/guilhermeleobas/237/head -> origin/gh/guilhermeleobas/237/head 2025-08-26T19:37:19.0715758Z * [new branch] gh/guilhermeleobas/237/orig -> origin/gh/guilhermeleobas/237/orig 2025-08-26T19:37:19.0716339Z * [new branch] gh/guilhermeleobas/238/base -> origin/gh/guilhermeleobas/238/base 2025-08-26T19:37:19.0716915Z * [new branch] gh/guilhermeleobas/238/head -> origin/gh/guilhermeleobas/238/head 2025-08-26T19:37:19.0717496Z * [new branch] gh/guilhermeleobas/238/orig -> origin/gh/guilhermeleobas/238/orig 2025-08-26T19:37:19.0718081Z * [new branch] gh/guilhermeleobas/239/base -> origin/gh/guilhermeleobas/239/base 2025-08-26T19:37:19.0718657Z * [new branch] gh/guilhermeleobas/239/head -> origin/gh/guilhermeleobas/239/head 2025-08-26T19:37:19.0719243Z * [new branch] gh/guilhermeleobas/239/orig -> origin/gh/guilhermeleobas/239/orig 2025-08-26T19:37:19.0719822Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-08-26T19:37:19.0720394Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-08-26T19:37:19.0720971Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-08-26T19:37:19.0721528Z * [new branch] gh/henrylhtsang/103/base -> origin/gh/henrylhtsang/103/base 2025-08-26T19:37:19.0722083Z * [new branch] gh/henrylhtsang/103/head -> origin/gh/henrylhtsang/103/head 2025-08-26T19:37:19.0722909Z * [new branch] gh/henrylhtsang/103/orig -> origin/gh/henrylhtsang/103/orig 2025-08-26T19:37:19.0723467Z * [new branch] gh/henrylhtsang/132/base -> origin/gh/henrylhtsang/132/base 2025-08-26T19:37:19.0724019Z * [new branch] gh/henrylhtsang/132/head -> origin/gh/henrylhtsang/132/head 2025-08-26T19:37:19.0724566Z * [new branch] gh/henrylhtsang/132/orig -> origin/gh/henrylhtsang/132/orig 2025-08-26T19:37:19.0725116Z * [new branch] gh/henrylhtsang/133/base -> origin/gh/henrylhtsang/133/base 2025-08-26T19:37:19.0725662Z * [new branch] gh/henrylhtsang/133/head -> origin/gh/henrylhtsang/133/head 2025-08-26T19:37:19.0726207Z * [new branch] gh/henrylhtsang/133/orig -> origin/gh/henrylhtsang/133/orig 2025-08-26T19:37:19.0726756Z * [new branch] gh/henrylhtsang/134/base -> origin/gh/henrylhtsang/134/base 2025-08-26T19:37:19.1132396Z * [new branch] gh/henrylhtsang/134/head -> origin/gh/henrylhtsang/134/head 2025-08-26T19:37:19.1133041Z * [new branch] gh/henrylhtsang/134/orig -> origin/gh/henrylhtsang/134/orig 2025-08-26T19:37:19.1133620Z * [new branch] gh/henrylhtsang/135/base -> origin/gh/henrylhtsang/135/base 2025-08-26T19:37:19.1134166Z * [new branch] gh/henrylhtsang/135/head -> origin/gh/henrylhtsang/135/head 2025-08-26T19:37:19.1134710Z * [new branch] gh/henrylhtsang/135/orig -> origin/gh/henrylhtsang/135/orig 2025-08-26T19:37:19.1135243Z * [new branch] gh/henrylhtsang/136/base -> origin/gh/henrylhtsang/136/base 2025-08-26T19:37:19.1135787Z * [new branch] gh/henrylhtsang/136/head -> origin/gh/henrylhtsang/136/head 2025-08-26T19:37:19.1136328Z * [new branch] gh/henrylhtsang/136/orig -> origin/gh/henrylhtsang/136/orig 2025-08-26T19:37:19.1136984Z * [new branch] gh/henrylhtsang/137/base -> origin/gh/henrylhtsang/137/base 2025-08-26T19:37:19.1137537Z * [new branch] gh/henrylhtsang/137/head -> origin/gh/henrylhtsang/137/head 2025-08-26T19:37:19.1138077Z * [new branch] gh/henrylhtsang/137/orig -> origin/gh/henrylhtsang/137/orig 2025-08-26T19:37:19.1138665Z * [new branch] gh/henrylhtsang/138/base -> origin/gh/henrylhtsang/138/base 2025-08-26T19:37:19.1139236Z * [new branch] gh/henrylhtsang/138/head -> origin/gh/henrylhtsang/138/head 2025-08-26T19:37:19.1139813Z * [new branch] gh/henrylhtsang/138/orig -> origin/gh/henrylhtsang/138/orig 2025-08-26T19:37:19.1140368Z * [new branch] gh/henrylhtsang/139/base -> origin/gh/henrylhtsang/139/base 2025-08-26T19:37:19.1140902Z * [new branch] gh/henrylhtsang/139/head -> origin/gh/henrylhtsang/139/head 2025-08-26T19:37:19.1141445Z * [new branch] gh/henrylhtsang/139/orig -> origin/gh/henrylhtsang/139/orig 2025-08-26T19:37:19.1141992Z * [new branch] gh/henrylhtsang/140/base -> origin/gh/henrylhtsang/140/base 2025-08-26T19:37:19.1142539Z * [new branch] gh/henrylhtsang/140/head -> origin/gh/henrylhtsang/140/head 2025-08-26T19:37:19.1143085Z * [new branch] gh/henrylhtsang/140/orig -> origin/gh/henrylhtsang/140/orig 2025-08-26T19:37:19.1143725Z * [new branch] gh/henrylhtsang/141/base -> origin/gh/henrylhtsang/141/base 2025-08-26T19:37:19.1144268Z * [new branch] gh/henrylhtsang/141/head -> origin/gh/henrylhtsang/141/head 2025-08-26T19:37:19.1144806Z * [new branch] gh/henrylhtsang/141/orig -> origin/gh/henrylhtsang/141/orig 2025-08-26T19:37:19.1145355Z * [new branch] gh/henrylhtsang/142/base -> origin/gh/henrylhtsang/142/base 2025-08-26T19:37:19.1145910Z * [new branch] gh/henrylhtsang/142/head -> origin/gh/henrylhtsang/142/head 2025-08-26T19:37:19.1146774Z * [new branch] gh/henrylhtsang/142/orig -> origin/gh/henrylhtsang/142/orig 2025-08-26T19:37:19.1147334Z * [new branch] gh/henrylhtsang/143/base -> origin/gh/henrylhtsang/143/base 2025-08-26T19:37:19.1147875Z * [new branch] gh/henrylhtsang/143/head -> origin/gh/henrylhtsang/143/head 2025-08-26T19:37:19.1148420Z * [new branch] gh/henrylhtsang/143/orig -> origin/gh/henrylhtsang/143/orig 2025-08-26T19:37:19.1148961Z * [new branch] gh/henrylhtsang/144/base -> origin/gh/henrylhtsang/144/base 2025-08-26T19:37:19.1149509Z * [new branch] gh/henrylhtsang/144/head -> origin/gh/henrylhtsang/144/head 2025-08-26T19:37:19.1150144Z * [new branch] gh/henrylhtsang/144/orig -> origin/gh/henrylhtsang/144/orig 2025-08-26T19:37:19.1150718Z * [new branch] gh/henrylhtsang/145/base -> origin/gh/henrylhtsang/145/base 2025-08-26T19:37:19.1151278Z * [new branch] gh/henrylhtsang/145/head -> origin/gh/henrylhtsang/145/head 2025-08-26T19:37:19.1151822Z * [new branch] gh/henrylhtsang/145/orig -> origin/gh/henrylhtsang/145/orig 2025-08-26T19:37:19.1152366Z * [new branch] gh/henrylhtsang/146/base -> origin/gh/henrylhtsang/146/base 2025-08-26T19:37:19.1152910Z * [new branch] gh/henrylhtsang/146/head -> origin/gh/henrylhtsang/146/head 2025-08-26T19:37:19.1153446Z * [new branch] gh/henrylhtsang/146/orig -> origin/gh/henrylhtsang/146/orig 2025-08-26T19:37:19.1153989Z * [new branch] gh/henrylhtsang/147/base -> origin/gh/henrylhtsang/147/base 2025-08-26T19:37:19.1154522Z * [new branch] gh/henrylhtsang/147/head -> origin/gh/henrylhtsang/147/head 2025-08-26T19:37:19.1155061Z * [new branch] gh/henrylhtsang/147/orig -> origin/gh/henrylhtsang/147/orig 2025-08-26T19:37:19.1155694Z * [new branch] gh/henrylhtsang/148/base -> origin/gh/henrylhtsang/148/base 2025-08-26T19:37:19.1156242Z * [new branch] gh/henrylhtsang/148/head -> origin/gh/henrylhtsang/148/head 2025-08-26T19:37:19.1156792Z * [new branch] gh/henrylhtsang/148/orig -> origin/gh/henrylhtsang/148/orig 2025-08-26T19:37:19.1592811Z * [new branch] gh/henrylhtsang/149/base -> origin/gh/henrylhtsang/149/base 2025-08-26T19:37:19.1593374Z * [new branch] gh/henrylhtsang/149/head -> origin/gh/henrylhtsang/149/head 2025-08-26T19:37:19.1593920Z * [new branch] gh/henrylhtsang/149/orig -> origin/gh/henrylhtsang/149/orig 2025-08-26T19:37:19.1594436Z * [new branch] gh/huydhn/1/next -> origin/gh/huydhn/1/next 2025-08-26T19:37:19.1594962Z * [new branch] gh/huydhn/2/next -> origin/gh/huydhn/2/next 2025-08-26T19:37:19.1595464Z * [new branch] gh/huydhn/3/next -> origin/gh/huydhn/3/next 2025-08-26T19:37:19.1596015Z * [new branch] gh/huydhn/4/next -> origin/gh/huydhn/4/next 2025-08-26T19:37:19.1596526Z * [new branch] gh/huydhn/5/next -> origin/gh/huydhn/5/next 2025-08-26T19:37:19.1597018Z * [new branch] gh/huydhn/6/head -> origin/gh/huydhn/6/head 2025-08-26T19:37:19.1597524Z * [new branch] gh/huydhn/6/next -> origin/gh/huydhn/6/next 2025-08-26T19:37:19.1598049Z * [new branch] gh/huydhn/6/orig -> origin/gh/huydhn/6/orig 2025-08-26T19:37:19.1598548Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-08-26T19:37:19.1599043Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-08-26T19:37:19.1599578Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-08-26T19:37:19.1600103Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-08-26T19:37:19.1600660Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-08-26T19:37:19.1601598Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-08-26T19:37:19.1602157Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-08-26T19:37:19.1602687Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-08-26T19:37:19.1603180Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-08-26T19:37:19.1603671Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-08-26T19:37:19.1604150Z * [new branch] gh/isuruf/142/base -> origin/gh/isuruf/142/base 2025-08-26T19:37:19.1604642Z * [new branch] gh/isuruf/142/head -> origin/gh/isuruf/142/head 2025-08-26T19:37:19.1605118Z * [new branch] gh/isuruf/142/orig -> origin/gh/isuruf/142/orig 2025-08-26T19:37:19.1605601Z * [new branch] gh/isuruf/143/base -> origin/gh/isuruf/143/base 2025-08-26T19:37:19.1606073Z * [new branch] gh/isuruf/143/head -> origin/gh/isuruf/143/head 2025-08-26T19:37:19.1606557Z * [new branch] gh/isuruf/143/orig -> origin/gh/isuruf/143/orig 2025-08-26T19:37:19.1607030Z * [new branch] gh/isuruf/81/base -> origin/gh/isuruf/81/base 2025-08-26T19:37:19.1607512Z * [new branch] gh/isuruf/81/head -> origin/gh/isuruf/81/head 2025-08-26T19:37:19.1608020Z * [new branch] gh/isuruf/81/orig -> origin/gh/isuruf/81/orig 2025-08-26T19:37:19.1608539Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-08-26T19:37:19.1609078Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-08-26T19:37:19.1609670Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-08-26T19:37:19.1610184Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-08-26T19:37:19.1610695Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-08-26T19:37:19.1611196Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-08-26T19:37:19.1611719Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-08-26T19:37:19.1612223Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-08-26T19:37:19.1612727Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-08-26T19:37:19.1613245Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-08-26T19:37:19.1613744Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-08-26T19:37:19.1614331Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-08-26T19:37:19.1614870Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-08-26T19:37:19.1615386Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-08-26T19:37:19.1615894Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-08-26T19:37:19.1616392Z * [new branch] gh/jamesjwu/163/base -> origin/gh/jamesjwu/163/base 2025-08-26T19:37:19.1616912Z * [new branch] gh/jamesjwu/163/head -> origin/gh/jamesjwu/163/head 2025-08-26T19:37:19.1617413Z * [new branch] gh/jamesjwu/163/orig -> origin/gh/jamesjwu/163/orig 2025-08-26T19:37:19.2052077Z * [new branch] gh/jamesjwu/171/base -> origin/gh/jamesjwu/171/base 2025-08-26T19:37:19.2052666Z * [new branch] gh/jamesjwu/171/head -> origin/gh/jamesjwu/171/head 2025-08-26T19:37:19.2053209Z * [new branch] gh/jamesjwu/171/orig -> origin/gh/jamesjwu/171/orig 2025-08-26T19:37:19.2054220Z * [new branch] gh/jamesjwu/175/base -> origin/gh/jamesjwu/175/base 2025-08-26T19:37:19.2054777Z * [new branch] gh/jamesjwu/175/head -> origin/gh/jamesjwu/175/head 2025-08-26T19:37:19.2055334Z * [new branch] gh/jamesjwu/175/orig -> origin/gh/jamesjwu/175/orig 2025-08-26T19:37:19.2055850Z * [new branch] gh/jamesjwu/176/base -> origin/gh/jamesjwu/176/base 2025-08-26T19:37:19.2056352Z * [new branch] gh/jamesjwu/176/head -> origin/gh/jamesjwu/176/head 2025-08-26T19:37:19.2056866Z * [new branch] gh/jamesjwu/176/orig -> origin/gh/jamesjwu/176/orig 2025-08-26T19:37:19.2057369Z * [new branch] gh/jamesjwu/180/base -> origin/gh/jamesjwu/180/base 2025-08-26T19:37:19.2057888Z * [new branch] gh/jamesjwu/180/head -> origin/gh/jamesjwu/180/head 2025-08-26T19:37:19.2058408Z * [new branch] gh/jamesjwu/180/orig -> origin/gh/jamesjwu/180/orig 2025-08-26T19:37:19.2058912Z * [new branch] gh/jamesjwu/181/base -> origin/gh/jamesjwu/181/base 2025-08-26T19:37:19.2059436Z * [new branch] gh/jamesjwu/181/head -> origin/gh/jamesjwu/181/head 2025-08-26T19:37:19.2059935Z * [new branch] gh/jamesjwu/181/orig -> origin/gh/jamesjwu/181/orig 2025-08-26T19:37:19.2060496Z * [new branch] gh/jamesjwu/182/base -> origin/gh/jamesjwu/182/base 2025-08-26T19:37:19.2061046Z * [new branch] gh/jamesjwu/182/head -> origin/gh/jamesjwu/182/head 2025-08-26T19:37:19.2061547Z * [new branch] gh/jamesjwu/182/orig -> origin/gh/jamesjwu/182/orig 2025-08-26T19:37:19.2062060Z * [new branch] gh/jamesjwu/183/base -> origin/gh/jamesjwu/183/base 2025-08-26T19:37:19.2062666Z * [new branch] gh/jamesjwu/183/head -> origin/gh/jamesjwu/183/head 2025-08-26T19:37:19.2063199Z * [new branch] gh/jamesjwu/183/orig -> origin/gh/jamesjwu/183/orig 2025-08-26T19:37:19.2063767Z * [new branch] gh/jamesjwu/184/base -> origin/gh/jamesjwu/184/base 2025-08-26T19:37:19.2064279Z * [new branch] gh/jamesjwu/184/head -> origin/gh/jamesjwu/184/head 2025-08-26T19:37:19.2064799Z * [new branch] gh/jamesjwu/184/orig -> origin/gh/jamesjwu/184/orig 2025-08-26T19:37:19.2065301Z * [new branch] gh/jamesjwu/185/base -> origin/gh/jamesjwu/185/base 2025-08-26T19:37:19.2065827Z * [new branch] gh/jamesjwu/185/head -> origin/gh/jamesjwu/185/head 2025-08-26T19:37:19.2066367Z * [new branch] gh/jamesjwu/185/orig -> origin/gh/jamesjwu/185/orig 2025-08-26T19:37:19.2066925Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-08-26T19:37:19.2067445Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-08-26T19:37:19.2067948Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-08-26T19:37:19.2068460Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-08-26T19:37:19.2068959Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-08-26T19:37:19.2069459Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-08-26T19:37:19.2069959Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-08-26T19:37:19.2070453Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-08-26T19:37:19.2070959Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-08-26T19:37:19.2071460Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-08-26T19:37:19.2072002Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-08-26T19:37:19.2072895Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-08-26T19:37:19.2073401Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-08-26T19:37:19.2073908Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-08-26T19:37:19.2074406Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-08-26T19:37:19.2074915Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-08-26T19:37:19.2075417Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-08-26T19:37:19.2075920Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-08-26T19:37:19.2076432Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-08-26T19:37:19.2521762Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-08-26T19:37:19.2522331Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-08-26T19:37:19.2523179Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-08-26T19:37:19.2523941Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-08-26T19:37:19.2524445Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-08-26T19:37:19.2524929Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-08-26T19:37:19.2525431Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-08-26T19:37:19.2525923Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-08-26T19:37:19.2526600Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-08-26T19:37:19.2527124Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-08-26T19:37:19.2527622Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-08-26T19:37:19.2528130Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-08-26T19:37:19.2528854Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-08-26T19:37:19.2529723Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-08-26T19:37:19.2530233Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-08-26T19:37:19.2530730Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-08-26T19:37:19.2531244Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-08-26T19:37:19.2531751Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-08-26T19:37:19.2532257Z * [new branch] gh/janeyx99/282/base -> origin/gh/janeyx99/282/base 2025-08-26T19:37:19.2532757Z * [new branch] gh/janeyx99/282/head -> origin/gh/janeyx99/282/head 2025-08-26T19:37:19.2533248Z * [new branch] gh/janeyx99/282/orig -> origin/gh/janeyx99/282/orig 2025-08-26T19:37:19.2533750Z * [new branch] gh/janeyx99/283/base -> origin/gh/janeyx99/283/base 2025-08-26T19:37:19.2534235Z * [new branch] gh/janeyx99/283/head -> origin/gh/janeyx99/283/head 2025-08-26T19:37:19.2535090Z * [new branch] gh/janeyx99/283/orig -> origin/gh/janeyx99/283/orig 2025-08-26T19:37:19.2535830Z * [new branch] gh/janeyx99/284/base -> origin/gh/janeyx99/284/base 2025-08-26T19:37:19.2536333Z * [new branch] gh/janeyx99/284/head -> origin/gh/janeyx99/284/head 2025-08-26T19:37:19.2537286Z * [new branch] gh/janeyx99/284/orig -> origin/gh/janeyx99/284/orig 2025-08-26T19:37:19.2537791Z * [new branch] gh/janeyx99/285/base -> origin/gh/janeyx99/285/base 2025-08-26T19:37:19.2538298Z * [new branch] gh/janeyx99/285/head -> origin/gh/janeyx99/285/head 2025-08-26T19:37:19.2538791Z * [new branch] gh/janeyx99/285/orig -> origin/gh/janeyx99/285/orig 2025-08-26T19:37:19.2539296Z * [new branch] gh/janeyx99/286/base -> origin/gh/janeyx99/286/base 2025-08-26T19:37:19.2539788Z * [new branch] gh/janeyx99/286/head -> origin/gh/janeyx99/286/head 2025-08-26T19:37:19.2540293Z * [new branch] gh/janeyx99/286/orig -> origin/gh/janeyx99/286/orig 2025-08-26T19:37:19.2541198Z * [new branch] gh/janeyx99/287/base -> origin/gh/janeyx99/287/base 2025-08-26T19:37:19.2541903Z * [new branch] gh/janeyx99/287/head -> origin/gh/janeyx99/287/head 2025-08-26T19:37:19.2542400Z * [new branch] gh/janeyx99/287/orig -> origin/gh/janeyx99/287/orig 2025-08-26T19:37:19.2542898Z * [new branch] gh/janeyx99/288/base -> origin/gh/janeyx99/288/base 2025-08-26T19:37:19.2543389Z * [new branch] gh/janeyx99/288/head -> origin/gh/janeyx99/288/head 2025-08-26T19:37:19.2543968Z * [new branch] gh/janeyx99/288/orig -> origin/gh/janeyx99/288/orig 2025-08-26T19:37:19.2544454Z * [new branch] gh/janeyx99/289/base -> origin/gh/janeyx99/289/base 2025-08-26T19:37:19.2544951Z * [new branch] gh/janeyx99/289/head -> origin/gh/janeyx99/289/head 2025-08-26T19:37:19.2545451Z * [new branch] gh/janeyx99/289/orig -> origin/gh/janeyx99/289/orig 2025-08-26T19:37:19.2545944Z * [new branch] gh/janeyx99/290/base -> origin/gh/janeyx99/290/base 2025-08-26T19:37:19.2546826Z * [new branch] gh/janeyx99/290/head -> origin/gh/janeyx99/290/head 2025-08-26T19:37:19.2547659Z * [new branch] gh/janeyx99/290/orig -> origin/gh/janeyx99/290/orig 2025-08-26T19:37:19.2548162Z * [new branch] gh/janeyx99/291/base -> origin/gh/janeyx99/291/base 2025-08-26T19:37:19.2548643Z * [new branch] gh/janeyx99/291/head -> origin/gh/janeyx99/291/head 2025-08-26T19:37:19.2970317Z * [new branch] gh/janeyx99/291/orig -> origin/gh/janeyx99/291/orig 2025-08-26T19:37:19.2970984Z * [new branch] gh/janeyx99/292/base -> origin/gh/janeyx99/292/base 2025-08-26T19:37:19.2971491Z * [new branch] gh/janeyx99/292/head -> origin/gh/janeyx99/292/head 2025-08-26T19:37:19.2971989Z * [new branch] gh/janeyx99/292/orig -> origin/gh/janeyx99/292/orig 2025-08-26T19:37:19.2972501Z * [new branch] gh/janeyx99/293/base -> origin/gh/janeyx99/293/base 2025-08-26T19:37:19.2973345Z * [new branch] gh/janeyx99/293/head -> origin/gh/janeyx99/293/head 2025-08-26T19:37:19.2974096Z * [new branch] gh/janeyx99/293/orig -> origin/gh/janeyx99/293/orig 2025-08-26T19:37:19.2974585Z * [new branch] gh/janeyx99/294/base -> origin/gh/janeyx99/294/base 2025-08-26T19:37:19.2975086Z * [new branch] gh/janeyx99/294/head -> origin/gh/janeyx99/294/head 2025-08-26T19:37:19.2975583Z * [new branch] gh/janeyx99/294/orig -> origin/gh/janeyx99/294/orig 2025-08-26T19:37:19.2976075Z * [new branch] gh/janeyx99/295/base -> origin/gh/janeyx99/295/base 2025-08-26T19:37:19.2976573Z * [new branch] gh/janeyx99/295/head -> origin/gh/janeyx99/295/head 2025-08-26T19:37:19.2977063Z * [new branch] gh/janeyx99/295/orig -> origin/gh/janeyx99/295/orig 2025-08-26T19:37:19.2977572Z * [new branch] gh/janeyx99/296/base -> origin/gh/janeyx99/296/base 2025-08-26T19:37:19.2978522Z * [new branch] gh/janeyx99/296/head -> origin/gh/janeyx99/296/head 2025-08-26T19:37:19.2979414Z * [new branch] gh/janeyx99/296/orig -> origin/gh/janeyx99/296/orig 2025-08-26T19:37:19.2980174Z * [new branch] gh/janeyx99/297/base -> origin/gh/janeyx99/297/base 2025-08-26T19:37:19.2980675Z * [new branch] gh/janeyx99/297/head -> origin/gh/janeyx99/297/head 2025-08-26T19:37:19.2981179Z * [new branch] gh/janeyx99/297/orig -> origin/gh/janeyx99/297/orig 2025-08-26T19:37:19.2981674Z * [new branch] gh/janeyx99/298/base -> origin/gh/janeyx99/298/base 2025-08-26T19:37:19.2982176Z * [new branch] gh/janeyx99/298/head -> origin/gh/janeyx99/298/head 2025-08-26T19:37:19.2982675Z * [new branch] gh/janeyx99/298/orig -> origin/gh/janeyx99/298/orig 2025-08-26T19:37:19.2983169Z * [new branch] gh/janeyx99/299/base -> origin/gh/janeyx99/299/base 2025-08-26T19:37:19.2983736Z * [new branch] gh/janeyx99/299/head -> origin/gh/janeyx99/299/head 2025-08-26T19:37:19.2984227Z * [new branch] gh/janeyx99/299/orig -> origin/gh/janeyx99/299/orig 2025-08-26T19:37:19.2984882Z * [new branch] gh/janeyx99/300/base -> origin/gh/janeyx99/300/base 2025-08-26T19:37:19.2985800Z * [new branch] gh/janeyx99/300/head -> origin/gh/janeyx99/300/head 2025-08-26T19:37:19.2986329Z * [new branch] gh/janeyx99/300/orig -> origin/gh/janeyx99/300/orig 2025-08-26T19:37:19.2986821Z * [new branch] gh/janeyx99/301/base -> origin/gh/janeyx99/301/base 2025-08-26T19:37:19.2987307Z * [new branch] gh/janeyx99/301/head -> origin/gh/janeyx99/301/head 2025-08-26T19:37:19.2987914Z * [new branch] gh/janeyx99/301/orig -> origin/gh/janeyx99/301/orig 2025-08-26T19:37:19.2988428Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-08-26T19:37:19.2988924Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-08-26T19:37:19.2989426Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-08-26T19:37:19.2989908Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-08-26T19:37:19.2990397Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-08-26T19:37:19.2991232Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-08-26T19:37:19.2991965Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-08-26T19:37:19.2992460Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-08-26T19:37:19.2992944Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-08-26T19:37:19.2993437Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-08-26T19:37:19.2993915Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-08-26T19:37:19.2994404Z * [new branch] gh/jansel/531/base -> origin/gh/jansel/531/base 2025-08-26T19:37:19.2994885Z * [new branch] gh/jansel/531/head -> origin/gh/jansel/531/head 2025-08-26T19:37:19.2995359Z * [new branch] gh/jansel/531/orig -> origin/gh/jansel/531/orig 2025-08-26T19:37:19.2995848Z * [new branch] gh/jansel/534/base -> origin/gh/jansel/534/base 2025-08-26T19:37:19.2996326Z * [new branch] gh/jansel/534/head -> origin/gh/jansel/534/head 2025-08-26T19:37:19.3969826Z * [new branch] gh/jansel/534/orig -> origin/gh/jansel/534/orig 2025-08-26T19:37:19.3970456Z * [new branch] gh/jbschlosser/208/head -> origin/gh/jbschlosser/208/head 2025-08-26T19:37:19.3971527Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-08-26T19:37:19.3972088Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-08-26T19:37:19.3972633Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-08-26T19:37:19.3973631Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-08-26T19:37:19.3974364Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-08-26T19:37:19.3974894Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-08-26T19:37:19.3975415Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-08-26T19:37:19.3975963Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-08-26T19:37:19.3976495Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-08-26T19:37:19.3977031Z * [new branch] gh/jbschlosser/250/base -> origin/gh/jbschlosser/250/base 2025-08-26T19:37:19.3977564Z * [new branch] gh/jbschlosser/250/head -> origin/gh/jbschlosser/250/head 2025-08-26T19:37:19.3978092Z * [new branch] gh/jbschlosser/250/orig -> origin/gh/jbschlosser/250/orig 2025-08-26T19:37:19.3978625Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-08-26T19:37:19.3979551Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-08-26T19:37:19.3980256Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-08-26T19:37:19.3980771Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-08-26T19:37:19.3981411Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-08-26T19:37:19.3981924Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-08-26T19:37:19.3982430Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-08-26T19:37:19.3982925Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-08-26T19:37:19.3983430Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-08-26T19:37:19.3983995Z * [new branch] gh/jiayisunx/64/base -> origin/gh/jiayisunx/64/base 2025-08-26T19:37:19.3984496Z * [new branch] gh/jiayisunx/64/head -> origin/gh/jiayisunx/64/head 2025-08-26T19:37:19.3985362Z * [new branch] gh/jiayisunx/64/orig -> origin/gh/jiayisunx/64/orig 2025-08-26T19:37:19.3986111Z * [new branch] gh/jiayisunx/65/base -> origin/gh/jiayisunx/65/base 2025-08-26T19:37:19.3986615Z * [new branch] gh/jiayisunx/65/head -> origin/gh/jiayisunx/65/head 2025-08-26T19:37:19.3987117Z * [new branch] gh/jiayisunx/65/orig -> origin/gh/jiayisunx/65/orig 2025-08-26T19:37:19.3987615Z * [new branch] gh/jiayisunx/66/base -> origin/gh/jiayisunx/66/base 2025-08-26T19:37:19.3988101Z * [new branch] gh/jiayisunx/66/head -> origin/gh/jiayisunx/66/head 2025-08-26T19:37:19.3988596Z * [new branch] gh/jiayisunx/66/orig -> origin/gh/jiayisunx/66/orig 2025-08-26T19:37:19.3989104Z * [new branch] gh/jiayisunx/67/base -> origin/gh/jiayisunx/67/base 2025-08-26T19:37:19.3989602Z * [new branch] gh/jiayisunx/67/head -> origin/gh/jiayisunx/67/head 2025-08-26T19:37:19.3990102Z * [new branch] gh/jiayisunx/67/orig -> origin/gh/jiayisunx/67/orig 2025-08-26T19:37:19.3990657Z * [new branch] gh/jiayisunx/68/base -> origin/gh/jiayisunx/68/base 2025-08-26T19:37:19.3991988Z * [new branch] gh/jiayisunx/68/head -> origin/gh/jiayisunx/68/head 2025-08-26T19:37:19.3992529Z * [new branch] gh/jiayisunx/68/orig -> origin/gh/jiayisunx/68/orig 2025-08-26T19:37:19.3993024Z * [new branch] gh/jiayisunx/69/base -> origin/gh/jiayisunx/69/base 2025-08-26T19:37:19.3993521Z * [new branch] gh/jiayisunx/69/head -> origin/gh/jiayisunx/69/head 2025-08-26T19:37:19.3994017Z * [new branch] gh/jiayisunx/69/orig -> origin/gh/jiayisunx/69/orig 2025-08-26T19:37:19.3994521Z * [new branch] gh/jiayisunx/70/base -> origin/gh/jiayisunx/70/base 2025-08-26T19:37:19.3995031Z * [new branch] gh/jiayisunx/70/head -> origin/gh/jiayisunx/70/head 2025-08-26T19:37:19.3995528Z * [new branch] gh/jiayisunx/70/orig -> origin/gh/jiayisunx/70/orig 2025-08-26T19:37:19.3996055Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-08-26T19:37:19.3996674Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-08-26T19:37:19.4425031Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-08-26T19:37:19.4425903Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-08-26T19:37:19.4426439Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-08-26T19:37:19.4427020Z * [new branch] gh/justinchuby/112/base -> origin/gh/justinchuby/112/base 2025-08-26T19:37:19.4427550Z * [new branch] gh/justinchuby/112/head -> origin/gh/justinchuby/112/head 2025-08-26T19:37:19.4428160Z * [new branch] gh/justinchuby/112/orig -> origin/gh/justinchuby/112/orig 2025-08-26T19:37:19.4428736Z * [new branch] gh/justinchuby/113/base -> origin/gh/justinchuby/113/base 2025-08-26T19:37:19.4429437Z * [new branch] gh/justinchuby/113/head -> origin/gh/justinchuby/113/head 2025-08-26T19:37:19.4430035Z * [new branch] gh/justinchuby/113/orig -> origin/gh/justinchuby/113/orig 2025-08-26T19:37:19.4430778Z * [new branch] gh/justinchuby/114/base -> origin/gh/justinchuby/114/base 2025-08-26T19:37:19.4431785Z * [new branch] gh/justinchuby/114/head -> origin/gh/justinchuby/114/head 2025-08-26T19:37:19.4432321Z * [new branch] gh/justinchuby/114/orig -> origin/gh/justinchuby/114/orig 2025-08-26T19:37:19.4432885Z * [new branch] gh/karthickai/1/base -> origin/gh/karthickai/1/base 2025-08-26T19:37:19.4433439Z * [new branch] gh/karthickai/1/head -> origin/gh/karthickai/1/head 2025-08-26T19:37:19.4433939Z * [new branch] gh/karthickai/1/orig -> origin/gh/karthickai/1/orig 2025-08-26T19:37:19.4434446Z * [new branch] gh/karthickai/2/base -> origin/gh/karthickai/2/base 2025-08-26T19:37:19.4434956Z * [new branch] gh/karthickai/2/head -> origin/gh/karthickai/2/head 2025-08-26T19:37:19.4435453Z * [new branch] gh/karthickai/2/orig -> origin/gh/karthickai/2/orig 2025-08-26T19:37:19.4435972Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-08-26T19:37:19.4436645Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-08-26T19:37:19.4437632Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-08-26T19:37:19.4438239Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-08-26T19:37:19.4438793Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-08-26T19:37:19.4439311Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-08-26T19:37:19.4439867Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-08-26T19:37:19.4440890Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-08-26T19:37:19.4441474Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-08-26T19:37:19.4441995Z * [new branch] gh/kurtamohler/41/base -> origin/gh/kurtamohler/41/base 2025-08-26T19:37:19.4442825Z * [new branch] gh/kurtamohler/41/head -> origin/gh/kurtamohler/41/head 2025-08-26T19:37:19.4443728Z * [new branch] gh/kurtamohler/41/orig -> origin/gh/kurtamohler/41/orig 2025-08-26T19:37:19.4444260Z * [new branch] gh/kurtamohler/42/base -> origin/gh/kurtamohler/42/base 2025-08-26T19:37:19.4444775Z * [new branch] gh/kurtamohler/42/head -> origin/gh/kurtamohler/42/head 2025-08-26T19:37:19.4445302Z * [new branch] gh/kurtamohler/42/orig -> origin/gh/kurtamohler/42/orig 2025-08-26T19:37:19.4445873Z * [new branch] gh/kurtamohler/43/base -> origin/gh/kurtamohler/43/base 2025-08-26T19:37:19.4446429Z * [new branch] gh/kurtamohler/43/head -> origin/gh/kurtamohler/43/head 2025-08-26T19:37:19.4446946Z * [new branch] gh/kurtamohler/43/orig -> origin/gh/kurtamohler/43/orig 2025-08-26T19:37:19.4447463Z * [new branch] gh/kurtamohler/44/base -> origin/gh/kurtamohler/44/base 2025-08-26T19:37:19.4448033Z * [new branch] gh/kurtamohler/44/head -> origin/gh/kurtamohler/44/head 2025-08-26T19:37:19.4448897Z * [new branch] gh/kurtamohler/44/orig -> origin/gh/kurtamohler/44/orig 2025-08-26T19:37:19.4449767Z * [new branch] gh/kurtamohler/45/base -> origin/gh/kurtamohler/45/base 2025-08-26T19:37:19.4450297Z * [new branch] gh/kurtamohler/45/head -> origin/gh/kurtamohler/45/head 2025-08-26T19:37:19.4450934Z * [new branch] gh/kurtamohler/45/orig -> origin/gh/kurtamohler/45/orig 2025-08-26T19:37:19.4451467Z * [new branch] gh/kurtamohler/46/base -> origin/gh/kurtamohler/46/base 2025-08-26T19:37:19.4452034Z * [new branch] gh/kurtamohler/46/head -> origin/gh/kurtamohler/46/head 2025-08-26T19:37:19.4452591Z * [new branch] gh/kurtamohler/46/orig -> origin/gh/kurtamohler/46/orig 2025-08-26T19:37:19.4932885Z * [new branch] gh/kurtamohler/47/base -> origin/gh/kurtamohler/47/base 2025-08-26T19:37:19.4933466Z * [new branch] gh/kurtamohler/47/head -> origin/gh/kurtamohler/47/head 2025-08-26T19:37:19.4933986Z * [new branch] gh/kurtamohler/47/orig -> origin/gh/kurtamohler/47/orig 2025-08-26T19:37:19.4934519Z * [new branch] gh/kurtamohler/48/base -> origin/gh/kurtamohler/48/base 2025-08-26T19:37:19.4935052Z * [new branch] gh/kurtamohler/48/head -> origin/gh/kurtamohler/48/head 2025-08-26T19:37:19.4935584Z * [new branch] gh/kurtamohler/48/orig -> origin/gh/kurtamohler/48/orig 2025-08-26T19:37:19.4936095Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-08-26T19:37:19.4936584Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-08-26T19:37:19.4937450Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-08-26T19:37:19.4938197Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-08-26T19:37:19.4938686Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-08-26T19:37:19.4939181Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-08-26T19:37:19.4939673Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-08-26T19:37:19.4940161Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-08-26T19:37:19.4940797Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-08-26T19:37:19.4941284Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-08-26T19:37:19.4941783Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-08-26T19:37:19.4942277Z * [new branch] gh/kwen2501/170/base -> origin/gh/kwen2501/170/base 2025-08-26T19:37:19.4942870Z * [new branch] gh/kwen2501/170/head -> origin/gh/kwen2501/170/head 2025-08-26T19:37:19.4943855Z * [new branch] gh/kwen2501/186/base -> origin/gh/kwen2501/186/base 2025-08-26T19:37:19.4944396Z * [new branch] gh/kwen2501/186/head -> origin/gh/kwen2501/186/head 2025-08-26T19:37:19.4944888Z * [new branch] gh/kwen2501/186/orig -> origin/gh/kwen2501/186/orig 2025-08-26T19:37:19.4945385Z * [new branch] gh/kwen2501/187/base -> origin/gh/kwen2501/187/base 2025-08-26T19:37:19.4945885Z * [new branch] gh/kwen2501/187/head -> origin/gh/kwen2501/187/head 2025-08-26T19:37:19.4946367Z * [new branch] gh/kwen2501/187/orig -> origin/gh/kwen2501/187/orig 2025-08-26T19:37:19.4946852Z * [new branch] gh/kwen2501/188/base -> origin/gh/kwen2501/188/base 2025-08-26T19:37:19.4947338Z * [new branch] gh/kwen2501/188/head -> origin/gh/kwen2501/188/head 2025-08-26T19:37:19.4947820Z * [new branch] gh/kwen2501/188/orig -> origin/gh/kwen2501/188/orig 2025-08-26T19:37:19.4948307Z * [new branch] gh/kwen2501/194/base -> origin/gh/kwen2501/194/base 2025-08-26T19:37:19.4948990Z * [new branch] gh/kwen2501/194/head -> origin/gh/kwen2501/194/head 2025-08-26T19:37:19.4949948Z * [new branch] gh/kwen2501/194/orig -> origin/gh/kwen2501/194/orig 2025-08-26T19:37:19.4950445Z * [new branch] gh/kwen2501/199/base -> origin/gh/kwen2501/199/base 2025-08-26T19:37:19.4950936Z * [new branch] gh/kwen2501/199/head -> origin/gh/kwen2501/199/head 2025-08-26T19:37:19.4951438Z * [new branch] gh/kwen2501/199/orig -> origin/gh/kwen2501/199/orig 2025-08-26T19:37:19.4951923Z * [new branch] gh/kwen2501/200/base -> origin/gh/kwen2501/200/base 2025-08-26T19:37:19.4952399Z * [new branch] gh/kwen2501/200/head -> origin/gh/kwen2501/200/head 2025-08-26T19:37:19.4952893Z * [new branch] gh/kwen2501/200/orig -> origin/gh/kwen2501/200/orig 2025-08-26T19:37:19.4953377Z * [new branch] gh/kwen2501/201/base -> origin/gh/kwen2501/201/base 2025-08-26T19:37:19.4953866Z * [new branch] gh/kwen2501/201/head -> origin/gh/kwen2501/201/head 2025-08-26T19:37:19.4954365Z * [new branch] gh/kwen2501/201/orig -> origin/gh/kwen2501/201/orig 2025-08-26T19:37:19.4955170Z * [new branch] gh/kwen2501/202/base -> origin/gh/kwen2501/202/base 2025-08-26T19:37:19.4955930Z * [new branch] gh/kwen2501/202/head -> origin/gh/kwen2501/202/head 2025-08-26T19:37:19.4956408Z * [new branch] gh/kwen2501/202/orig -> origin/gh/kwen2501/202/orig 2025-08-26T19:37:19.4956899Z * [new branch] gh/kwen2501/203/base -> origin/gh/kwen2501/203/base 2025-08-26T19:37:19.4957384Z * [new branch] gh/kwen2501/203/head -> origin/gh/kwen2501/203/head 2025-08-26T19:37:19.4957875Z * [new branch] gh/kwen2501/203/orig -> origin/gh/kwen2501/203/orig 2025-08-26T19:37:19.4958360Z * [new branch] gh/kwen2501/204/base -> origin/gh/kwen2501/204/base 2025-08-26T19:37:19.5366178Z * [new branch] gh/kwen2501/204/head -> origin/gh/kwen2501/204/head 2025-08-26T19:37:19.5366737Z * [new branch] gh/kwen2501/204/orig -> origin/gh/kwen2501/204/orig 2025-08-26T19:37:19.5367391Z * [new branch] gh/kwen2501/205/base -> origin/gh/kwen2501/205/base 2025-08-26T19:37:19.5367902Z * [new branch] gh/kwen2501/205/head -> origin/gh/kwen2501/205/head 2025-08-26T19:37:19.5368402Z * [new branch] gh/kwen2501/205/orig -> origin/gh/kwen2501/205/orig 2025-08-26T19:37:19.5368883Z * [new branch] gh/kwen2501/206/base -> origin/gh/kwen2501/206/base 2025-08-26T19:37:19.5369377Z * [new branch] gh/kwen2501/206/head -> origin/gh/kwen2501/206/head 2025-08-26T19:37:19.5369854Z * [new branch] gh/kwen2501/206/orig -> origin/gh/kwen2501/206/orig 2025-08-26T19:37:19.5370341Z * [new branch] gh/kwen2501/207/base -> origin/gh/kwen2501/207/base 2025-08-26T19:37:19.5370837Z * [new branch] gh/kwen2501/207/head -> origin/gh/kwen2501/207/head 2025-08-26T19:37:19.5371320Z * [new branch] gh/kwen2501/207/orig -> origin/gh/kwen2501/207/orig 2025-08-26T19:37:19.5371803Z * [new branch] gh/kwen2501/208/base -> origin/gh/kwen2501/208/base 2025-08-26T19:37:19.5372284Z * [new branch] gh/kwen2501/208/head -> origin/gh/kwen2501/208/head 2025-08-26T19:37:19.5372783Z * [new branch] gh/kwen2501/208/orig -> origin/gh/kwen2501/208/orig 2025-08-26T19:37:19.5373272Z * [new branch] gh/kwen2501/209/base -> origin/gh/kwen2501/209/base 2025-08-26T19:37:19.5373754Z * [new branch] gh/kwen2501/209/head -> origin/gh/kwen2501/209/head 2025-08-26T19:37:19.5374238Z * [new branch] gh/kwen2501/209/orig -> origin/gh/kwen2501/209/orig 2025-08-26T19:37:19.5374725Z * [new branch] gh/kwen2501/210/base -> origin/gh/kwen2501/210/base 2025-08-26T19:37:19.5375857Z * [new branch] gh/kwen2501/210/head -> origin/gh/kwen2501/210/head 2025-08-26T19:37:19.5376358Z * [new branch] gh/kwen2501/210/orig -> origin/gh/kwen2501/210/orig 2025-08-26T19:37:19.5376835Z * [new branch] gh/kwen2501/211/base -> origin/gh/kwen2501/211/base 2025-08-26T19:37:19.5377325Z * [new branch] gh/kwen2501/211/head -> origin/gh/kwen2501/211/head 2025-08-26T19:37:19.5377807Z * [new branch] gh/kwen2501/212/base -> origin/gh/kwen2501/212/base 2025-08-26T19:37:19.5378295Z * [new branch] gh/kwen2501/212/head -> origin/gh/kwen2501/212/head 2025-08-26T19:37:19.5378789Z * [new branch] gh/kwen2501/212/orig -> origin/gh/kwen2501/212/orig 2025-08-26T19:37:19.5379270Z * [new branch] gh/kwen2501/213/base -> origin/gh/kwen2501/213/base 2025-08-26T19:37:19.5379763Z * [new branch] gh/kwen2501/213/head -> origin/gh/kwen2501/213/head 2025-08-26T19:37:19.5380251Z * [new branch] gh/kwen2501/213/orig -> origin/gh/kwen2501/213/orig 2025-08-26T19:37:19.5380750Z * [new branch] gh/kwen2501/214/base -> origin/gh/kwen2501/214/base 2025-08-26T19:37:19.5381239Z * [new branch] gh/kwen2501/214/head -> origin/gh/kwen2501/214/head 2025-08-26T19:37:19.5381719Z * [new branch] gh/kwen2501/214/orig -> origin/gh/kwen2501/214/orig 2025-08-26T19:37:19.5382217Z * [new branch] gh/kwen2501/215/base -> origin/gh/kwen2501/215/base 2025-08-26T19:37:19.5382694Z * [new branch] gh/kwen2501/215/head -> origin/gh/kwen2501/215/head 2025-08-26T19:37:19.5383186Z * [new branch] gh/kwen2501/215/orig -> origin/gh/kwen2501/215/orig 2025-08-26T19:37:19.5383749Z * [new branch] gh/kwen2501/216/base -> origin/gh/kwen2501/216/base 2025-08-26T19:37:19.5384237Z * [new branch] gh/kwen2501/216/head -> origin/gh/kwen2501/216/head 2025-08-26T19:37:19.5384822Z * [new branch] gh/kwen2501/216/orig -> origin/gh/kwen2501/216/orig 2025-08-26T19:37:19.5385312Z * [new branch] gh/kwen2501/217/base -> origin/gh/kwen2501/217/base 2025-08-26T19:37:19.5385812Z * [new branch] gh/kwen2501/217/head -> origin/gh/kwen2501/217/head 2025-08-26T19:37:19.5386295Z * [new branch] gh/kwen2501/217/orig -> origin/gh/kwen2501/217/orig 2025-08-26T19:37:19.5386799Z * [new branch] gh/kwen2501/218/base -> origin/gh/kwen2501/218/base 2025-08-26T19:37:19.5387303Z * [new branch] gh/kwen2501/218/head -> origin/gh/kwen2501/218/head 2025-08-26T19:37:19.5387787Z * [new branch] gh/kwen2501/218/orig -> origin/gh/kwen2501/218/orig 2025-08-26T19:37:19.5388302Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-08-26T19:37:19.5388830Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-08-26T19:37:19.5389365Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-08-26T19:37:19.5825358Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-08-26T19:37:19.5825896Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-08-26T19:37:19.5826432Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-08-26T19:37:19.5826960Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-08-26T19:37:19.5827481Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-08-26T19:37:19.5828004Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-08-26T19:37:19.5828531Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-08-26T19:37:19.5829662Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-08-26T19:37:19.5830204Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-08-26T19:37:19.5830727Z * [new branch] gh/laithsakka/237/base -> origin/gh/laithsakka/237/base 2025-08-26T19:37:19.5831259Z * [new branch] gh/laithsakka/237/head -> origin/gh/laithsakka/237/head 2025-08-26T19:37:19.5831787Z * [new branch] gh/laithsakka/237/orig -> origin/gh/laithsakka/237/orig 2025-08-26T19:37:19.5832316Z * [new branch] gh/laithsakka/238/base -> origin/gh/laithsakka/238/base 2025-08-26T19:37:19.5832853Z * [new branch] gh/laithsakka/238/head -> origin/gh/laithsakka/238/head 2025-08-26T19:37:19.5833373Z * [new branch] gh/laithsakka/238/orig -> origin/gh/laithsakka/238/orig 2025-08-26T19:37:19.5833906Z * [new branch] gh/laithsakka/248/base -> origin/gh/laithsakka/248/base 2025-08-26T19:37:19.5834431Z * [new branch] gh/laithsakka/248/head -> origin/gh/laithsakka/248/head 2025-08-26T19:37:19.5834966Z * [new branch] gh/laithsakka/248/orig -> origin/gh/laithsakka/248/orig 2025-08-26T19:37:19.5835480Z * [new branch] gh/laithsakka/249/base -> origin/gh/laithsakka/249/base 2025-08-26T19:37:19.5836013Z * [new branch] gh/laithsakka/249/head -> origin/gh/laithsakka/249/head 2025-08-26T19:37:19.5836548Z * [new branch] gh/laithsakka/249/orig -> origin/gh/laithsakka/249/orig 2025-08-26T19:37:19.5837071Z * [new branch] gh/laithsakka/250/base -> origin/gh/laithsakka/250/base 2025-08-26T19:37:19.5837605Z * [new branch] gh/laithsakka/250/head -> origin/gh/laithsakka/250/head 2025-08-26T19:37:19.5838122Z * [new branch] gh/laithsakka/250/orig -> origin/gh/laithsakka/250/orig 2025-08-26T19:37:19.5838658Z * [new branch] gh/laithsakka/251/base -> origin/gh/laithsakka/251/base 2025-08-26T19:37:19.5839481Z * [new branch] gh/laithsakka/251/head -> origin/gh/laithsakka/251/head 2025-08-26T19:37:19.5840028Z * [new branch] gh/laithsakka/251/orig -> origin/gh/laithsakka/251/orig 2025-08-26T19:37:19.5840559Z * [new branch] gh/laithsakka/252/base -> origin/gh/laithsakka/252/base 2025-08-26T19:37:19.5841092Z * [new branch] gh/laithsakka/252/head -> origin/gh/laithsakka/252/head 2025-08-26T19:37:19.5841614Z * [new branch] gh/laithsakka/252/orig -> origin/gh/laithsakka/252/orig 2025-08-26T19:37:19.5842145Z * [new branch] gh/laithsakka/253/base -> origin/gh/laithsakka/253/base 2025-08-26T19:37:19.5842665Z * [new branch] gh/laithsakka/253/head -> origin/gh/laithsakka/253/head 2025-08-26T19:37:19.5843200Z * [new branch] gh/laithsakka/253/orig -> origin/gh/laithsakka/253/orig 2025-08-26T19:37:19.5843783Z * [new branch] gh/laithsakka/254/base -> origin/gh/laithsakka/254/base 2025-08-26T19:37:19.5844326Z * [new branch] gh/laithsakka/254/head -> origin/gh/laithsakka/254/head 2025-08-26T19:37:19.5844863Z * [new branch] gh/laithsakka/254/orig -> origin/gh/laithsakka/254/orig 2025-08-26T19:37:19.5845382Z * [new branch] gh/laithsakka/255/base -> origin/gh/laithsakka/255/base 2025-08-26T19:37:19.5845923Z * [new branch] gh/laithsakka/255/head -> origin/gh/laithsakka/255/head 2025-08-26T19:37:19.5846447Z * [new branch] gh/laithsakka/255/orig -> origin/gh/laithsakka/255/orig 2025-08-26T19:37:19.5846980Z * [new branch] gh/laithsakka/256/base -> origin/gh/laithsakka/256/base 2025-08-26T19:37:19.5847519Z * [new branch] gh/laithsakka/256/head -> origin/gh/laithsakka/256/head 2025-08-26T19:37:19.5848577Z * [new branch] gh/laithsakka/256/orig -> origin/gh/laithsakka/256/orig 2025-08-26T19:37:19.5849115Z * [new branch] gh/laithsakka/257/base -> origin/gh/laithsakka/257/base 2025-08-26T19:37:19.5849636Z * [new branch] gh/laithsakka/257/head -> origin/gh/laithsakka/257/head 2025-08-26T19:37:19.5850166Z * [new branch] gh/laithsakka/257/orig -> origin/gh/laithsakka/257/orig 2025-08-26T19:37:19.5850698Z * [new branch] gh/laithsakka/258/base -> origin/gh/laithsakka/258/base 2025-08-26T19:37:19.6293679Z * [new branch] gh/laithsakka/258/head -> origin/gh/laithsakka/258/head 2025-08-26T19:37:19.6294275Z * [new branch] gh/laithsakka/258/orig -> origin/gh/laithsakka/258/orig 2025-08-26T19:37:19.6294820Z * [new branch] gh/laithsakka/259/base -> origin/gh/laithsakka/259/base 2025-08-26T19:37:19.6295362Z * [new branch] gh/laithsakka/259/head -> origin/gh/laithsakka/259/head 2025-08-26T19:37:19.6295907Z * [new branch] gh/laithsakka/259/orig -> origin/gh/laithsakka/259/orig 2025-08-26T19:37:19.6296428Z * [new branch] gh/laithsakka/260/base -> origin/gh/laithsakka/260/base 2025-08-26T19:37:19.6296959Z * [new branch] gh/laithsakka/260/head -> origin/gh/laithsakka/260/head 2025-08-26T19:37:19.6297501Z * [new branch] gh/laithsakka/260/orig -> origin/gh/laithsakka/260/orig 2025-08-26T19:37:19.6298026Z * [new branch] gh/laithsakka/261/base -> origin/gh/laithsakka/261/base 2025-08-26T19:37:19.6298926Z * [new branch] gh/laithsakka/261/head -> origin/gh/laithsakka/261/head 2025-08-26T19:37:19.6299701Z * [new branch] gh/laithsakka/261/orig -> origin/gh/laithsakka/261/orig 2025-08-26T19:37:19.6300237Z * [new branch] gh/laithsakka/262/base -> origin/gh/laithsakka/262/base 2025-08-26T19:37:19.6300764Z * [new branch] gh/laithsakka/262/head -> origin/gh/laithsakka/262/head 2025-08-26T19:37:19.6301460Z * [new branch] gh/laithsakka/262/orig -> origin/gh/laithsakka/262/orig 2025-08-26T19:37:19.6301995Z * [new branch] gh/laithsakka/263/base -> origin/gh/laithsakka/263/base 2025-08-26T19:37:19.6302518Z * [new branch] gh/laithsakka/263/head -> origin/gh/laithsakka/263/head 2025-08-26T19:37:19.6303061Z * [new branch] gh/laithsakka/263/orig -> origin/gh/laithsakka/263/orig 2025-08-26T19:37:19.6303656Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-08-26T19:37:19.6304358Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-08-26T19:37:19.6305326Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-08-26T19:37:19.6305866Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-08-26T19:37:19.6306396Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-08-26T19:37:19.6306908Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-08-26T19:37:19.6307430Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-08-26T19:37:19.6307959Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-08-26T19:37:19.6308486Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-08-26T19:37:19.6309017Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-08-26T19:37:19.6309537Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-08-26T19:37:19.6310172Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-08-26T19:37:19.6311546Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-08-26T19:37:19.6312083Z * [new branch] gh/lucaskabela/11/base -> origin/gh/lucaskabela/11/base 2025-08-26T19:37:19.6312619Z * [new branch] gh/lucaskabela/11/head -> origin/gh/lucaskabela/11/head 2025-08-26T19:37:19.6313147Z * [new branch] gh/lucaskabela/11/orig -> origin/gh/lucaskabela/11/orig 2025-08-26T19:37:19.6313688Z * [new branch] gh/lucaskabela/12/base -> origin/gh/lucaskabela/12/base 2025-08-26T19:37:19.6314231Z * [new branch] gh/lucaskabela/12/head -> origin/gh/lucaskabela/12/head 2025-08-26T19:37:19.6314758Z * [new branch] gh/lucaskabela/12/orig -> origin/gh/lucaskabela/12/orig 2025-08-26T19:37:19.6315310Z * [new branch] gh/lucaskabela/13/base -> origin/gh/lucaskabela/13/base 2025-08-26T19:37:19.6315845Z * [new branch] gh/lucaskabela/13/head -> origin/gh/lucaskabela/13/head 2025-08-26T19:37:19.6316831Z * [new branch] gh/lucaskabela/13/orig -> origin/gh/lucaskabela/13/orig 2025-08-26T19:37:19.6317525Z * [new branch] gh/lucaskabela/14/base -> origin/gh/lucaskabela/14/base 2025-08-26T19:37:19.6318064Z * [new branch] gh/lucaskabela/14/head -> origin/gh/lucaskabela/14/head 2025-08-26T19:37:19.6318599Z * [new branch] gh/lucaskabela/14/orig -> origin/gh/lucaskabela/14/orig 2025-08-26T19:37:19.6319120Z * [new branch] gh/lucaskabela/15/base -> origin/gh/lucaskabela/15/base 2025-08-26T19:37:19.6319661Z * [new branch] gh/lucaskabela/15/head -> origin/gh/lucaskabela/15/head 2025-08-26T19:37:19.6320187Z * [new branch] gh/lucaskabela/15/orig -> origin/gh/lucaskabela/15/orig 2025-08-26T19:37:19.6765161Z * [new branch] gh/lucaskabela/16/base -> origin/gh/lucaskabela/16/base 2025-08-26T19:37:19.6765748Z * [new branch] gh/lucaskabela/16/head -> origin/gh/lucaskabela/16/head 2025-08-26T19:37:19.6766455Z * [new branch] gh/lucaskabela/16/orig -> origin/gh/lucaskabela/16/orig 2025-08-26T19:37:19.6767262Z * [new branch] gh/lucaskabela/17/base -> origin/gh/lucaskabela/17/base 2025-08-26T19:37:19.6768150Z * [new branch] gh/lucaskabela/17/head -> origin/gh/lucaskabela/17/head 2025-08-26T19:37:19.6768677Z * [new branch] gh/lucaskabela/17/orig -> origin/gh/lucaskabela/17/orig 2025-08-26T19:37:19.6769227Z * [new branch] gh/lucaskabela/2/base -> origin/gh/lucaskabela/2/base 2025-08-26T19:37:19.6769763Z * [new branch] gh/lucaskabela/2/head -> origin/gh/lucaskabela/2/head 2025-08-26T19:37:19.6770309Z * [new branch] gh/lucaskabela/2/orig -> origin/gh/lucaskabela/2/orig 2025-08-26T19:37:19.6770856Z * [new branch] gh/lucaskabela/3/base -> origin/gh/lucaskabela/3/base 2025-08-26T19:37:19.6771378Z * [new branch] gh/lucaskabela/3/head -> origin/gh/lucaskabela/3/head 2025-08-26T19:37:19.6771921Z * [new branch] gh/lucaskabela/3/orig -> origin/gh/lucaskabela/3/orig 2025-08-26T19:37:19.6772440Z * [new branch] gh/lucaskabela/4/base -> origin/gh/lucaskabela/4/base 2025-08-26T19:37:19.6773297Z * [new branch] gh/lucaskabela/4/head -> origin/gh/lucaskabela/4/head 2025-08-26T19:37:19.6774088Z * [new branch] gh/lucaskabela/4/orig -> origin/gh/lucaskabela/4/orig 2025-08-26T19:37:19.6774633Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-08-26T19:37:19.6775167Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-08-26T19:37:19.6775690Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-08-26T19:37:19.6776646Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-08-26T19:37:19.6777167Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-08-26T19:37:19.6777683Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-08-26T19:37:19.6778207Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-08-26T19:37:19.6778894Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-08-26T19:37:19.6779847Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-08-26T19:37:19.6780380Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-08-26T19:37:19.6780908Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-08-26T19:37:19.6781428Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-08-26T19:37:19.6781941Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-08-26T19:37:19.6782463Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-08-26T19:37:19.6782973Z * [new branch] gh/lucaskabela/9/orig -> origin/gh/lucaskabela/9/orig 2025-08-26T19:37:19.6783462Z * [new branch] gh/lw/1/base -> origin/gh/lw/1/base 2025-08-26T19:37:19.6783967Z * [new branch] gh/lw/1/head -> origin/gh/lw/1/head 2025-08-26T19:37:19.6784392Z * [new branch] gh/lw/1/orig -> origin/gh/lw/1/orig 2025-08-26T19:37:19.6785100Z * [new branch] gh/lw/2/base -> origin/gh/lw/2/base 2025-08-26T19:37:19.6785835Z * [new branch] gh/lw/2/head -> origin/gh/lw/2/head 2025-08-26T19:37:19.6786272Z * [new branch] gh/lw/2/orig -> origin/gh/lw/2/orig 2025-08-26T19:37:19.6786705Z * [new branch] gh/lw/3/base -> origin/gh/lw/3/base 2025-08-26T19:37:19.6787246Z * [new branch] gh/lw/3/head -> origin/gh/lw/3/head 2025-08-26T19:37:19.6787677Z * [new branch] gh/lw/3/orig -> origin/gh/lw/3/orig 2025-08-26T19:37:19.6788124Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-08-26T19:37:19.6788624Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-08-26T19:37:19.6789109Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-08-26T19:37:19.6789589Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-08-26T19:37:19.6790075Z * [new branch] gh/malfet/396/base -> origin/gh/malfet/396/base 2025-08-26T19:37:19.6790628Z * [new branch] gh/malfet/396/head -> origin/gh/malfet/396/head 2025-08-26T19:37:19.6791395Z * [new branch] gh/malfet/396/orig -> origin/gh/malfet/396/orig 2025-08-26T19:37:19.6792129Z * [new branch] gh/malfet/397/base -> origin/gh/malfet/397/base 2025-08-26T19:37:19.6792614Z * [new branch] gh/malfet/397/head -> origin/gh/malfet/397/head 2025-08-26T19:37:19.7219971Z * [new branch] gh/malfet/397/orig -> origin/gh/malfet/397/orig 2025-08-26T19:37:19.7220947Z * [new branch] gh/malfet/398/base -> origin/gh/malfet/398/base 2025-08-26T19:37:19.7221874Z * [new branch] gh/malfet/398/head -> origin/gh/malfet/398/head 2025-08-26T19:37:19.7222795Z * [new branch] gh/malfet/398/orig -> origin/gh/malfet/398/orig 2025-08-26T19:37:19.7223790Z * [new branch] gh/malfet/399/base -> origin/gh/malfet/399/base 2025-08-26T19:37:19.7224690Z * [new branch] gh/malfet/399/head -> origin/gh/malfet/399/head 2025-08-26T19:37:19.7226270Z * [new branch] gh/malfet/399/orig -> origin/gh/malfet/399/orig 2025-08-26T19:37:19.7227184Z * [new branch] gh/malfet/414/base -> origin/gh/malfet/414/base 2025-08-26T19:37:19.7228108Z * [new branch] gh/malfet/414/head -> origin/gh/malfet/414/head 2025-08-26T19:37:19.7229030Z * [new branch] gh/malfet/414/orig -> origin/gh/malfet/414/orig 2025-08-26T19:37:19.7229951Z * [new branch] gh/malfet/417/base -> origin/gh/malfet/417/base 2025-08-26T19:37:19.7230867Z * [new branch] gh/malfet/417/head -> origin/gh/malfet/417/head 2025-08-26T19:37:19.7231761Z * [new branch] gh/malfet/417/orig -> origin/gh/malfet/417/orig 2025-08-26T19:37:19.7232682Z * [new branch] gh/malfet/418/base -> origin/gh/malfet/418/base 2025-08-26T19:37:19.7233625Z * [new branch] gh/malfet/418/head -> origin/gh/malfet/418/head 2025-08-26T19:37:19.7234550Z * [new branch] gh/malfet/418/orig -> origin/gh/malfet/418/orig 2025-08-26T19:37:19.7235475Z * [new branch] gh/malfet/456/base -> origin/gh/malfet/456/base 2025-08-26T19:37:19.7236380Z * [new branch] gh/malfet/456/head -> origin/gh/malfet/456/head 2025-08-26T19:37:19.7237302Z * [new branch] gh/malfet/456/orig -> origin/gh/malfet/456/orig 2025-08-26T19:37:19.7238234Z * [new branch] gh/malfet/457/base -> origin/gh/malfet/457/base 2025-08-26T19:37:19.7239161Z * [new branch] gh/malfet/457/head -> origin/gh/malfet/457/head 2025-08-26T19:37:19.7240078Z * [new branch] gh/malfet/457/orig -> origin/gh/malfet/457/orig 2025-08-26T19:37:19.7241006Z * [new branch] gh/malfet/459/base -> origin/gh/malfet/459/base 2025-08-26T19:37:19.7241903Z * [new branch] gh/malfet/459/head -> origin/gh/malfet/459/head 2025-08-26T19:37:19.7242988Z * [new branch] gh/malfet/459/orig -> origin/gh/malfet/459/orig 2025-08-26T19:37:19.7243891Z * [new branch] gh/malfet/460/base -> origin/gh/malfet/460/base 2025-08-26T19:37:19.7244828Z * [new branch] gh/malfet/460/head -> origin/gh/malfet/460/head 2025-08-26T19:37:19.7245753Z * [new branch] gh/malfet/460/orig -> origin/gh/malfet/460/orig 2025-08-26T19:37:19.7246675Z * [new branch] gh/malfet/461/base -> origin/gh/malfet/461/base 2025-08-26T19:37:19.7247604Z * [new branch] gh/malfet/461/head -> origin/gh/malfet/461/head 2025-08-26T19:37:19.7248498Z * [new branch] gh/malfet/461/orig -> origin/gh/malfet/461/orig 2025-08-26T19:37:19.7249429Z * [new branch] gh/malfet/462/base -> origin/gh/malfet/462/base 2025-08-26T19:37:19.7250360Z * [new branch] gh/malfet/462/head -> origin/gh/malfet/462/head 2025-08-26T19:37:19.7251289Z * [new branch] gh/malfet/462/orig -> origin/gh/malfet/462/orig 2025-08-26T19:37:19.7252210Z * [new branch] gh/malfet/463/base -> origin/gh/malfet/463/base 2025-08-26T19:37:19.7253107Z * [new branch] gh/malfet/463/head -> origin/gh/malfet/463/head 2025-08-26T19:37:19.7254035Z * [new branch] gh/malfet/463/orig -> origin/gh/malfet/463/orig 2025-08-26T19:37:19.7254963Z * [new branch] gh/malfet/464/base -> origin/gh/malfet/464/base 2025-08-26T19:37:19.7255885Z * [new branch] gh/malfet/464/head -> origin/gh/malfet/464/head 2025-08-26T19:37:19.7256813Z * [new branch] gh/malfet/464/orig -> origin/gh/malfet/464/orig 2025-08-26T19:37:19.7257707Z * [new branch] gh/malfet/465/base -> origin/gh/malfet/465/base 2025-08-26T19:37:19.7259168Z * [new branch] gh/malfet/465/head -> origin/gh/malfet/465/head 2025-08-26T19:37:19.7260092Z * [new branch] gh/malfet/465/orig -> origin/gh/malfet/465/orig 2025-08-26T19:37:19.7261030Z * [new branch] gh/malfet/466/base -> origin/gh/malfet/466/base 2025-08-26T19:37:19.7261953Z * [new branch] gh/malfet/466/head -> origin/gh/malfet/466/head 2025-08-26T19:37:19.7262871Z * [new branch] gh/malfet/466/orig -> origin/gh/malfet/466/orig 2025-08-26T19:37:19.7263862Z * [new branch] gh/malfet/467/base -> origin/gh/malfet/467/base 2025-08-26T19:37:19.7681113Z * [new branch] gh/malfet/467/head -> origin/gh/malfet/467/head 2025-08-26T19:37:19.7681663Z * [new branch] gh/malfet/467/orig -> origin/gh/malfet/467/orig 2025-08-26T19:37:19.7682153Z * [new branch] gh/malfet/468/base -> origin/gh/malfet/468/base 2025-08-26T19:37:19.7682656Z * [new branch] gh/malfet/468/head -> origin/gh/malfet/468/head 2025-08-26T19:37:19.7683138Z * [new branch] gh/malfet/468/orig -> origin/gh/malfet/468/orig 2025-08-26T19:37:19.7683625Z * [new branch] gh/malfet/469/base -> origin/gh/malfet/469/base 2025-08-26T19:37:19.7684102Z * [new branch] gh/malfet/469/head -> origin/gh/malfet/469/head 2025-08-26T19:37:19.7684573Z * [new branch] gh/malfet/469/orig -> origin/gh/malfet/469/orig 2025-08-26T19:37:19.7685053Z * [new branch] gh/malfet/470/base -> origin/gh/malfet/470/base 2025-08-26T19:37:19.7685523Z * [new branch] gh/malfet/470/head -> origin/gh/malfet/470/head 2025-08-26T19:37:19.7686005Z * [new branch] gh/malfet/470/orig -> origin/gh/malfet/470/orig 2025-08-26T19:37:19.7686483Z * [new branch] gh/malfet/471/base -> origin/gh/malfet/471/base 2025-08-26T19:37:19.7686966Z * [new branch] gh/malfet/471/head -> origin/gh/malfet/471/head 2025-08-26T19:37:19.7687595Z * [new branch] gh/malfet/471/orig -> origin/gh/malfet/471/orig 2025-08-26T19:37:19.7688072Z * [new branch] gh/malfet/472/base -> origin/gh/malfet/472/base 2025-08-26T19:37:19.7688555Z * [new branch] gh/malfet/472/head -> origin/gh/malfet/472/head 2025-08-26T19:37:19.7689051Z * [new branch] gh/malfet/472/orig -> origin/gh/malfet/472/orig 2025-08-26T19:37:19.7689523Z * [new branch] gh/malfet/473/base -> origin/gh/malfet/473/base 2025-08-26T19:37:19.7690008Z * [new branch] gh/malfet/473/head -> origin/gh/malfet/473/head 2025-08-26T19:37:19.7690520Z * [new branch] gh/malfet/473/orig -> origin/gh/malfet/473/orig 2025-08-26T19:37:19.7691448Z * [new branch] gh/malfet/474/base -> origin/gh/malfet/474/base 2025-08-26T19:37:19.7692373Z * [new branch] gh/malfet/474/head -> origin/gh/malfet/474/head 2025-08-26T19:37:19.7692888Z * [new branch] gh/malfet/474/orig -> origin/gh/malfet/474/orig 2025-08-26T19:37:19.7693371Z * [new branch] gh/malfet/475/base -> origin/gh/malfet/475/base 2025-08-26T19:37:19.7693850Z * [new branch] gh/malfet/475/head -> origin/gh/malfet/475/head 2025-08-26T19:37:19.7694330Z * [new branch] gh/malfet/475/orig -> origin/gh/malfet/475/orig 2025-08-26T19:37:19.7694810Z * [new branch] gh/malfet/476/base -> origin/gh/malfet/476/base 2025-08-26T19:37:19.7695292Z * [new branch] gh/malfet/476/head -> origin/gh/malfet/476/head 2025-08-26T19:37:19.7695774Z * [new branch] gh/malfet/476/orig -> origin/gh/malfet/476/orig 2025-08-26T19:37:19.7696739Z * [new branch] gh/malfet/477/base -> origin/gh/malfet/477/base 2025-08-26T19:37:19.7697229Z * [new branch] gh/malfet/477/head -> origin/gh/malfet/477/head 2025-08-26T19:37:19.7697712Z * [new branch] gh/malfet/477/orig -> origin/gh/malfet/477/orig 2025-08-26T19:37:19.7698193Z * [new branch] gh/malfet/478/base -> origin/gh/malfet/478/base 2025-08-26T19:37:19.7698673Z * [new branch] gh/malfet/478/head -> origin/gh/malfet/478/head 2025-08-26T19:37:19.7699156Z * [new branch] gh/malfet/478/orig -> origin/gh/malfet/478/orig 2025-08-26T19:37:19.7699633Z * [new branch] gh/malfet/479/base -> origin/gh/malfet/479/base 2025-08-26T19:37:19.7700110Z * [new branch] gh/malfet/479/head -> origin/gh/malfet/479/head 2025-08-26T19:37:19.7700589Z * [new branch] gh/malfet/479/orig -> origin/gh/malfet/479/orig 2025-08-26T19:37:19.7701069Z * [new branch] gh/malfet/480/base -> origin/gh/malfet/480/base 2025-08-26T19:37:19.7701557Z * [new branch] gh/malfet/480/head -> origin/gh/malfet/480/head 2025-08-26T19:37:19.7702035Z * [new branch] gh/malfet/480/orig -> origin/gh/malfet/480/orig 2025-08-26T19:37:19.7702509Z * [new branch] gh/malfet/481/base -> origin/gh/malfet/481/base 2025-08-26T19:37:19.7702985Z * [new branch] gh/malfet/481/head -> origin/gh/malfet/481/head 2025-08-26T19:37:19.7703461Z * [new branch] gh/malfet/481/orig -> origin/gh/malfet/481/orig 2025-08-26T19:37:19.7704061Z * [new branch] gh/malfet/482/base -> origin/gh/malfet/482/base 2025-08-26T19:37:19.7704538Z * [new branch] gh/malfet/482/head -> origin/gh/malfet/482/head 2025-08-26T19:37:19.7705016Z * [new branch] gh/malfet/482/orig -> origin/gh/malfet/482/orig 2025-08-26T19:37:19.7705517Z * [new branch] gh/malfet/483/base -> origin/gh/malfet/483/base 2025-08-26T19:37:19.8137948Z * [new branch] gh/malfet/483/head -> origin/gh/malfet/483/head 2025-08-26T19:37:19.8138979Z * [new branch] gh/malfet/483/orig -> origin/gh/malfet/483/orig 2025-08-26T19:37:19.8139890Z * [new branch] gh/malfet/484/base -> origin/gh/malfet/484/base 2025-08-26T19:37:19.8140819Z * [new branch] gh/malfet/484/head -> origin/gh/malfet/484/head 2025-08-26T19:37:19.8141751Z * [new branch] gh/malfet/484/orig -> origin/gh/malfet/484/orig 2025-08-26T19:37:19.8142674Z * [new branch] gh/malfet/485/base -> origin/gh/malfet/485/base 2025-08-26T19:37:19.8143648Z * [new branch] gh/malfet/485/head -> origin/gh/malfet/485/head 2025-08-26T19:37:19.8144573Z * [new branch] gh/malfet/485/orig -> origin/gh/malfet/485/orig 2025-08-26T19:37:19.8145475Z * [new branch] gh/malfet/486/base -> origin/gh/malfet/486/base 2025-08-26T19:37:19.8146412Z * [new branch] gh/malfet/486/head -> origin/gh/malfet/486/head 2025-08-26T19:37:19.8147330Z * [new branch] gh/malfet/486/orig -> origin/gh/malfet/486/orig 2025-08-26T19:37:19.8148145Z * [new branch] gh/malfet/487/base -> origin/gh/malfet/487/base 2025-08-26T19:37:19.8148636Z * [new branch] gh/malfet/487/head -> origin/gh/malfet/487/head 2025-08-26T19:37:19.8149106Z * [new branch] gh/malfet/487/orig -> origin/gh/malfet/487/orig 2025-08-26T19:37:19.8149578Z * [new branch] gh/malfet/488/base -> origin/gh/malfet/488/base 2025-08-26T19:37:19.8150049Z * [new branch] gh/malfet/488/head -> origin/gh/malfet/488/head 2025-08-26T19:37:19.8150996Z * [new branch] gh/malfet/488/orig -> origin/gh/malfet/488/orig 2025-08-26T19:37:19.8151474Z * [new branch] gh/malfet/489/base -> origin/gh/malfet/489/base 2025-08-26T19:37:19.8151949Z * [new branch] gh/malfet/489/head -> origin/gh/malfet/489/head 2025-08-26T19:37:19.8152429Z * [new branch] gh/malfet/489/orig -> origin/gh/malfet/489/orig 2025-08-26T19:37:19.8153104Z * [new branch] gh/malfet/490/base -> origin/gh/malfet/490/base 2025-08-26T19:37:19.8154009Z * [new branch] gh/malfet/490/head -> origin/gh/malfet/490/head 2025-08-26T19:37:19.8154741Z * [new branch] gh/malfet/490/orig -> origin/gh/malfet/490/orig 2025-08-26T19:37:19.8155216Z * [new branch] gh/malfet/491/base -> origin/gh/malfet/491/base 2025-08-26T19:37:19.8155698Z * [new branch] gh/malfet/491/head -> origin/gh/malfet/491/head 2025-08-26T19:37:19.8156180Z * [new branch] gh/malfet/491/orig -> origin/gh/malfet/491/orig 2025-08-26T19:37:19.8156664Z * [new branch] gh/malfet/492/base -> origin/gh/malfet/492/base 2025-08-26T19:37:19.8157134Z * [new branch] gh/malfet/492/head -> origin/gh/malfet/492/head 2025-08-26T19:37:19.8157624Z * [new branch] gh/malfet/492/orig -> origin/gh/malfet/492/orig 2025-08-26T19:37:19.8158108Z * [new branch] gh/malfet/493/base -> origin/gh/malfet/493/base 2025-08-26T19:37:19.8158588Z * [new branch] gh/malfet/493/head -> origin/gh/malfet/493/head 2025-08-26T19:37:19.8159067Z * [new branch] gh/malfet/493/orig -> origin/gh/malfet/493/orig 2025-08-26T19:37:19.8159899Z * [new branch] gh/malfet/494/base -> origin/gh/malfet/494/base 2025-08-26T19:37:19.8160822Z * [new branch] gh/malfet/494/head -> origin/gh/malfet/494/head 2025-08-26T19:37:19.8161333Z * [new branch] gh/malfet/494/orig -> origin/gh/malfet/494/orig 2025-08-26T19:37:19.8161926Z * [new branch] gh/malfet/495/base -> origin/gh/malfet/495/base 2025-08-26T19:37:19.8162422Z * [new branch] gh/malfet/495/head -> origin/gh/malfet/495/head 2025-08-26T19:37:19.8162906Z * [new branch] gh/malfet/495/orig -> origin/gh/malfet/495/orig 2025-08-26T19:37:19.8163399Z * [new branch] gh/malfet/496/base -> origin/gh/malfet/496/base 2025-08-26T19:37:19.8163887Z * [new branch] gh/malfet/496/head -> origin/gh/malfet/496/head 2025-08-26T19:37:19.8164368Z * [new branch] gh/malfet/496/orig -> origin/gh/malfet/496/orig 2025-08-26T19:37:19.8164853Z * [new branch] gh/malfet/497/base -> origin/gh/malfet/497/base 2025-08-26T19:37:19.8165324Z * [new branch] gh/malfet/497/head -> origin/gh/malfet/497/head 2025-08-26T19:37:19.8166104Z * [new branch] gh/malfet/497/orig -> origin/gh/malfet/497/orig 2025-08-26T19:37:19.8167043Z * [new branch] gh/malfet/498/base -> origin/gh/malfet/498/base 2025-08-26T19:37:19.8167629Z * [new branch] gh/malfet/498/head -> origin/gh/malfet/498/head 2025-08-26T19:37:19.8168116Z * [new branch] gh/malfet/498/orig -> origin/gh/malfet/498/orig 2025-08-26T19:37:19.8602184Z * [new branch] gh/malfet/499/base -> origin/gh/malfet/499/base 2025-08-26T19:37:19.8603109Z * [new branch] gh/malfet/499/head -> origin/gh/malfet/499/head 2025-08-26T19:37:19.8603778Z * [new branch] gh/malfet/499/orig -> origin/gh/malfet/499/orig 2025-08-26T19:37:19.8604256Z * [new branch] gh/malfet/500/base -> origin/gh/malfet/500/base 2025-08-26T19:37:19.8604741Z * [new branch] gh/malfet/500/head -> origin/gh/malfet/500/head 2025-08-26T19:37:19.8605764Z * [new branch] gh/malfet/500/orig -> origin/gh/malfet/500/orig 2025-08-26T19:37:19.8606253Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-08-26T19:37:19.8606748Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-08-26T19:37:19.8607285Z * [new branch] gh/manuelcandales/10/base -> origin/gh/manuelcandales/10/base 2025-08-26T19:37:19.8607865Z * [new branch] gh/manuelcandales/10/head -> origin/gh/manuelcandales/10/head 2025-08-26T19:37:19.8608734Z * [new branch] gh/manuelcandales/10/orig -> origin/gh/manuelcandales/10/orig 2025-08-26T19:37:19.8609620Z * [new branch] gh/manuelcandales/11/base -> origin/gh/manuelcandales/11/base 2025-08-26T19:37:19.8610184Z * [new branch] gh/manuelcandales/11/head -> origin/gh/manuelcandales/11/head 2025-08-26T19:37:19.8610745Z * [new branch] gh/manuelcandales/11/orig -> origin/gh/manuelcandales/11/orig 2025-08-26T19:37:19.8611315Z * [new branch] gh/manuelcandales/9/base -> origin/gh/manuelcandales/9/base 2025-08-26T19:37:19.8611876Z * [new branch] gh/manuelcandales/9/head -> origin/gh/manuelcandales/9/head 2025-08-26T19:37:19.8612422Z * [new branch] gh/manuelcandales/9/orig -> origin/gh/manuelcandales/9/orig 2025-08-26T19:37:19.8612934Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-08-26T19:37:19.8613425Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-08-26T19:37:19.8613938Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-08-26T19:37:19.8614761Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-08-26T19:37:19.8615546Z * [new branch] gh/masnesral/232/base -> origin/gh/masnesral/232/base 2025-08-26T19:37:19.8616066Z * [new branch] gh/masnesral/232/head -> origin/gh/masnesral/232/head 2025-08-26T19:37:19.8616688Z * [new branch] gh/masnesral/232/orig -> origin/gh/masnesral/232/orig 2025-08-26T19:37:19.8617197Z * [new branch] gh/masnesral/233/base -> origin/gh/masnesral/233/base 2025-08-26T19:37:19.8617700Z * [new branch] gh/masnesral/233/head -> origin/gh/masnesral/233/head 2025-08-26T19:37:19.8618210Z * [new branch] gh/masnesral/233/orig -> origin/gh/masnesral/233/orig 2025-08-26T19:37:19.8618722Z * [new branch] gh/masnesral/234/base -> origin/gh/masnesral/234/base 2025-08-26T19:37:19.8619226Z * [new branch] gh/masnesral/234/head -> origin/gh/masnesral/234/head 2025-08-26T19:37:19.8619753Z * [new branch] gh/masnesral/234/orig -> origin/gh/masnesral/234/orig 2025-08-26T19:37:19.8620495Z * [new branch] gh/masnesral/235/base -> origin/gh/masnesral/235/base 2025-08-26T19:37:19.8621468Z * [new branch] gh/masnesral/235/head -> origin/gh/masnesral/235/head 2025-08-26T19:37:19.8621999Z * [new branch] gh/masnesral/235/orig -> origin/gh/masnesral/235/orig 2025-08-26T19:37:19.8622496Z * [new branch] gh/masnesral/236/base -> origin/gh/masnesral/236/base 2025-08-26T19:37:19.8623021Z * [new branch] gh/masnesral/236/head -> origin/gh/masnesral/236/head 2025-08-26T19:37:19.8623530Z * [new branch] gh/masnesral/236/orig -> origin/gh/masnesral/236/orig 2025-08-26T19:37:19.8624105Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-08-26T19:37:19.8624623Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-08-26T19:37:19.8625118Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-08-26T19:37:19.8626054Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-08-26T19:37:19.8626966Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-08-26T19:37:19.8627632Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-08-26T19:37:19.8628123Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-08-26T19:37:19.8628623Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-08-26T19:37:19.8629114Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-08-26T19:37:19.8629601Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-08-26T19:37:19.8630100Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-08-26T19:37:19.9040756Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-08-26T19:37:19.9041292Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-08-26T19:37:19.9041810Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-08-26T19:37:19.9042302Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-08-26T19:37:19.9042866Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-08-26T19:37:19.9043474Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-08-26T19:37:19.9044480Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-08-26T19:37:19.9045331Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-08-26T19:37:19.9045933Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-08-26T19:37:19.9046548Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-08-26T19:37:19.9047274Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-08-26T19:37:19.9047895Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-08-26T19:37:19.9048497Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-08-26T19:37:19.9049089Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-08-26T19:37:19.9049809Z * [new branch] gh/mikaylagawarecki/317/base -> origin/gh/mikaylagawarecki/317/base 2025-08-26T19:37:19.9050915Z * [new branch] gh/mikaylagawarecki/317/head -> origin/gh/mikaylagawarecki/317/head 2025-08-26T19:37:19.9051513Z * [new branch] gh/mikaylagawarecki/317/orig -> origin/gh/mikaylagawarecki/317/orig 2025-08-26T19:37:19.9052127Z * [new branch] gh/mikaylagawarecki/320/base -> origin/gh/mikaylagawarecki/320/base 2025-08-26T19:37:19.9052724Z * [new branch] gh/mikaylagawarecki/320/head -> origin/gh/mikaylagawarecki/320/head 2025-08-26T19:37:19.9053329Z * [new branch] gh/mikaylagawarecki/320/orig -> origin/gh/mikaylagawarecki/320/orig 2025-08-26T19:37:19.9053934Z * [new branch] gh/mikaylagawarecki/329/base -> origin/gh/mikaylagawarecki/329/base 2025-08-26T19:37:19.9054530Z * [new branch] gh/mikaylagawarecki/329/head -> origin/gh/mikaylagawarecki/329/head 2025-08-26T19:37:19.9055130Z * [new branch] gh/mikaylagawarecki/329/orig -> origin/gh/mikaylagawarecki/329/orig 2025-08-26T19:37:19.9055955Z * [new branch] gh/mikaylagawarecki/330/base -> origin/gh/mikaylagawarecki/330/base 2025-08-26T19:37:19.9056933Z * [new branch] gh/mikaylagawarecki/330/head -> origin/gh/mikaylagawarecki/330/head 2025-08-26T19:37:19.9057966Z * [new branch] gh/mikaylagawarecki/330/orig -> origin/gh/mikaylagawarecki/330/orig 2025-08-26T19:37:19.9058588Z * [new branch] gh/mikaylagawarecki/331/base -> origin/gh/mikaylagawarecki/331/base 2025-08-26T19:37:19.9059188Z * [new branch] gh/mikaylagawarecki/331/head -> origin/gh/mikaylagawarecki/331/head 2025-08-26T19:37:19.9059778Z * [new branch] gh/mikaylagawarecki/331/orig -> origin/gh/mikaylagawarecki/331/orig 2025-08-26T19:37:19.9060378Z * [new branch] gh/mikaylagawarecki/332/base -> origin/gh/mikaylagawarecki/332/base 2025-08-26T19:37:19.9060972Z * [new branch] gh/mikaylagawarecki/332/head -> origin/gh/mikaylagawarecki/332/head 2025-08-26T19:37:19.9061765Z * [new branch] gh/mikaylagawarecki/332/orig -> origin/gh/mikaylagawarecki/332/orig 2025-08-26T19:37:19.9062811Z * [new branch] gh/mikaylagawarecki/333/base -> origin/gh/mikaylagawarecki/333/base 2025-08-26T19:37:19.9063424Z * [new branch] gh/mikaylagawarecki/333/head -> origin/gh/mikaylagawarecki/333/head 2025-08-26T19:37:19.9064111Z * [new branch] gh/mikaylagawarecki/333/orig -> origin/gh/mikaylagawarecki/333/orig 2025-08-26T19:37:19.9064702Z * [new branch] gh/mikaylagawarecki/334/base -> origin/gh/mikaylagawarecki/334/base 2025-08-26T19:37:19.9065303Z * [new branch] gh/mikaylagawarecki/334/head -> origin/gh/mikaylagawarecki/334/head 2025-08-26T19:37:19.9065909Z * [new branch] gh/mikaylagawarecki/334/orig -> origin/gh/mikaylagawarecki/334/orig 2025-08-26T19:37:19.9066506Z * [new branch] gh/mikaylagawarecki/335/base -> origin/gh/mikaylagawarecki/335/base 2025-08-26T19:37:19.9067122Z * [new branch] gh/mikaylagawarecki/335/head -> origin/gh/mikaylagawarecki/335/head 2025-08-26T19:37:19.9068062Z * [new branch] gh/mikaylagawarecki/335/orig -> origin/gh/mikaylagawarecki/335/orig 2025-08-26T19:37:19.9068946Z * [new branch] gh/mikaylagawarecki/336/base -> origin/gh/mikaylagawarecki/336/base 2025-08-26T19:37:19.9499284Z * [new branch] gh/mikaylagawarecki/336/head -> origin/gh/mikaylagawarecki/336/head 2025-08-26T19:37:19.9499914Z * [new branch] gh/mikaylagawarecki/336/orig -> origin/gh/mikaylagawarecki/336/orig 2025-08-26T19:37:19.9500535Z * [new branch] gh/mikaylagawarecki/337/base -> origin/gh/mikaylagawarecki/337/base 2025-08-26T19:37:19.9501134Z * [new branch] gh/mikaylagawarecki/337/head -> origin/gh/mikaylagawarecki/337/head 2025-08-26T19:37:19.9501739Z * [new branch] gh/mikaylagawarecki/337/orig -> origin/gh/mikaylagawarecki/337/orig 2025-08-26T19:37:19.9502296Z * [new branch] gh/mlazos/1/base -> origin/gh/mlazos/1/base 2025-08-26T19:37:19.9502779Z * [new branch] gh/mlazos/1/head -> origin/gh/mlazos/1/head 2025-08-26T19:37:19.9503252Z * [new branch] gh/mlazos/1/orig -> origin/gh/mlazos/1/orig 2025-08-26T19:37:19.9504138Z * [new branch] gh/mlazos/10/base -> origin/gh/mlazos/10/base 2025-08-26T19:37:19.9504871Z * [new branch] gh/mlazos/10/head -> origin/gh/mlazos/10/head 2025-08-26T19:37:19.9505351Z * [new branch] gh/mlazos/10/orig -> origin/gh/mlazos/10/orig 2025-08-26T19:37:19.9505818Z * [new branch] gh/mlazos/11/base -> origin/gh/mlazos/11/base 2025-08-26T19:37:19.9506292Z * [new branch] gh/mlazos/11/head -> origin/gh/mlazos/11/head 2025-08-26T19:37:19.9506762Z * [new branch] gh/mlazos/11/orig -> origin/gh/mlazos/11/orig 2025-08-26T19:37:19.9507226Z * [new branch] gh/mlazos/12/base -> origin/gh/mlazos/12/base 2025-08-26T19:37:19.9507695Z * [new branch] gh/mlazos/12/head -> origin/gh/mlazos/12/head 2025-08-26T19:37:19.9508156Z * [new branch] gh/mlazos/12/orig -> origin/gh/mlazos/12/orig 2025-08-26T19:37:19.9509056Z * [new branch] gh/mlazos/13/base -> origin/gh/mlazos/13/base 2025-08-26T19:37:19.9509713Z * [new branch] gh/mlazos/13/head -> origin/gh/mlazos/13/head 2025-08-26T19:37:19.9510390Z * [new branch] gh/mlazos/13/orig -> origin/gh/mlazos/13/orig 2025-08-26T19:37:19.9511115Z * [new branch] gh/mlazos/14/base -> origin/gh/mlazos/14/base 2025-08-26T19:37:19.9511574Z * [new branch] gh/mlazos/14/head -> origin/gh/mlazos/14/head 2025-08-26T19:37:19.9512044Z * [new branch] gh/mlazos/14/orig -> origin/gh/mlazos/14/orig 2025-08-26T19:37:19.9512508Z * [new branch] gh/mlazos/15/base -> origin/gh/mlazos/15/base 2025-08-26T19:37:19.9512989Z * [new branch] gh/mlazos/15/head -> origin/gh/mlazos/15/head 2025-08-26T19:37:19.9513462Z * [new branch] gh/mlazos/15/orig -> origin/gh/mlazos/15/orig 2025-08-26T19:37:19.9513934Z * [new branch] gh/mlazos/16/base -> origin/gh/mlazos/16/base 2025-08-26T19:37:19.9514412Z * [new branch] gh/mlazos/16/head -> origin/gh/mlazos/16/head 2025-08-26T19:37:19.9514882Z * [new branch] gh/mlazos/16/orig -> origin/gh/mlazos/16/orig 2025-08-26T19:37:19.9515353Z * [new branch] gh/mlazos/17/base -> origin/gh/mlazos/17/base 2025-08-26T19:37:19.9516112Z * [new branch] gh/mlazos/17/head -> origin/gh/mlazos/17/head 2025-08-26T19:37:19.9516890Z * [new branch] gh/mlazos/17/orig -> origin/gh/mlazos/17/orig 2025-08-26T19:37:19.9517364Z * [new branch] gh/mlazos/2/base -> origin/gh/mlazos/2/base 2025-08-26T19:37:19.9517822Z * [new branch] gh/mlazos/2/head -> origin/gh/mlazos/2/head 2025-08-26T19:37:19.9518285Z * [new branch] gh/mlazos/2/orig -> origin/gh/mlazos/2/orig 2025-08-26T19:37:19.9518744Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-08-26T19:37:19.9519303Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-08-26T19:37:19.9519779Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-08-26T19:37:19.9520229Z * [new branch] gh/mlazos/4/base -> origin/gh/mlazos/4/base 2025-08-26T19:37:19.9520703Z * [new branch] gh/mlazos/4/head -> origin/gh/mlazos/4/head 2025-08-26T19:37:19.9521163Z * [new branch] gh/mlazos/4/orig -> origin/gh/mlazos/4/orig 2025-08-26T19:37:19.9521803Z * [new branch] gh/mlazos/5/base -> origin/gh/mlazos/5/base 2025-08-26T19:37:19.9522641Z * [new branch] gh/mlazos/5/head -> origin/gh/mlazos/5/head 2025-08-26T19:37:19.9523146Z * [new branch] gh/mlazos/5/orig -> origin/gh/mlazos/5/orig 2025-08-26T19:37:19.9523616Z * [new branch] gh/mlazos/6/base -> origin/gh/mlazos/6/base 2025-08-26T19:37:19.9524073Z * [new branch] gh/mlazos/6/head -> origin/gh/mlazos/6/head 2025-08-26T19:37:19.9524543Z * [new branch] gh/mlazos/6/orig -> origin/gh/mlazos/6/orig 2025-08-26T19:37:19.9524994Z * [new branch] gh/mlazos/7/base -> origin/gh/mlazos/7/base 2025-08-26T19:37:19.9962683Z * [new branch] gh/mlazos/7/head -> origin/gh/mlazos/7/head 2025-08-26T19:37:19.9963182Z * [new branch] gh/mlazos/7/orig -> origin/gh/mlazos/7/orig 2025-08-26T19:37:19.9964239Z * [new branch] gh/mlazos/8/base -> origin/gh/mlazos/8/base 2025-08-26T19:37:19.9965119Z * [new branch] gh/mlazos/8/head -> origin/gh/mlazos/8/head 2025-08-26T19:37:19.9966086Z * [new branch] gh/mlazos/8/orig -> origin/gh/mlazos/8/orig 2025-08-26T19:37:19.9966598Z * [new branch] gh/mlazos/9/base -> origin/gh/mlazos/9/base 2025-08-26T19:37:19.9967071Z * [new branch] gh/mlazos/9/head -> origin/gh/mlazos/9/head 2025-08-26T19:37:19.9967530Z * [new branch] gh/mlazos/9/orig -> origin/gh/mlazos/9/orig 2025-08-26T19:37:19.9968006Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-08-26T19:37:19.9968480Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-08-26T19:37:19.9968977Z * [new branch] gh/muchulee8/62/base -> origin/gh/muchulee8/62/base 2025-08-26T19:37:19.9970547Z * [new branch] gh/muchulee8/62/head -> origin/gh/muchulee8/62/head 2025-08-26T19:37:19.9971147Z * [new branch] gh/muchulee8/62/orig -> origin/gh/muchulee8/62/orig 2025-08-26T19:37:19.9971665Z * [new branch] gh/muchulee8/63/base -> origin/gh/muchulee8/63/base 2025-08-26T19:37:19.9972163Z * [new branch] gh/muchulee8/63/head -> origin/gh/muchulee8/63/head 2025-08-26T19:37:19.9972673Z * [new branch] gh/muchulee8/63/orig -> origin/gh/muchulee8/63/orig 2025-08-26T19:37:19.9973195Z * [new branch] gh/muchulee8/64/base -> origin/gh/muchulee8/64/base 2025-08-26T19:37:19.9973683Z * [new branch] gh/muchulee8/64/head -> origin/gh/muchulee8/64/head 2025-08-26T19:37:19.9974175Z * [new branch] gh/muchulee8/64/orig -> origin/gh/muchulee8/64/orig 2025-08-26T19:37:19.9974659Z * [new branch] gh/muchulee8/65/base -> origin/gh/muchulee8/65/base 2025-08-26T19:37:19.9975158Z * [new branch] gh/muchulee8/65/head -> origin/gh/muchulee8/65/head 2025-08-26T19:37:19.9976623Z * [new branch] gh/muchulee8/65/orig -> origin/gh/muchulee8/65/orig 2025-08-26T19:37:19.9977155Z * [new branch] gh/naveenthangudu/1/base -> origin/gh/naveenthangudu/1/base 2025-08-26T19:37:19.9977833Z * [new branch] gh/naveenthangudu/1/head -> origin/gh/naveenthangudu/1/head 2025-08-26T19:37:19.9978395Z * [new branch] gh/naveenthangudu/1/orig -> origin/gh/naveenthangudu/1/orig 2025-08-26T19:37:19.9978951Z * [new branch] gh/naveenthangudu/2/base -> origin/gh/naveenthangudu/2/base 2025-08-26T19:37:19.9979506Z * [new branch] gh/naveenthangudu/2/head -> origin/gh/naveenthangudu/2/head 2025-08-26T19:37:19.9980054Z * [new branch] gh/naveenthangudu/2/orig -> origin/gh/naveenthangudu/2/orig 2025-08-26T19:37:19.9980610Z * [new branch] gh/naveenthangudu/3/base -> origin/gh/naveenthangudu/3/base 2025-08-26T19:37:19.9982155Z * [new branch] gh/naveenthangudu/3/head -> origin/gh/naveenthangudu/3/head 2025-08-26T19:37:19.9982728Z * [new branch] gh/naveenthangudu/3/orig -> origin/gh/naveenthangudu/3/orig 2025-08-26T19:37:19.9983302Z * [new branch] gh/naveenthangudu/4/base -> origin/gh/naveenthangudu/4/base 2025-08-26T19:37:19.9983921Z * [new branch] gh/naveenthangudu/4/head -> origin/gh/naveenthangudu/4/head 2025-08-26T19:37:19.9984484Z * [new branch] gh/naveenthangudu/4/orig -> origin/gh/naveenthangudu/4/orig 2025-08-26T19:37:19.9985035Z * [new branch] gh/naveenthangudu/5/base -> origin/gh/naveenthangudu/5/base 2025-08-26T19:37:19.9985607Z * [new branch] gh/naveenthangudu/5/head -> origin/gh/naveenthangudu/5/head 2025-08-26T19:37:19.9986165Z * [new branch] gh/naveenthangudu/5/orig -> origin/gh/naveenthangudu/5/orig 2025-08-26T19:37:19.9987686Z * [new branch] gh/naveenthangudu/6/base -> origin/gh/naveenthangudu/6/base 2025-08-26T19:37:19.9988261Z * [new branch] gh/naveenthangudu/6/head -> origin/gh/naveenthangudu/6/head 2025-08-26T19:37:19.9989195Z * [new branch] gh/naveenthangudu/6/orig -> origin/gh/naveenthangudu/6/orig 2025-08-26T19:37:19.9989726Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-08-26T19:37:19.9990198Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-08-26T19:37:19.9990680Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-08-26T19:37:19.9991154Z * [new branch] gh/oulgen/44/base -> origin/gh/oulgen/44/base 2025-08-26T19:37:19.9991617Z * [new branch] gh/oulgen/44/head -> origin/gh/oulgen/44/head 2025-08-26T19:37:19.9992089Z * [new branch] gh/oulgen/44/orig -> origin/gh/oulgen/44/orig 2025-08-26T19:37:20.0435621Z * [new branch] gh/oulgen/45/base -> origin/gh/oulgen/45/base 2025-08-26T19:37:20.0436155Z * [new branch] gh/oulgen/45/head -> origin/gh/oulgen/45/head 2025-08-26T19:37:20.0436669Z * [new branch] gh/oulgen/45/orig -> origin/gh/oulgen/45/orig 2025-08-26T19:37:20.0437144Z * [new branch] gh/oulgen/46/base -> origin/gh/oulgen/46/base 2025-08-26T19:37:20.0437628Z * [new branch] gh/oulgen/46/head -> origin/gh/oulgen/46/head 2025-08-26T19:37:20.0438100Z * [new branch] gh/oulgen/46/orig -> origin/gh/oulgen/46/orig 2025-08-26T19:37:20.0438567Z * [new branch] gh/oulgen/47/base -> origin/gh/oulgen/47/base 2025-08-26T19:37:20.0439044Z * [new branch] gh/oulgen/47/head -> origin/gh/oulgen/47/head 2025-08-26T19:37:20.0439505Z * [new branch] gh/oulgen/47/orig -> origin/gh/oulgen/47/orig 2025-08-26T19:37:20.0439989Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-08-26T19:37:20.0440461Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-08-26T19:37:20.0440940Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-08-26T19:37:20.0441559Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-08-26T19:37:20.0442035Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-08-26T19:37:20.0442509Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-08-26T19:37:20.0442979Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-08-26T19:37:20.0443473Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-08-26T19:37:20.0443942Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-08-26T19:37:20.0444405Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-08-26T19:37:20.0444889Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-08-26T19:37:20.0445351Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-08-26T19:37:20.0445938Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-08-26T19:37:20.0446562Z * [new branch] gh/raymo/refresh-script -> origin/gh/raymo/refresh-script 2025-08-26T19:37:20.0447063Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-08-26T19:37:20.0447521Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-08-26T19:37:20.0447973Z * [new branch] gh/rec/153/base -> origin/gh/rec/153/base 2025-08-26T19:37:20.0448425Z * [new branch] gh/rec/153/head -> origin/gh/rec/153/head 2025-08-26T19:37:20.0448867Z * [new branch] gh/rec/153/orig -> origin/gh/rec/153/orig 2025-08-26T19:37:20.0449414Z * [new branch] gh/rec/154/base -> origin/gh/rec/154/base 2025-08-26T19:37:20.0449879Z * [new branch] gh/rec/154/head -> origin/gh/rec/154/head 2025-08-26T19:37:20.0450327Z * [new branch] gh/rec/154/orig -> origin/gh/rec/154/orig 2025-08-26T19:37:20.0450782Z * [new branch] gh/rec/156/base -> origin/gh/rec/156/base 2025-08-26T19:37:20.0451228Z * [new branch] gh/rec/156/head -> origin/gh/rec/156/head 2025-08-26T19:37:20.0451689Z * [new branch] gh/rec/156/orig -> origin/gh/rec/156/orig 2025-08-26T19:37:20.0452142Z * [new branch] gh/rec/158/base -> origin/gh/rec/158/base 2025-08-26T19:37:20.0452581Z * [new branch] gh/rec/158/head -> origin/gh/rec/158/head 2025-08-26T19:37:20.0454263Z * [new branch] gh/rec/158/orig -> origin/gh/rec/158/orig 2025-08-26T19:37:20.0454709Z * [new branch] gh/rec/159/base -> origin/gh/rec/159/base 2025-08-26T19:37:20.0455154Z * [new branch] gh/rec/159/head -> origin/gh/rec/159/head 2025-08-26T19:37:20.0455604Z * [new branch] gh/rec/160/base -> origin/gh/rec/160/base 2025-08-26T19:37:20.0456049Z * [new branch] gh/rec/160/head -> origin/gh/rec/160/head 2025-08-26T19:37:20.0456504Z * [new branch] gh/rec/160/orig -> origin/gh/rec/160/orig 2025-08-26T19:37:20.0456944Z * [new branch] gh/rec/161/base -> origin/gh/rec/161/base 2025-08-26T19:37:20.0457388Z * [new branch] gh/rec/161/head -> origin/gh/rec/161/head 2025-08-26T19:37:20.0457828Z * [new branch] gh/rec/161/orig -> origin/gh/rec/161/orig 2025-08-26T19:37:20.0458270Z * [new branch] gh/rec/162/base -> origin/gh/rec/162/base 2025-08-26T19:37:20.0459710Z * [new branch] gh/rec/162/head -> origin/gh/rec/162/head 2025-08-26T19:37:20.0460165Z * [new branch] gh/rec/162/orig -> origin/gh/rec/162/orig 2025-08-26T19:37:20.0460743Z * [new branch] gh/rec/163/base -> origin/gh/rec/163/base 2025-08-26T19:37:20.0884219Z * [new branch] gh/rec/163/head -> origin/gh/rec/163/head 2025-08-26T19:37:20.0884758Z * [new branch] gh/rec/163/orig -> origin/gh/rec/163/orig 2025-08-26T19:37:20.0885218Z * [new branch] gh/rec/164/base -> origin/gh/rec/164/base 2025-08-26T19:37:20.0885666Z * [new branch] gh/rec/164/head -> origin/gh/rec/164/head 2025-08-26T19:37:20.0886119Z * [new branch] gh/rec/164/orig -> origin/gh/rec/164/orig 2025-08-26T19:37:20.0886563Z * [new branch] gh/rec/165/base -> origin/gh/rec/165/base 2025-08-26T19:37:20.0887020Z * [new branch] gh/rec/165/head -> origin/gh/rec/165/head 2025-08-26T19:37:20.0887470Z * [new branch] gh/rec/165/orig -> origin/gh/rec/165/orig 2025-08-26T19:37:20.0887980Z * [new branch] gh/robert-hardwick/1/base -> origin/gh/robert-hardwick/1/base 2025-08-26T19:37:20.0888559Z * [new branch] gh/robert-hardwick/1/head -> origin/gh/robert-hardwick/1/head 2025-08-26T19:37:20.0889120Z * [new branch] gh/robert-hardwick/1/orig -> origin/gh/robert-hardwick/1/orig 2025-08-26T19:37:20.0889661Z * [new branch] gh/robert-hardwick/2/base -> origin/gh/robert-hardwick/2/base 2025-08-26T19:37:20.0890216Z * [new branch] gh/robert-hardwick/2/head -> origin/gh/robert-hardwick/2/head 2025-08-26T19:37:20.0890761Z * [new branch] gh/robert-hardwick/2/orig -> origin/gh/robert-hardwick/2/orig 2025-08-26T19:37:20.0891312Z * [new branch] gh/robert-hardwick/3/base -> origin/gh/robert-hardwick/3/base 2025-08-26T19:37:20.0892444Z * [new branch] gh/robert-hardwick/3/head -> origin/gh/robert-hardwick/3/head 2025-08-26T19:37:20.0892994Z * [new branch] gh/robert-hardwick/3/orig -> origin/gh/robert-hardwick/3/orig 2025-08-26T19:37:20.0893550Z * [new branch] gh/robert-hardwick/4/base -> origin/gh/robert-hardwick/4/base 2025-08-26T19:37:20.0894110Z * [new branch] gh/robert-hardwick/4/head -> origin/gh/robert-hardwick/4/head 2025-08-26T19:37:20.0894662Z * [new branch] gh/robert-hardwick/4/orig -> origin/gh/robert-hardwick/4/orig 2025-08-26T19:37:20.0895176Z * [new branch] gh/rtimpe/1/base -> origin/gh/rtimpe/1/base 2025-08-26T19:37:20.0895663Z * [new branch] gh/rtimpe/1/head -> origin/gh/rtimpe/1/head 2025-08-26T19:37:20.0896136Z * [new branch] gh/rtimpe/10/base -> origin/gh/rtimpe/10/base 2025-08-26T19:37:20.0896617Z * [new branch] gh/rtimpe/10/head -> origin/gh/rtimpe/10/head 2025-08-26T19:37:20.0897091Z * [new branch] gh/rtimpe/10/orig -> origin/gh/rtimpe/10/orig 2025-08-26T19:37:20.0897577Z * [new branch] gh/rtimpe/11/base -> origin/gh/rtimpe/11/base 2025-08-26T19:37:20.0898047Z * [new branch] gh/rtimpe/11/head -> origin/gh/rtimpe/11/head 2025-08-26T19:37:20.0898523Z * [new branch] gh/rtimpe/11/orig -> origin/gh/rtimpe/11/orig 2025-08-26T19:37:20.0898987Z * [new branch] gh/rtimpe/12/base -> origin/gh/rtimpe/12/base 2025-08-26T19:37:20.0899467Z * [new branch] gh/rtimpe/12/head -> origin/gh/rtimpe/12/head 2025-08-26T19:37:20.0899930Z * [new branch] gh/rtimpe/12/orig -> origin/gh/rtimpe/12/orig 2025-08-26T19:37:20.0900411Z * [new branch] gh/rtimpe/13/base -> origin/gh/rtimpe/13/base 2025-08-26T19:37:20.0900889Z * [new branch] gh/rtimpe/13/head -> origin/gh/rtimpe/13/head 2025-08-26T19:37:20.0901356Z * [new branch] gh/rtimpe/13/orig -> origin/gh/rtimpe/13/orig 2025-08-26T19:37:20.0901927Z * [new branch] gh/rtimpe/14/base -> origin/gh/rtimpe/14/base 2025-08-26T19:37:20.0902409Z * [new branch] gh/rtimpe/14/head -> origin/gh/rtimpe/14/head 2025-08-26T19:37:20.0902884Z * [new branch] gh/rtimpe/14/orig -> origin/gh/rtimpe/14/orig 2025-08-26T19:37:20.0903362Z * [new branch] gh/rtimpe/2/base -> origin/gh/rtimpe/2/base 2025-08-26T19:37:20.0903951Z * [new branch] gh/rtimpe/2/head -> origin/gh/rtimpe/2/head 2025-08-26T19:37:20.0904426Z * [new branch] gh/rtimpe/3/base -> origin/gh/rtimpe/3/base 2025-08-26T19:37:20.0904893Z * [new branch] gh/rtimpe/3/head -> origin/gh/rtimpe/3/head 2025-08-26T19:37:20.0905367Z * [new branch] gh/rtimpe/4/base -> origin/gh/rtimpe/4/base 2025-08-26T19:37:20.0905832Z * [new branch] gh/rtimpe/4/head -> origin/gh/rtimpe/4/head 2025-08-26T19:37:20.0906310Z * [new branch] gh/rtimpe/6/base -> origin/gh/rtimpe/6/base 2025-08-26T19:37:20.0906777Z * [new branch] gh/rtimpe/6/head -> origin/gh/rtimpe/6/head 2025-08-26T19:37:20.0907232Z * [new branch] gh/rtimpe/6/orig -> origin/gh/rtimpe/6/orig 2025-08-26T19:37:20.0907694Z * [new branch] gh/rtimpe/7/base -> origin/gh/rtimpe/7/base 2025-08-26T19:37:20.1342131Z * [new branch] gh/rtimpe/7/head -> origin/gh/rtimpe/7/head 2025-08-26T19:37:20.1342659Z * [new branch] gh/rtimpe/7/orig -> origin/gh/rtimpe/7/orig 2025-08-26T19:37:20.1343157Z * [new branch] gh/rtimpe/8/base -> origin/gh/rtimpe/8/base 2025-08-26T19:37:20.1343869Z * [new branch] gh/rtimpe/8/head -> origin/gh/rtimpe/8/head 2025-08-26T19:37:20.1344356Z * [new branch] gh/rtimpe/8/orig -> origin/gh/rtimpe/8/orig 2025-08-26T19:37:20.1344817Z * [new branch] gh/rtimpe/9/base -> origin/gh/rtimpe/9/base 2025-08-26T19:37:20.1345295Z * [new branch] gh/rtimpe/9/head -> origin/gh/rtimpe/9/head 2025-08-26T19:37:20.1345765Z * [new branch] gh/rtimpe/9/orig -> origin/gh/rtimpe/9/orig 2025-08-26T19:37:20.1346270Z * [new branch] gh/ruisizhang123/1/base -> origin/gh/ruisizhang123/1/base 2025-08-26T19:37:20.1346817Z * [new branch] gh/ruisizhang123/1/head -> origin/gh/ruisizhang123/1/head 2025-08-26T19:37:20.1347344Z * [new branch] gh/ruisizhang123/1/orig -> origin/gh/ruisizhang123/1/orig 2025-08-26T19:37:20.1356703Z * [new branch] gh/ruisizhang123/4/base -> origin/gh/ruisizhang123/4/base 2025-08-26T19:37:20.1357355Z * [new branch] gh/ruisizhang123/4/head -> origin/gh/ruisizhang123/4/head 2025-08-26T19:37:20.1357916Z * [new branch] gh/ruisizhang123/4/orig -> origin/gh/ruisizhang123/4/orig 2025-08-26T19:37:20.1358464Z * [new branch] gh/ruisizhang123/5/base -> origin/gh/ruisizhang123/5/base 2025-08-26T19:37:20.1358998Z * [new branch] gh/ruisizhang123/5/head -> origin/gh/ruisizhang123/5/head 2025-08-26T19:37:20.1359542Z * [new branch] gh/ruisizhang123/5/orig -> origin/gh/ruisizhang123/5/orig 2025-08-26T19:37:20.1360076Z * [new branch] gh/ruisizhang123/6/base -> origin/gh/ruisizhang123/6/base 2025-08-26T19:37:20.1360626Z * [new branch] gh/ruisizhang123/6/head -> origin/gh/ruisizhang123/6/head 2025-08-26T19:37:20.1361164Z * [new branch] gh/ruisizhang123/6/orig -> origin/gh/ruisizhang123/6/orig 2025-08-26T19:37:20.1361695Z * [new branch] gh/ruisizhang123/7/base -> origin/gh/ruisizhang123/7/base 2025-08-26T19:37:20.1362243Z * [new branch] gh/ruisizhang123/7/head -> origin/gh/ruisizhang123/7/head 2025-08-26T19:37:20.1363469Z * [new branch] gh/ruisizhang123/7/orig -> origin/gh/ruisizhang123/7/orig 2025-08-26T19:37:20.1364037Z * [new branch] gh/ruisizhang123/8/base -> origin/gh/ruisizhang123/8/base 2025-08-26T19:37:20.1364588Z * [new branch] gh/ruisizhang123/8/head -> origin/gh/ruisizhang123/8/head 2025-08-26T19:37:20.1365122Z * [new branch] gh/ruisizhang123/8/orig -> origin/gh/ruisizhang123/8/orig 2025-08-26T19:37:20.1365650Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-08-26T19:37:20.1366126Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-08-26T19:37:20.1366598Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-08-26T19:37:20.1367114Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-08-26T19:37:20.1367634Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-08-26T19:37:20.1368154Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-08-26T19:37:20.1368663Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-08-26T19:37:20.1369188Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-08-26T19:37:20.1369692Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-08-26T19:37:20.1370207Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-08-26T19:37:20.1370716Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-08-26T19:37:20.1371219Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-08-26T19:37:20.1371838Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-08-26T19:37:20.1372359Z * [new branch] gh/seemethere/35/base -> origin/gh/seemethere/35/base 2025-08-26T19:37:20.1372881Z * [new branch] gh/seemethere/35/head -> origin/gh/seemethere/35/head 2025-08-26T19:37:20.1373390Z * [new branch] gh/seemethere/35/orig -> origin/gh/seemethere/35/orig 2025-08-26T19:37:20.1373895Z * [new branch] gh/seemethere/37/base -> origin/gh/seemethere/37/base 2025-08-26T19:37:20.1374405Z * [new branch] gh/seemethere/37/head -> origin/gh/seemethere/37/head 2025-08-26T19:37:20.1374916Z * [new branch] gh/seemethere/37/orig -> origin/gh/seemethere/37/orig 2025-08-26T19:37:20.1375434Z * [new branch] gh/seemethere/43/base -> origin/gh/seemethere/43/base 2025-08-26T19:37:20.1375951Z * [new branch] gh/seemethere/43/head -> origin/gh/seemethere/43/head 2025-08-26T19:37:20.1764219Z * [new branch] gh/seemethere/43/orig -> origin/gh/seemethere/43/orig 2025-08-26T19:37:20.1764956Z * [new branch] gh/seemethere/44/base -> origin/gh/seemethere/44/base 2025-08-26T19:37:20.1765469Z * [new branch] gh/seemethere/44/head -> origin/gh/seemethere/44/head 2025-08-26T19:37:20.1765985Z * [new branch] gh/seemethere/44/orig -> origin/gh/seemethere/44/orig 2025-08-26T19:37:20.1766494Z * [new branch] gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-08-26T19:37:20.1766992Z * [new branch] gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-08-26T19:37:20.1767498Z * [new branch] gh/seemethere/48/orig -> origin/gh/seemethere/48/orig 2025-08-26T19:37:20.1768000Z * [new branch] gh/seemethere/49/base -> origin/gh/seemethere/49/base 2025-08-26T19:37:20.1768520Z * [new branch] gh/seemethere/49/head -> origin/gh/seemethere/49/head 2025-08-26T19:37:20.1769180Z * [new branch] gh/seemethere/49/orig -> origin/gh/seemethere/49/orig 2025-08-26T19:37:20.1769691Z * [new branch] gh/seemethere/51/base -> origin/gh/seemethere/51/base 2025-08-26T19:37:20.1770220Z * [new branch] gh/seemethere/51/head -> origin/gh/seemethere/51/head 2025-08-26T19:37:20.1770730Z * [new branch] gh/seemethere/51/orig -> origin/gh/seemethere/51/orig 2025-08-26T19:37:20.1771248Z * [new branch] gh/seemethere/52/base -> origin/gh/seemethere/52/base 2025-08-26T19:37:20.1771769Z * [new branch] gh/seemethere/52/head -> origin/gh/seemethere/52/head 2025-08-26T19:37:20.1772276Z * [new branch] gh/seemethere/52/orig -> origin/gh/seemethere/52/orig 2025-08-26T19:37:20.1772790Z * [new branch] gh/seemethere/53/base -> origin/gh/seemethere/53/base 2025-08-26T19:37:20.1773295Z * [new branch] gh/seemethere/53/head -> origin/gh/seemethere/53/head 2025-08-26T19:37:20.1773808Z * [new branch] gh/seemethere/53/orig -> origin/gh/seemethere/53/orig 2025-08-26T19:37:20.1774322Z * [new branch] gh/seemethere/54/base -> origin/gh/seemethere/54/base 2025-08-26T19:37:20.1774830Z * [new branch] gh/seemethere/54/head -> origin/gh/seemethere/54/head 2025-08-26T19:37:20.1775340Z * [new branch] gh/seemethere/54/orig -> origin/gh/seemethere/54/orig 2025-08-26T19:37:20.1775845Z * [new branch] gh/seemethere/55/base -> origin/gh/seemethere/55/base 2025-08-26T19:37:20.1776359Z * [new branch] gh/seemethere/55/head -> origin/gh/seemethere/55/head 2025-08-26T19:37:20.1776870Z * [new branch] gh/seemethere/55/orig -> origin/gh/seemethere/55/orig 2025-08-26T19:37:20.1777471Z * [new branch] gh/seemethere/56/base -> origin/gh/seemethere/56/base 2025-08-26T19:37:20.1777995Z * [new branch] gh/seemethere/56/head -> origin/gh/seemethere/56/head 2025-08-26T19:37:20.1778507Z * [new branch] gh/seemethere/56/orig -> origin/gh/seemethere/56/orig 2025-08-26T19:37:20.1779029Z * [new branch] gh/seemethere/57/base -> origin/gh/seemethere/57/base 2025-08-26T19:37:20.1779553Z * [new branch] gh/seemethere/57/head -> origin/gh/seemethere/57/head 2025-08-26T19:37:20.1780117Z * [new branch] gh/seemethere/57/orig -> origin/gh/seemethere/57/orig 2025-08-26T19:37:20.1780682Z * [new branch] gh/seemethere/58/base -> origin/gh/seemethere/58/base 2025-08-26T19:37:20.1781190Z * [new branch] gh/seemethere/58/head -> origin/gh/seemethere/58/head 2025-08-26T19:37:20.1781713Z * [new branch] gh/seemethere/58/orig -> origin/gh/seemethere/58/orig 2025-08-26T19:37:20.1782226Z * [new branch] gh/seemethere/59/base -> origin/gh/seemethere/59/base 2025-08-26T19:37:20.1782752Z * [new branch] gh/seemethere/59/head -> origin/gh/seemethere/59/head 2025-08-26T19:37:20.1783264Z * [new branch] gh/seemethere/59/orig -> origin/gh/seemethere/59/orig 2025-08-26T19:37:20.1783847Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-08-26T19:37:20.1784389Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-08-26T19:37:20.1784914Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-08-26T19:37:20.1785446Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-08-26T19:37:20.1785979Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-08-26T19:37:20.1786509Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-08-26T19:37:20.1787128Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-08-26T19:37:20.1787650Z * [new branch] gh/shunting314/211/base -> origin/gh/shunting314/211/base 2025-08-26T19:37:20.1788188Z * [new branch] gh/shunting314/211/head -> origin/gh/shunting314/211/head 2025-08-26T19:37:20.2215959Z * [new branch] gh/shunting314/211/orig -> origin/gh/shunting314/211/orig 2025-08-26T19:37:20.2216501Z * [new branch] gh/shunting314/212/base -> origin/gh/shunting314/212/base 2025-08-26T19:37:20.2217040Z * [new branch] gh/shunting314/212/head -> origin/gh/shunting314/212/head 2025-08-26T19:37:20.2217656Z * [new branch] gh/shunting314/212/orig -> origin/gh/shunting314/212/orig 2025-08-26T19:37:20.2218230Z * [new branch] gh/shunting314/213/base -> origin/gh/shunting314/213/base 2025-08-26T19:37:20.2218767Z * [new branch] gh/shunting314/213/head -> origin/gh/shunting314/213/head 2025-08-26T19:37:20.2219284Z * [new branch] gh/shunting314/213/orig -> origin/gh/shunting314/213/orig 2025-08-26T19:37:20.2219804Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-08-26T19:37:20.2220303Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-08-26T19:37:20.2220800Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-08-26T19:37:20.2221300Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-08-26T19:37:20.2221788Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-08-26T19:37:20.2222292Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-08-26T19:37:20.2222916Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-08-26T19:37:20.2223476Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-08-26T19:37:20.2224142Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-08-26T19:37:20.2224660Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-08-26T19:37:20.2225166Z * [new branch] gh/skarjala/13/base -> origin/gh/skarjala/13/base 2025-08-26T19:37:20.2225664Z * [new branch] gh/skarjala/13/head -> origin/gh/skarjala/13/head 2025-08-26T19:37:20.2226152Z * [new branch] gh/skarjala/13/orig -> origin/gh/skarjala/13/orig 2025-08-26T19:37:20.2226638Z * [new branch] gh/skarjala/15/base -> origin/gh/skarjala/15/base 2025-08-26T19:37:20.2227120Z * [new branch] gh/skarjala/15/head -> origin/gh/skarjala/15/head 2025-08-26T19:37:20.2227603Z * [new branch] gh/skarjala/15/orig -> origin/gh/skarjala/15/orig 2025-08-26T19:37:20.2228099Z * [new branch] gh/skarjala/16/base -> origin/gh/skarjala/16/base 2025-08-26T19:37:20.2228584Z * [new branch] gh/skarjala/16/head -> origin/gh/skarjala/16/head 2025-08-26T19:37:20.2229071Z * [new branch] gh/skarjala/16/orig -> origin/gh/skarjala/16/orig 2025-08-26T19:37:20.2229657Z * [new branch] gh/skarjala/17/base -> origin/gh/skarjala/17/base 2025-08-26T19:37:20.2230184Z * [new branch] gh/skarjala/17/head -> origin/gh/skarjala/17/head 2025-08-26T19:37:20.2230675Z * [new branch] gh/skarjala/17/orig -> origin/gh/skarjala/17/orig 2025-08-26T19:37:20.2231152Z * [new branch] gh/skarjala/18/base -> origin/gh/skarjala/18/base 2025-08-26T19:37:20.2231640Z * [new branch] gh/skarjala/18/head -> origin/gh/skarjala/18/head 2025-08-26T19:37:20.2232141Z * [new branch] gh/skarjala/18/orig -> origin/gh/skarjala/18/orig 2025-08-26T19:37:20.2232714Z * [new branch] gh/skarjala/19/base -> origin/gh/skarjala/19/base 2025-08-26T19:37:20.2233206Z * [new branch] gh/skarjala/19/head -> origin/gh/skarjala/19/head 2025-08-26T19:37:20.2233694Z * [new branch] gh/skarjala/19/orig -> origin/gh/skarjala/19/orig 2025-08-26T19:37:20.2234191Z * [new branch] gh/slayton58/1/base -> origin/gh/slayton58/1/base 2025-08-26T19:37:20.2234690Z * [new branch] gh/slayton58/1/head -> origin/gh/slayton58/1/head 2025-08-26T19:37:20.2235171Z * [new branch] gh/slayton58/1/orig -> origin/gh/slayton58/1/orig 2025-08-26T19:37:20.2235667Z * [new branch] gh/slayton58/2/base -> origin/gh/slayton58/2/base 2025-08-26T19:37:20.2236144Z * [new branch] gh/slayton58/2/head -> origin/gh/slayton58/2/head 2025-08-26T19:37:20.2236633Z * [new branch] gh/slayton58/2/orig -> origin/gh/slayton58/2/orig 2025-08-26T19:37:20.2237128Z * [new branch] gh/slayton58/3/base -> origin/gh/slayton58/3/base 2025-08-26T19:37:20.2237607Z * [new branch] gh/slayton58/3/head -> origin/gh/slayton58/3/head 2025-08-26T19:37:20.2238098Z * [new branch] gh/slayton58/3/orig -> origin/gh/slayton58/3/orig 2025-08-26T19:37:20.2238587Z * [new branch] gh/slayton58/4/base -> origin/gh/slayton58/4/base 2025-08-26T19:37:20.2239077Z * [new branch] gh/slayton58/4/head -> origin/gh/slayton58/4/head 2025-08-26T19:37:20.2665146Z * [new branch] gh/slayton58/4/orig -> origin/gh/slayton58/4/orig 2025-08-26T19:37:20.2665778Z * [new branch] gh/slayton58/5/base -> origin/gh/slayton58/5/base 2025-08-26T19:37:20.2666515Z * [new branch] gh/slayton58/5/head -> origin/gh/slayton58/5/head 2025-08-26T19:37:20.2667050Z * [new branch] gh/slayton58/5/orig -> origin/gh/slayton58/5/orig 2025-08-26T19:37:20.2667650Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-08-26T19:37:20.2668204Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-08-26T19:37:20.2668778Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-08-26T19:37:20.2669327Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-08-26T19:37:20.2669897Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-08-26T19:37:20.2670445Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-08-26T19:37:20.2670988Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-08-26T19:37:20.2671498Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-08-26T19:37:20.2672012Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-08-26T19:37:20.2672511Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-08-26T19:37:20.2673022Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-08-26T19:37:20.2673529Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-08-26T19:37:20.2674027Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-08-26T19:37:20.2674534Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-08-26T19:37:20.2675035Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-08-26T19:37:20.2675544Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-08-26T19:37:20.2676097Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-08-26T19:37:20.2676773Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-08-26T19:37:20.2677299Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-08-26T19:37:20.2677803Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-08-26T19:37:20.2678314Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-08-26T19:37:20.2678819Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-08-26T19:37:20.2679343Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-08-26T19:37:20.2679850Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-08-26T19:37:20.2680361Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-08-26T19:37:20.2680872Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-08-26T19:37:20.2681371Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-08-26T19:37:20.2681916Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-08-26T19:37:20.2682463Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-08-26T19:37:20.2682998Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-08-26T19:37:20.2683506Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-08-26T19:37:20.2684011Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-08-26T19:37:20.2684520Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-08-26T19:37:20.2685122Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-08-26T19:37:20.2685633Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-08-26T19:37:20.2686153Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-08-26T19:37:20.2686661Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-08-26T19:37:20.2687182Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-08-26T19:37:20.2687694Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-08-26T19:37:20.2688232Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-08-26T19:37:20.2688812Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-08-26T19:37:20.2689313Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-08-26T19:37:20.3105531Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-08-26T19:37:20.3106130Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-08-26T19:37:20.3106651Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-08-26T19:37:20.3107157Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-08-26T19:37:20.3107670Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-08-26T19:37:20.3108166Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-08-26T19:37:20.3108670Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-08-26T19:37:20.3109178Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-08-26T19:37:20.3109729Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-08-26T19:37:20.3110416Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-08-26T19:37:20.3110923Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-08-26T19:37:20.3111427Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-08-26T19:37:20.3111941Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-08-26T19:37:20.3112443Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-08-26T19:37:20.3112961Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-08-26T19:37:20.3113463Z * [new branch] gh/soulitzer/372/base -> origin/gh/soulitzer/372/base 2025-08-26T19:37:20.3113971Z * [new branch] gh/soulitzer/372/head -> origin/gh/soulitzer/372/head 2025-08-26T19:37:20.3114486Z * [new branch] gh/soulitzer/372/orig -> origin/gh/soulitzer/372/orig 2025-08-26T19:37:20.3115040Z * [new branch] gh/soulitzer/373/base -> origin/gh/soulitzer/373/base 2025-08-26T19:37:20.3115583Z * [new branch] gh/soulitzer/373/head -> origin/gh/soulitzer/373/head 2025-08-26T19:37:20.3116080Z * [new branch] gh/soulitzer/373/orig -> origin/gh/soulitzer/373/orig 2025-08-26T19:37:20.3116584Z * [new branch] gh/soulitzer/374/base -> origin/gh/soulitzer/374/base 2025-08-26T19:37:20.3117080Z * [new branch] gh/soulitzer/374/head -> origin/gh/soulitzer/374/head 2025-08-26T19:37:20.3117590Z * [new branch] gh/soulitzer/374/orig -> origin/gh/soulitzer/374/orig 2025-08-26T19:37:20.3118097Z * [new branch] gh/soulitzer/375/base -> origin/gh/soulitzer/375/base 2025-08-26T19:37:20.3118703Z * [new branch] gh/soulitzer/375/head -> origin/gh/soulitzer/375/head 2025-08-26T19:37:20.3119215Z * [new branch] gh/soulitzer/375/orig -> origin/gh/soulitzer/375/orig 2025-08-26T19:37:20.3119720Z * [new branch] gh/soulitzer/376/base -> origin/gh/soulitzer/376/base 2025-08-26T19:37:20.3120235Z * [new branch] gh/soulitzer/376/head -> origin/gh/soulitzer/376/head 2025-08-26T19:37:20.3120775Z * [new branch] gh/soulitzer/376/orig -> origin/gh/soulitzer/376/orig 2025-08-26T19:37:20.3121314Z * [new branch] gh/soulitzer/377/base -> origin/gh/soulitzer/377/base 2025-08-26T19:37:20.3121820Z * [new branch] gh/soulitzer/377/head -> origin/gh/soulitzer/377/head 2025-08-26T19:37:20.3122317Z * [new branch] gh/soulitzer/377/orig -> origin/gh/soulitzer/377/orig 2025-08-26T19:37:20.3122827Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-08-26T19:37:20.3123334Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-08-26T19:37:20.3123834Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-08-26T19:37:20.3124341Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-08-26T19:37:20.3124835Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-08-26T19:37:20.3125330Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-08-26T19:37:20.3125818Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-08-26T19:37:20.3126316Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-08-26T19:37:20.3126854Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-08-26T19:37:20.3127377Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-08-26T19:37:20.3127877Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-08-26T19:37:20.3128446Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-08-26T19:37:20.3128955Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-08-26T19:37:20.3129456Z * [new branch] gh/swolchok/771/base -> origin/gh/swolchok/771/base 2025-08-26T19:37:20.3544090Z * [new branch] gh/swolchok/771/head -> origin/gh/swolchok/771/head 2025-08-26T19:37:20.3544640Z * [new branch] gh/swolchok/771/orig -> origin/gh/swolchok/771/orig 2025-08-26T19:37:20.3545139Z * [new branch] gh/swolchok/772/base -> origin/gh/swolchok/772/base 2025-08-26T19:37:20.3545641Z * [new branch] gh/swolchok/772/head -> origin/gh/swolchok/772/head 2025-08-26T19:37:20.3546151Z * [new branch] gh/swolchok/772/orig -> origin/gh/swolchok/772/orig 2025-08-26T19:37:20.3546644Z * [new branch] gh/swolchok/773/base -> origin/gh/swolchok/773/base 2025-08-26T19:37:20.3547142Z * [new branch] gh/swolchok/773/head -> origin/gh/swolchok/773/head 2025-08-26T19:37:20.3547632Z * [new branch] gh/swolchok/773/orig -> origin/gh/swolchok/773/orig 2025-08-26T19:37:20.3548131Z * [new branch] gh/swolchok/786/base -> origin/gh/swolchok/786/base 2025-08-26T19:37:20.3548622Z * [new branch] gh/swolchok/786/head -> origin/gh/swolchok/786/head 2025-08-26T19:37:20.3549111Z * [new branch] gh/swolchok/786/orig -> origin/gh/swolchok/786/orig 2025-08-26T19:37:20.3549649Z * [new branch] gh/swolchok/787/base -> origin/gh/swolchok/787/base 2025-08-26T19:37:20.3550176Z * [new branch] gh/swolchok/787/head -> origin/gh/swolchok/787/head 2025-08-26T19:37:20.3550818Z * [new branch] gh/swolchok/787/orig -> origin/gh/swolchok/787/orig 2025-08-26T19:37:20.3551317Z * [new branch] gh/swolchok/788/base -> origin/gh/swolchok/788/base 2025-08-26T19:37:20.3551808Z * [new branch] gh/swolchok/788/head -> origin/gh/swolchok/788/head 2025-08-26T19:37:20.3552317Z * [new branch] gh/swolchok/788/orig -> origin/gh/swolchok/788/orig 2025-08-26T19:37:20.3552803Z * [new branch] gh/swolchok/789/base -> origin/gh/swolchok/789/base 2025-08-26T19:37:20.3553300Z * [new branch] gh/swolchok/789/head -> origin/gh/swolchok/789/head 2025-08-26T19:37:20.3553803Z * [new branch] gh/swolchok/789/orig -> origin/gh/swolchok/789/orig 2025-08-26T19:37:20.3554294Z * [new branch] gh/swolchok/790/base -> origin/gh/swolchok/790/base 2025-08-26T19:37:20.3554792Z * [new branch] gh/swolchok/790/head -> origin/gh/swolchok/790/head 2025-08-26T19:37:20.3555330Z * [new branch] gh/swolchok/790/orig -> origin/gh/swolchok/790/orig 2025-08-26T19:37:20.3555878Z * [new branch] gh/swolchok/791/base -> origin/gh/swolchok/791/base 2025-08-26T19:37:20.3556376Z * [new branch] gh/swolchok/791/head -> origin/gh/swolchok/791/head 2025-08-26T19:37:20.3556866Z * [new branch] gh/swolchok/791/orig -> origin/gh/swolchok/791/orig 2025-08-26T19:37:20.3557361Z * [new branch] gh/swolchok/792/base -> origin/gh/swolchok/792/base 2025-08-26T19:37:20.3557846Z * [new branch] gh/swolchok/792/head -> origin/gh/swolchok/792/head 2025-08-26T19:37:20.3558349Z * [new branch] gh/swolchok/792/orig -> origin/gh/swolchok/792/orig 2025-08-26T19:37:20.3558839Z * [new branch] gh/swolchok/793/base -> origin/gh/swolchok/793/base 2025-08-26T19:37:20.3559336Z * [new branch] gh/swolchok/793/head -> origin/gh/swolchok/793/head 2025-08-26T19:37:20.3559931Z * [new branch] gh/swolchok/793/orig -> origin/gh/swolchok/793/orig 2025-08-26T19:37:20.3560430Z * [new branch] gh/swolchok/794/base -> origin/gh/swolchok/794/base 2025-08-26T19:37:20.3560972Z * [new branch] gh/swolchok/794/head -> origin/gh/swolchok/794/head 2025-08-26T19:37:20.3561505Z * [new branch] gh/swolchok/794/orig -> origin/gh/swolchok/794/orig 2025-08-26T19:37:20.3562004Z * [new branch] gh/swolchok/795/base -> origin/gh/swolchok/795/base 2025-08-26T19:37:20.3562500Z * [new branch] gh/swolchok/795/head -> origin/gh/swolchok/795/head 2025-08-26T19:37:20.3562992Z * [new branch] gh/swolchok/795/orig -> origin/gh/swolchok/795/orig 2025-08-26T19:37:20.3563495Z * [new branch] gh/swolchok/796/base -> origin/gh/swolchok/796/base 2025-08-26T19:37:20.3563991Z * [new branch] gh/swolchok/796/head -> origin/gh/swolchok/796/head 2025-08-26T19:37:20.3564492Z * [new branch] gh/swolchok/796/orig -> origin/gh/swolchok/796/orig 2025-08-26T19:37:20.3564986Z * [new branch] gh/swolchok/797/base -> origin/gh/swolchok/797/base 2025-08-26T19:37:20.3565477Z * [new branch] gh/swolchok/797/head -> origin/gh/swolchok/797/head 2025-08-26T19:37:20.3565972Z * [new branch] gh/swolchok/797/orig -> origin/gh/swolchok/797/orig 2025-08-26T19:37:20.3566500Z * [new branch] gh/swolchok/798/base -> origin/gh/swolchok/798/base 2025-08-26T19:37:20.3567034Z * [new branch] gh/swolchok/798/head -> origin/gh/swolchok/798/head 2025-08-26T19:37:20.3980184Z * [new branch] gh/swolchok/798/orig -> origin/gh/swolchok/798/orig 2025-08-26T19:37:20.3980717Z * [new branch] gh/swolchok/799/base -> origin/gh/swolchok/799/base 2025-08-26T19:37:20.3981382Z * [new branch] gh/swolchok/799/head -> origin/gh/swolchok/799/head 2025-08-26T19:37:20.3981888Z * [new branch] gh/swolchok/799/orig -> origin/gh/swolchok/799/orig 2025-08-26T19:37:20.3982395Z * [new branch] gh/swolchok/800/base -> origin/gh/swolchok/800/base 2025-08-26T19:37:20.3982912Z * [new branch] gh/swolchok/800/head -> origin/gh/swolchok/800/head 2025-08-26T19:37:20.3983405Z * [new branch] gh/swolchok/800/orig -> origin/gh/swolchok/800/orig 2025-08-26T19:37:20.3983949Z * [new branch] gh/swolchok/801/base -> origin/gh/swolchok/801/base 2025-08-26T19:37:20.3984440Z * [new branch] gh/swolchok/801/head -> origin/gh/swolchok/801/head 2025-08-26T19:37:20.3984936Z * [new branch] gh/swolchok/801/orig -> origin/gh/swolchok/801/orig 2025-08-26T19:37:20.3985514Z * [new branch] gh/swolchok/802/base -> origin/gh/swolchok/802/base 2025-08-26T19:37:20.3986013Z * [new branch] gh/swolchok/802/head -> origin/gh/swolchok/802/head 2025-08-26T19:37:20.3986513Z * [new branch] gh/swolchok/802/orig -> origin/gh/swolchok/802/orig 2025-08-26T19:37:20.3987003Z * [new branch] gh/swolchok/803/base -> origin/gh/swolchok/803/base 2025-08-26T19:37:20.3987498Z * [new branch] gh/swolchok/803/head -> origin/gh/swolchok/803/head 2025-08-26T19:37:20.3987992Z * [new branch] gh/swolchok/803/orig -> origin/gh/swolchok/803/orig 2025-08-26T19:37:20.3988480Z * [new branch] gh/swolchok/804/base -> origin/gh/swolchok/804/base 2025-08-26T19:37:20.3988984Z * [new branch] gh/swolchok/804/head -> origin/gh/swolchok/804/head 2025-08-26T19:37:20.3989470Z * [new branch] gh/swolchok/804/orig -> origin/gh/swolchok/804/orig 2025-08-26T19:37:20.3989972Z * [new branch] gh/swolchok/805/base -> origin/gh/swolchok/805/base 2025-08-26T19:37:20.3990560Z * [new branch] gh/swolchok/805/head -> origin/gh/swolchok/805/head 2025-08-26T19:37:20.3991090Z * [new branch] gh/swolchok/805/orig -> origin/gh/swolchok/805/orig 2025-08-26T19:37:20.3991632Z * [new branch] gh/swolchok/806/base -> origin/gh/swolchok/806/base 2025-08-26T19:37:20.3992125Z * [new branch] gh/swolchok/806/head -> origin/gh/swolchok/806/head 2025-08-26T19:37:20.3992635Z * [new branch] gh/swolchok/806/orig -> origin/gh/swolchok/806/orig 2025-08-26T19:37:20.3993124Z * [new branch] gh/swolchok/807/base -> origin/gh/swolchok/807/base 2025-08-26T19:37:20.3993625Z * [new branch] gh/swolchok/807/head -> origin/gh/swolchok/807/head 2025-08-26T19:37:20.3994123Z * [new branch] gh/swolchok/807/orig -> origin/gh/swolchok/807/orig 2025-08-26T19:37:20.3994619Z * [new branch] gh/swolchok/808/base -> origin/gh/swolchok/808/base 2025-08-26T19:37:20.3995119Z * [new branch] gh/swolchok/808/head -> origin/gh/swolchok/808/head 2025-08-26T19:37:20.3995608Z * [new branch] gh/swolchok/808/orig -> origin/gh/swolchok/808/orig 2025-08-26T19:37:20.3996110Z * [new branch] gh/swolchok/809/base -> origin/gh/swolchok/809/base 2025-08-26T19:37:20.3996640Z * [new branch] gh/swolchok/809/head -> origin/gh/swolchok/809/head 2025-08-26T19:37:20.3997165Z * [new branch] gh/swolchok/809/orig -> origin/gh/swolchok/809/orig 2025-08-26T19:37:20.3997668Z * [new branch] gh/syed-ahmed/2/base -> origin/gh/syed-ahmed/2/base 2025-08-26T19:37:20.3998164Z * [new branch] gh/syed-ahmed/2/head -> origin/gh/syed-ahmed/2/head 2025-08-26T19:37:20.3998761Z * [new branch] gh/syed-ahmed/2/orig -> origin/gh/syed-ahmed/2/orig 2025-08-26T19:37:20.3999264Z * [new branch] gh/syed-ahmed/3/base -> origin/gh/syed-ahmed/3/base 2025-08-26T19:37:20.3999750Z * [new branch] gh/syed-ahmed/3/head -> origin/gh/syed-ahmed/3/head 2025-08-26T19:37:20.4000251Z * [new branch] gh/syed-ahmed/3/orig -> origin/gh/syed-ahmed/3/orig 2025-08-26T19:37:20.4000737Z * [new branch] gh/syed-ahmed/4/base -> origin/gh/syed-ahmed/4/base 2025-08-26T19:37:20.4001228Z * [new branch] gh/syed-ahmed/4/head -> origin/gh/syed-ahmed/4/head 2025-08-26T19:37:20.4001717Z * [new branch] gh/syed-ahmed/4/orig -> origin/gh/syed-ahmed/4/orig 2025-08-26T19:37:20.4002238Z * [new branch] gh/teja-rao/4/base -> origin/gh/teja-rao/4/base 2025-08-26T19:37:20.4002764Z * [new branch] gh/teja-rao/4/head -> origin/gh/teja-rao/4/head 2025-08-26T19:37:20.4003243Z * [new branch] gh/teja-rao/4/orig -> origin/gh/teja-rao/4/orig 2025-08-26T19:37:20.4003739Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-08-26T19:37:20.6450501Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-08-26T19:37:20.6451035Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-08-26T19:37:20.6451579Z * [new branch] gh/tugsbayasgalan/1/base -> origin/gh/tugsbayasgalan/1/base 2025-08-26T19:37:20.6452165Z * [new branch] gh/tugsbayasgalan/1/head -> origin/gh/tugsbayasgalan/1/head 2025-08-26T19:37:20.6452723Z * [new branch] gh/tugsbayasgalan/1/orig -> origin/gh/tugsbayasgalan/1/orig 2025-08-26T19:37:20.6453286Z * [new branch] gh/tugsbayasgalan/2/base -> origin/gh/tugsbayasgalan/2/base 2025-08-26T19:37:20.6453824Z * [new branch] gh/tugsbayasgalan/2/head -> origin/gh/tugsbayasgalan/2/head 2025-08-26T19:37:20.6454408Z * [new branch] gh/tugsbayasgalan/2/orig -> origin/gh/tugsbayasgalan/2/orig 2025-08-26T19:37:20.6455142Z * [new branch] gh/tugsbayasgalan/3/base -> origin/gh/tugsbayasgalan/3/base 2025-08-26T19:37:20.6455699Z * [new branch] gh/tugsbayasgalan/3/head -> origin/gh/tugsbayasgalan/3/head 2025-08-26T19:37:20.6456251Z * [new branch] gh/tugsbayasgalan/3/orig -> origin/gh/tugsbayasgalan/3/orig 2025-08-26T19:37:20.6456751Z * [new branch] gh/v0i0/1/base -> origin/gh/v0i0/1/base 2025-08-26T19:37:20.6457217Z * [new branch] gh/v0i0/1/head -> origin/gh/v0i0/1/head 2025-08-26T19:37:20.6457660Z * [new branch] gh/v0i0/1/orig -> origin/gh/v0i0/1/orig 2025-08-26T19:37:20.6458103Z * [new branch] gh/v0i0/2/base -> origin/gh/v0i0/2/base 2025-08-26T19:37:20.6458544Z * [new branch] gh/v0i0/2/head -> origin/gh/v0i0/2/head 2025-08-26T19:37:20.6458975Z * [new branch] gh/v0i0/2/orig -> origin/gh/v0i0/2/orig 2025-08-26T19:37:20.6459415Z * [new branch] gh/v0i0/3/base -> origin/gh/v0i0/3/base 2025-08-26T19:37:20.6459843Z * [new branch] gh/v0i0/3/head -> origin/gh/v0i0/3/head 2025-08-26T19:37:20.6460285Z * [new branch] gh/v0i0/3/orig -> origin/gh/v0i0/3/orig 2025-08-26T19:37:20.6460723Z * [new branch] gh/v0i0/4/base -> origin/gh/v0i0/4/base 2025-08-26T19:37:20.6461157Z * [new branch] gh/v0i0/4/head -> origin/gh/v0i0/4/head 2025-08-26T19:37:20.6461594Z * [new branch] gh/v0i0/4/orig -> origin/gh/v0i0/4/orig 2025-08-26T19:37:20.6462027Z * [new branch] gh/v0i0/5/base -> origin/gh/v0i0/5/base 2025-08-26T19:37:20.6462469Z * [new branch] gh/v0i0/5/head -> origin/gh/v0i0/5/head 2025-08-26T19:37:20.6463036Z * [new branch] gh/v0i0/5/orig -> origin/gh/v0i0/5/orig 2025-08-26T19:37:20.6463494Z * [new branch] gh/v0i0/6/base -> origin/gh/v0i0/6/base 2025-08-26T19:37:20.6464016Z * [new branch] gh/v0i0/6/head -> origin/gh/v0i0/6/head 2025-08-26T19:37:20.6464455Z * [new branch] gh/v0i0/6/orig -> origin/gh/v0i0/6/orig 2025-08-26T19:37:20.6464901Z * [new branch] gh/v0i0/7/base -> origin/gh/v0i0/7/base 2025-08-26T19:37:20.6465335Z * [new branch] gh/v0i0/7/head -> origin/gh/v0i0/7/head 2025-08-26T19:37:20.6465787Z * [new branch] gh/v0i0/7/orig -> origin/gh/v0i0/7/orig 2025-08-26T19:37:20.6466250Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-08-26T19:37:20.6466704Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-08-26T19:37:20.6467164Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-08-26T19:37:20.6467617Z * [new branch] gh/vkuzo/4/base -> origin/gh/vkuzo/4/base 2025-08-26T19:37:20.6468079Z * [new branch] gh/vkuzo/4/head -> origin/gh/vkuzo/4/head 2025-08-26T19:37:20.6468529Z * [new branch] gh/vkuzo/4/orig -> origin/gh/vkuzo/4/orig 2025-08-26T19:37:20.6469004Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-08-26T19:37:20.6469510Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-08-26T19:37:20.6470005Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-08-26T19:37:20.6470506Z * [new branch] gh/wconstab/419/base -> origin/gh/wconstab/419/base 2025-08-26T19:37:20.6471002Z * [new branch] gh/wconstab/419/head -> origin/gh/wconstab/419/head 2025-08-26T19:37:20.6471505Z * [new branch] gh/wconstab/419/orig -> origin/gh/wconstab/419/orig 2025-08-26T19:37:20.6472115Z * [new branch] gh/wconstab/424/base -> origin/gh/wconstab/424/base 2025-08-26T19:37:20.6472620Z * [new branch] gh/wconstab/424/head -> origin/gh/wconstab/424/head 2025-08-26T19:37:20.6473127Z * [new branch] gh/wconstab/424/orig -> origin/gh/wconstab/424/orig 2025-08-26T19:37:20.6473628Z * [new branch] gh/wconstab/432/base -> origin/gh/wconstab/432/base 2025-08-26T19:37:20.6984621Z * [new branch] gh/wconstab/432/head -> origin/gh/wconstab/432/head 2025-08-26T19:37:20.6985195Z * [new branch] gh/wconstab/432/orig -> origin/gh/wconstab/432/orig 2025-08-26T19:37:20.6985696Z * [new branch] gh/wconstab/433/base -> origin/gh/wconstab/433/base 2025-08-26T19:37:20.6986228Z * [new branch] gh/wconstab/433/head -> origin/gh/wconstab/433/head 2025-08-26T19:37:20.6986736Z * [new branch] gh/wconstab/433/orig -> origin/gh/wconstab/433/orig 2025-08-26T19:37:20.6987245Z * [new branch] gh/wconstab/434/base -> origin/gh/wconstab/434/base 2025-08-26T19:37:20.6987741Z * [new branch] gh/wconstab/434/head -> origin/gh/wconstab/434/head 2025-08-26T19:37:20.6988246Z * [new branch] gh/wconstab/434/orig -> origin/gh/wconstab/434/orig 2025-08-26T19:37:20.6988743Z * [new branch] gh/wconstab/435/base -> origin/gh/wconstab/435/base 2025-08-26T19:37:20.6989237Z * [new branch] gh/wconstab/435/head -> origin/gh/wconstab/435/head 2025-08-26T19:37:20.6989738Z * [new branch] gh/wconstab/435/orig -> origin/gh/wconstab/435/orig 2025-08-26T19:37:20.6990233Z * [new branch] gh/wconstab/436/base -> origin/gh/wconstab/436/base 2025-08-26T19:37:20.6990928Z * [new branch] gh/wconstab/436/head -> origin/gh/wconstab/436/head 2025-08-26T19:37:20.6991429Z * [new branch] gh/wconstab/436/orig -> origin/gh/wconstab/436/orig 2025-08-26T19:37:20.6991915Z * [new branch] gh/wconstab/437/base -> origin/gh/wconstab/437/base 2025-08-26T19:37:20.6992411Z * [new branch] gh/wconstab/437/head -> origin/gh/wconstab/437/head 2025-08-26T19:37:20.6992910Z * [new branch] gh/wconstab/437/orig -> origin/gh/wconstab/437/orig 2025-08-26T19:37:20.6993398Z * [new branch] gh/wconstab/438/base -> origin/gh/wconstab/438/base 2025-08-26T19:37:20.6993898Z * [new branch] gh/wconstab/438/head -> origin/gh/wconstab/438/head 2025-08-26T19:37:20.6994388Z * [new branch] gh/wconstab/438/orig -> origin/gh/wconstab/438/orig 2025-08-26T19:37:20.6994880Z * [new branch] gh/wconstab/439/base -> origin/gh/wconstab/439/base 2025-08-26T19:37:20.6995369Z * [new branch] gh/wconstab/439/head -> origin/gh/wconstab/439/head 2025-08-26T19:37:20.6995864Z * [new branch] gh/wconstab/439/orig -> origin/gh/wconstab/439/orig 2025-08-26T19:37:20.6996362Z * [new branch] gh/wconstab/440/base -> origin/gh/wconstab/440/base 2025-08-26T19:37:20.6996854Z * [new branch] gh/wconstab/440/head -> origin/gh/wconstab/440/head 2025-08-26T19:37:20.6997349Z * [new branch] gh/wconstab/440/orig -> origin/gh/wconstab/440/orig 2025-08-26T19:37:20.6997834Z * [new branch] gh/wconstab/441/base -> origin/gh/wconstab/441/base 2025-08-26T19:37:20.6998344Z * [new branch] gh/wconstab/441/head -> origin/gh/wconstab/441/head 2025-08-26T19:37:20.6998960Z * [new branch] gh/wconstab/441/orig -> origin/gh/wconstab/441/orig 2025-08-26T19:37:20.6999476Z * [new branch] gh/wconstab/442/base -> origin/gh/wconstab/442/base 2025-08-26T19:37:20.7000107Z * [new branch] gh/wconstab/442/head -> origin/gh/wconstab/442/head 2025-08-26T19:37:20.7000600Z * [new branch] gh/wconstab/442/orig -> origin/gh/wconstab/442/orig 2025-08-26T19:37:20.7001098Z * [new branch] gh/wconstab/443/base -> origin/gh/wconstab/443/base 2025-08-26T19:37:20.7001614Z * [new branch] gh/wconstab/443/head -> origin/gh/wconstab/443/head 2025-08-26T19:37:20.7002107Z * [new branch] gh/wconstab/443/orig -> origin/gh/wconstab/443/orig 2025-08-26T19:37:20.7002608Z * [new branch] gh/wconstab/444/base -> origin/gh/wconstab/444/base 2025-08-26T19:37:20.7003100Z * [new branch] gh/wconstab/444/head -> origin/gh/wconstab/444/head 2025-08-26T19:37:20.7003593Z * [new branch] gh/wconstab/444/orig -> origin/gh/wconstab/444/orig 2025-08-26T19:37:20.7004136Z * [new branch] gh/wconstab/445/base -> origin/gh/wconstab/445/base 2025-08-26T19:37:20.7004679Z * [new branch] gh/wconstab/445/head -> origin/gh/wconstab/445/head 2025-08-26T19:37:20.7005180Z * [new branch] gh/wconstab/445/orig -> origin/gh/wconstab/445/orig 2025-08-26T19:37:20.7005684Z * [new branch] gh/weifengpy/27/base -> origin/gh/weifengpy/27/base 2025-08-26T19:37:20.7006200Z * [new branch] gh/weifengpy/27/head -> origin/gh/weifengpy/27/head 2025-08-26T19:37:20.7006709Z * [new branch] gh/weifengpy/27/orig -> origin/gh/weifengpy/27/orig 2025-08-26T19:37:20.7007256Z * [new branch] gh/weifengpy/30/base -> origin/gh/weifengpy/30/base 2025-08-26T19:37:20.7007764Z * [new branch] gh/weifengpy/30/head -> origin/gh/weifengpy/30/head 2025-08-26T19:37:20.7412296Z * [new branch] gh/weifengpy/30/orig -> origin/gh/weifengpy/30/orig 2025-08-26T19:37:20.7413138Z * [new branch] gh/weifengpy/33/base -> origin/gh/weifengpy/33/base 2025-08-26T19:37:20.7413681Z * [new branch] gh/weifengpy/33/head -> origin/gh/weifengpy/33/head 2025-08-26T19:37:20.7414190Z * [new branch] gh/weifengpy/33/orig -> origin/gh/weifengpy/33/orig 2025-08-26T19:37:20.7414721Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-08-26T19:37:20.7415267Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-08-26T19:37:20.7415807Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-08-26T19:37:20.7416346Z * [new branch] gh/williamwen42/250/base -> origin/gh/williamwen42/250/base 2025-08-26T19:37:20.7416874Z * [new branch] gh/williamwen42/250/head -> origin/gh/williamwen42/250/head 2025-08-26T19:37:20.7417419Z * [new branch] gh/williamwen42/250/orig -> origin/gh/williamwen42/250/orig 2025-08-26T19:37:20.7417982Z * [new branch] gh/williamwen42/258/base -> origin/gh/williamwen42/258/base 2025-08-26T19:37:20.7418579Z * [new branch] gh/williamwen42/258/head -> origin/gh/williamwen42/258/head 2025-08-26T19:37:20.7419137Z * [new branch] gh/williamwen42/258/orig -> origin/gh/williamwen42/258/orig 2025-08-26T19:37:20.7419667Z * [new branch] gh/williamwen42/260/base -> origin/gh/williamwen42/260/base 2025-08-26T19:37:20.7420204Z * [new branch] gh/williamwen42/260/head -> origin/gh/williamwen42/260/head 2025-08-26T19:37:20.7420732Z * [new branch] gh/williamwen42/260/orig -> origin/gh/williamwen42/260/orig 2025-08-26T19:37:20.7421270Z * [new branch] gh/williamwen42/261/base -> origin/gh/williamwen42/261/base 2025-08-26T19:37:20.7421804Z * [new branch] gh/williamwen42/261/head -> origin/gh/williamwen42/261/head 2025-08-26T19:37:20.7422335Z * [new branch] gh/williamwen42/261/orig -> origin/gh/williamwen42/261/orig 2025-08-26T19:37:20.7422992Z * [new branch] gh/williamwen42/263/base -> origin/gh/williamwen42/263/base 2025-08-26T19:37:20.7423541Z * [new branch] gh/williamwen42/263/head -> origin/gh/williamwen42/263/head 2025-08-26T19:37:20.7424245Z * [new branch] gh/williamwen42/263/orig -> origin/gh/williamwen42/263/orig 2025-08-26T19:37:20.7424801Z * [new branch] gh/williamwen42/264/base -> origin/gh/williamwen42/264/base 2025-08-26T19:37:20.7425333Z * [new branch] gh/williamwen42/264/head -> origin/gh/williamwen42/264/head 2025-08-26T19:37:20.7425874Z * [new branch] gh/williamwen42/264/orig -> origin/gh/williamwen42/264/orig 2025-08-26T19:37:20.7426404Z * [new branch] gh/williamwen42/265/base -> origin/gh/williamwen42/265/base 2025-08-26T19:37:20.7426954Z * [new branch] gh/williamwen42/265/head -> origin/gh/williamwen42/265/head 2025-08-26T19:37:20.7427496Z * [new branch] gh/williamwen42/265/orig -> origin/gh/williamwen42/265/orig 2025-08-26T19:37:20.7428029Z * [new branch] gh/williamwen42/266/base -> origin/gh/williamwen42/266/base 2025-08-26T19:37:20.7428564Z * [new branch] gh/williamwen42/266/head -> origin/gh/williamwen42/266/head 2025-08-26T19:37:20.7429092Z * [new branch] gh/williamwen42/266/orig -> origin/gh/williamwen42/266/orig 2025-08-26T19:37:20.7429672Z * [new branch] gh/williamwen42/267/base -> origin/gh/williamwen42/267/base 2025-08-26T19:37:20.7430250Z * [new branch] gh/williamwen42/267/head -> origin/gh/williamwen42/267/head 2025-08-26T19:37:20.7430795Z * [new branch] gh/williamwen42/267/orig -> origin/gh/williamwen42/267/orig 2025-08-26T19:37:20.7431447Z * [new branch] gh/williamwen42/268/base -> origin/gh/williamwen42/268/base 2025-08-26T19:37:20.7431987Z * [new branch] gh/williamwen42/268/head -> origin/gh/williamwen42/268/head 2025-08-26T19:37:20.7432532Z * [new branch] gh/williamwen42/268/orig -> origin/gh/williamwen42/268/orig 2025-08-26T19:37:20.7433074Z * [new branch] gh/williamwen42/269/base -> origin/gh/williamwen42/269/base 2025-08-26T19:37:20.7433608Z * [new branch] gh/williamwen42/269/head -> origin/gh/williamwen42/269/head 2025-08-26T19:37:20.7434145Z * [new branch] gh/williamwen42/269/orig -> origin/gh/williamwen42/269/orig 2025-08-26T19:37:20.7434675Z * [new branch] gh/williamwen42/270/base -> origin/gh/williamwen42/270/base 2025-08-26T19:37:20.7435258Z * [new branch] gh/williamwen42/270/head -> origin/gh/williamwen42/270/head 2025-08-26T19:37:20.7435833Z * [new branch] gh/williamwen42/270/orig -> origin/gh/williamwen42/270/orig 2025-08-26T19:37:20.7436375Z * [new branch] gh/williamwen42/271/base -> origin/gh/williamwen42/271/base 2025-08-26T19:37:20.7436916Z * [new branch] gh/williamwen42/271/head -> origin/gh/williamwen42/271/head 2025-08-26T19:37:21.3613355Z * [new branch] gh/williamwen42/271/orig -> origin/gh/williamwen42/271/orig 2025-08-26T19:37:21.3613959Z * [new branch] gh/williamwen42/272/base -> origin/gh/williamwen42/272/base 2025-08-26T19:37:21.3614521Z * [new branch] gh/williamwen42/272/head -> origin/gh/williamwen42/272/head 2025-08-26T19:37:21.3615062Z * [new branch] gh/williamwen42/272/orig -> origin/gh/williamwen42/272/orig 2025-08-26T19:37:21.3615592Z * [new branch] gh/williamwen42/273/base -> origin/gh/williamwen42/273/base 2025-08-26T19:37:21.3616129Z * [new branch] gh/williamwen42/273/head -> origin/gh/williamwen42/273/head 2025-08-26T19:37:21.3616691Z * [new branch] gh/williamwen42/273/orig -> origin/gh/williamwen42/273/orig 2025-08-26T19:37:21.3617429Z * [new branch] gh/williamwen42/274/base -> origin/gh/williamwen42/274/base 2025-08-26T19:37:21.3618064Z * [new branch] gh/williamwen42/274/head -> origin/gh/williamwen42/274/head 2025-08-26T19:37:21.3618606Z * [new branch] gh/williamwen42/274/orig -> origin/gh/williamwen42/274/orig 2025-08-26T19:37:21.3619156Z * [new branch] gh/williamwen42/275/base -> origin/gh/williamwen42/275/base 2025-08-26T19:37:21.3619691Z * [new branch] gh/williamwen42/275/head -> origin/gh/williamwen42/275/head 2025-08-26T19:37:21.3620231Z * [new branch] gh/williamwen42/276/base -> origin/gh/williamwen42/276/base 2025-08-26T19:37:21.3620763Z * [new branch] gh/williamwen42/276/head -> origin/gh/williamwen42/276/head 2025-08-26T19:37:21.3621311Z * [new branch] gh/williamwen42/276/orig -> origin/gh/williamwen42/276/orig 2025-08-26T19:37:21.3621850Z * [new branch] gh/williamwen42/277/base -> origin/gh/williamwen42/277/base 2025-08-26T19:37:21.3622382Z * [new branch] gh/williamwen42/277/head -> origin/gh/williamwen42/277/head 2025-08-26T19:37:21.3622917Z * [new branch] gh/williamwen42/277/orig -> origin/gh/williamwen42/277/orig 2025-08-26T19:37:21.3623497Z * [new branch] gh/williamwen42/278/base -> origin/gh/williamwen42/278/base 2025-08-26T19:37:21.3624138Z * [new branch] gh/williamwen42/278/head -> origin/gh/williamwen42/278/head 2025-08-26T19:37:21.3624679Z * [new branch] gh/williamwen42/278/orig -> origin/gh/williamwen42/278/orig 2025-08-26T19:37:21.3625212Z * [new branch] gh/williamwen42/279/base -> origin/gh/williamwen42/279/base 2025-08-26T19:37:21.3625749Z * [new branch] gh/williamwen42/279/head -> origin/gh/williamwen42/279/head 2025-08-26T19:37:21.3626409Z * [new branch] gh/williamwen42/279/orig -> origin/gh/williamwen42/279/orig 2025-08-26T19:37:21.3626926Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-08-26T19:37:21.3627426Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-08-26T19:37:21.3627890Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-08-26T19:37:21.3628358Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-08-26T19:37:21.3628817Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-08-26T19:37:21.3629325Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-08-26T19:37:21.3629836Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-08-26T19:37:21.3630296Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-08-26T19:37:21.3630765Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-08-26T19:37:21.3631233Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-08-26T19:37:21.3631711Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-08-26T19:37:21.3632183Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-08-26T19:37:21.3632640Z * [new branch] gh/xmfan/244/base -> origin/gh/xmfan/244/base 2025-08-26T19:37:21.3633113Z * [new branch] gh/xmfan/244/head -> origin/gh/xmfan/244/head 2025-08-26T19:37:21.3633571Z * [new branch] gh/xmfan/244/orig -> origin/gh/xmfan/244/orig 2025-08-26T19:37:21.3634042Z * [new branch] gh/xmfan/246/base -> origin/gh/xmfan/246/base 2025-08-26T19:37:21.3634502Z * [new branch] gh/xmfan/246/head -> origin/gh/xmfan/246/head 2025-08-26T19:37:21.3635025Z * [new branch] gh/xmfan/246/orig -> origin/gh/xmfan/246/orig 2025-08-26T19:37:21.3635644Z * [new branch] gh/xmfan/253/base -> origin/gh/xmfan/253/base 2025-08-26T19:37:21.3636113Z * [new branch] gh/xmfan/253/head -> origin/gh/xmfan/253/head 2025-08-26T19:37:21.3636584Z * [new branch] gh/xmfan/253/orig -> origin/gh/xmfan/253/orig 2025-08-26T19:37:21.3637056Z * [new branch] gh/xmfan/254/base -> origin/gh/xmfan/254/base 2025-08-26T19:37:21.4048053Z * [new branch] gh/xmfan/254/head -> origin/gh/xmfan/254/head 2025-08-26T19:37:21.4048603Z * [new branch] gh/xmfan/254/orig -> origin/gh/xmfan/254/orig 2025-08-26T19:37:21.4049076Z * [new branch] gh/xmfan/260/base -> origin/gh/xmfan/260/base 2025-08-26T19:37:21.4049553Z * [new branch] gh/xmfan/260/head -> origin/gh/xmfan/260/head 2025-08-26T19:37:21.4050087Z * [new branch] gh/xmfan/260/orig -> origin/gh/xmfan/260/orig 2025-08-26T19:37:21.4050583Z * [new branch] gh/xmfan/262/base -> origin/gh/xmfan/262/base 2025-08-26T19:37:21.4051066Z * [new branch] gh/xmfan/262/head -> origin/gh/xmfan/262/head 2025-08-26T19:37:21.4051521Z * [new branch] gh/xmfan/262/orig -> origin/gh/xmfan/262/orig 2025-08-26T19:37:21.4051992Z * [new branch] gh/xmfan/263/base -> origin/gh/xmfan/263/base 2025-08-26T19:37:21.4052450Z * [new branch] gh/xmfan/263/head -> origin/gh/xmfan/263/head 2025-08-26T19:37:21.4052922Z * [new branch] gh/xmfan/263/orig -> origin/gh/xmfan/263/orig 2025-08-26T19:37:21.4053393Z * [new branch] gh/xmfan/264/base -> origin/gh/xmfan/264/base 2025-08-26T19:37:21.4054708Z * [new branch] gh/xmfan/264/head -> origin/gh/xmfan/264/head 2025-08-26T19:37:21.4055187Z * [new branch] gh/xmfan/264/orig -> origin/gh/xmfan/264/orig 2025-08-26T19:37:21.4055659Z * [new branch] gh/xmfan/270/base -> origin/gh/xmfan/270/base 2025-08-26T19:37:21.4056184Z * [new branch] gh/xmfan/270/head -> origin/gh/xmfan/270/head 2025-08-26T19:37:21.4056697Z * [new branch] gh/xmfan/270/orig -> origin/gh/xmfan/270/orig 2025-08-26T19:37:21.4057164Z * [new branch] gh/xmfan/271/base -> origin/gh/xmfan/271/base 2025-08-26T19:37:21.4057627Z * [new branch] gh/xmfan/271/head -> origin/gh/xmfan/271/head 2025-08-26T19:37:21.4058093Z * [new branch] gh/xmfan/271/orig -> origin/gh/xmfan/271/orig 2025-08-26T19:37:21.4058563Z * [new branch] gh/xmfan/272/base -> origin/gh/xmfan/272/base 2025-08-26T19:37:21.4059038Z * [new branch] gh/xmfan/272/head -> origin/gh/xmfan/272/head 2025-08-26T19:37:21.4059503Z * [new branch] gh/xmfan/272/orig -> origin/gh/xmfan/272/orig 2025-08-26T19:37:21.4059972Z * [new branch] gh/xmfan/273/base -> origin/gh/xmfan/273/base 2025-08-26T19:37:21.4060441Z * [new branch] gh/xmfan/273/head -> origin/gh/xmfan/273/head 2025-08-26T19:37:21.4060913Z * [new branch] gh/xmfan/273/orig -> origin/gh/xmfan/273/orig 2025-08-26T19:37:21.4061374Z * [new branch] gh/xmfan/274/base -> origin/gh/xmfan/274/base 2025-08-26T19:37:21.4061889Z * [new branch] gh/xmfan/274/head -> origin/gh/xmfan/274/head 2025-08-26T19:37:21.4062405Z * [new branch] gh/xmfan/274/orig -> origin/gh/xmfan/274/orig 2025-08-26T19:37:21.4062864Z * [new branch] gh/xmfan/275/base -> origin/gh/xmfan/275/base 2025-08-26T19:37:21.4063337Z * [new branch] gh/xmfan/275/head -> origin/gh/xmfan/275/head 2025-08-26T19:37:21.4064054Z * [new branch] gh/xmfan/275/orig -> origin/gh/xmfan/275/orig 2025-08-26T19:37:21.4064540Z * [new branch] gh/xmfan/276/base -> origin/gh/xmfan/276/base 2025-08-26T19:37:21.4065012Z * [new branch] gh/xmfan/276/head -> origin/gh/xmfan/276/head 2025-08-26T19:37:21.4065476Z * [new branch] gh/xmfan/276/orig -> origin/gh/xmfan/276/orig 2025-08-26T19:37:21.4065954Z * [new branch] gh/xmfan/277/base -> origin/gh/xmfan/277/base 2025-08-26T19:37:21.4066417Z * [new branch] gh/xmfan/277/head -> origin/gh/xmfan/277/head 2025-08-26T19:37:21.4066900Z * [new branch] gh/xmfan/277/orig -> origin/gh/xmfan/277/orig 2025-08-26T19:37:21.4067368Z * [new branch] gh/xmfan/278/base -> origin/gh/xmfan/278/base 2025-08-26T19:37:21.4067884Z * [new branch] gh/xmfan/278/head -> origin/gh/xmfan/278/head 2025-08-26T19:37:21.4068402Z * [new branch] gh/xmfan/278/orig -> origin/gh/xmfan/278/orig 2025-08-26T19:37:21.4068863Z * [new branch] gh/xmfan/279/base -> origin/gh/xmfan/279/base 2025-08-26T19:37:21.4069332Z * [new branch] gh/xmfan/279/head -> origin/gh/xmfan/279/head 2025-08-26T19:37:21.4069799Z * [new branch] gh/xmfan/279/orig -> origin/gh/xmfan/279/orig 2025-08-26T19:37:21.4070267Z * [new branch] gh/xmfan/280/base -> origin/gh/xmfan/280/base 2025-08-26T19:37:21.4070737Z * [new branch] gh/xmfan/280/head -> origin/gh/xmfan/280/head 2025-08-26T19:37:21.4071201Z * [new branch] gh/xmfan/280/orig -> origin/gh/xmfan/280/orig 2025-08-26T19:37:21.4071668Z * [new branch] gh/xmfan/281/base -> origin/gh/xmfan/281/base 2025-08-26T19:37:21.4500491Z * [new branch] gh/xmfan/281/head -> origin/gh/xmfan/281/head 2025-08-26T19:37:21.4501066Z * [new branch] gh/xmfan/281/orig -> origin/gh/xmfan/281/orig 2025-08-26T19:37:21.4501553Z * [new branch] gh/xmfan/282/base -> origin/gh/xmfan/282/base 2025-08-26T19:37:21.4502028Z * [new branch] gh/xmfan/282/head -> origin/gh/xmfan/282/head 2025-08-26T19:37:21.4502517Z * [new branch] gh/xmfan/283/base -> origin/gh/xmfan/283/base 2025-08-26T19:37:21.4502979Z * [new branch] gh/xmfan/283/head -> origin/gh/xmfan/283/head 2025-08-26T19:37:21.4503443Z * [new branch] gh/xmfan/283/orig -> origin/gh/xmfan/283/orig 2025-08-26T19:37:21.4504020Z * [new branch] gh/xuanzhang816/14/base -> origin/gh/xuanzhang816/14/base 2025-08-26T19:37:21.4504551Z * [new branch] gh/xuanzhang816/14/head -> origin/gh/xuanzhang816/14/head 2025-08-26T19:37:21.4505155Z * [new branch] gh/xuanzhang816/14/orig -> origin/gh/xuanzhang816/14/orig 2025-08-26T19:37:21.4505719Z * [new branch] gh/xuanzhang816/19/base -> origin/gh/xuanzhang816/19/base 2025-08-26T19:37:21.4506252Z * [new branch] gh/xuanzhang816/19/head -> origin/gh/xuanzhang816/19/head 2025-08-26T19:37:21.4506780Z * [new branch] gh/xuanzhang816/19/orig -> origin/gh/xuanzhang816/19/orig 2025-08-26T19:37:21.4507298Z * [new branch] gh/xuanzhang816/22/base -> origin/gh/xuanzhang816/22/base 2025-08-26T19:37:21.4507818Z * [new branch] gh/xuanzhang816/22/head -> origin/gh/xuanzhang816/22/head 2025-08-26T19:37:21.4508335Z * [new branch] gh/xuanzhang816/22/orig -> origin/gh/xuanzhang816/22/orig 2025-08-26T19:37:21.4508870Z * [new branch] gh/xuanzhang816/23/base -> origin/gh/xuanzhang816/23/base 2025-08-26T19:37:21.4509402Z * [new branch] gh/xuanzhang816/23/head -> origin/gh/xuanzhang816/23/head 2025-08-26T19:37:21.4510649Z * [new branch] gh/xuanzhang816/23/orig -> origin/gh/xuanzhang816/23/orig 2025-08-26T19:37:21.4511198Z * [new branch] gh/xuanzhang816/24/base -> origin/gh/xuanzhang816/24/base 2025-08-26T19:37:21.4511720Z * [new branch] gh/xuanzhang816/24/head -> origin/gh/xuanzhang816/24/head 2025-08-26T19:37:21.4512247Z * [new branch] gh/xuanzhang816/24/orig -> origin/gh/xuanzhang816/24/orig 2025-08-26T19:37:21.4512762Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-08-26T19:37:21.4513260Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-08-26T19:37:21.4513757Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-08-26T19:37:21.4514239Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-08-26T19:37:21.4514734Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-08-26T19:37:21.4515231Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-08-26T19:37:21.4515712Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-08-26T19:37:21.4516205Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-08-26T19:37:21.4516688Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-08-26T19:37:21.4517191Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-08-26T19:37:21.4517669Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-08-26T19:37:21.4518157Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-08-26T19:37:21.4518657Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-08-26T19:37:21.4519481Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-08-26T19:37:21.4519986Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-08-26T19:37:21.4520471Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-08-26T19:37:21.4520966Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-08-26T19:37:21.4521461Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-08-26T19:37:21.4521948Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-08-26T19:37:21.4522440Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-08-26T19:37:21.4522924Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-08-26T19:37:21.4523421Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-08-26T19:37:21.4523915Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-08-26T19:37:21.4524404Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-08-26T19:37:21.4524891Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-08-26T19:37:21.4944865Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-08-26T19:37:21.4945439Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-08-26T19:37:21.4945941Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-08-26T19:37:21.4946439Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-08-26T19:37:21.4946941Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-08-26T19:37:21.4947447Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-08-26T19:37:21.4948102Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-08-26T19:37:21.4948613Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-08-26T19:37:21.4949102Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-08-26T19:37:21.4949595Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-08-26T19:37:21.4950078Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-08-26T19:37:21.4950576Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-08-26T19:37:21.4951065Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-08-26T19:37:21.4951548Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-08-26T19:37:21.4952039Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-08-26T19:37:21.4952523Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-08-26T19:37:21.4953013Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-08-26T19:37:21.4953511Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-08-26T19:37:21.4953993Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-08-26T19:37:21.4954485Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-08-26T19:37:21.4954964Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-08-26T19:37:21.4955454Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-08-26T19:37:21.4956427Z * [new branch] gh/yangw-dev/1/base -> origin/gh/yangw-dev/1/base 2025-08-26T19:37:21.4956935Z * [new branch] gh/yangw-dev/10/base -> origin/gh/yangw-dev/10/base 2025-08-26T19:37:21.4957436Z * [new branch] gh/yangw-dev/10/head -> origin/gh/yangw-dev/10/head 2025-08-26T19:37:21.4957930Z * [new branch] gh/yangw-dev/10/orig -> origin/gh/yangw-dev/10/orig 2025-08-26T19:37:21.4958427Z * [new branch] gh/yangw-dev/11/base -> origin/gh/yangw-dev/11/base 2025-08-26T19:37:21.4958916Z * [new branch] gh/yangw-dev/11/head -> origin/gh/yangw-dev/11/head 2025-08-26T19:37:21.4959408Z * [new branch] gh/yangw-dev/11/orig -> origin/gh/yangw-dev/11/orig 2025-08-26T19:37:21.4959899Z * [new branch] gh/yangw-dev/12/base -> origin/gh/yangw-dev/12/base 2025-08-26T19:37:21.4960385Z * [new branch] gh/yangw-dev/12/head -> origin/gh/yangw-dev/12/head 2025-08-26T19:37:21.4960882Z * [new branch] gh/yangw-dev/12/orig -> origin/gh/yangw-dev/12/orig 2025-08-26T19:37:21.4961372Z * [new branch] gh/yangw-dev/13/base -> origin/gh/yangw-dev/13/base 2025-08-26T19:37:21.4961861Z * [new branch] gh/yangw-dev/13/head -> origin/gh/yangw-dev/13/head 2025-08-26T19:37:21.4962349Z * [new branch] gh/yangw-dev/13/orig -> origin/gh/yangw-dev/13/orig 2025-08-26T19:37:21.4962830Z * [new branch] gh/yangw-dev/14/base -> origin/gh/yangw-dev/14/base 2025-08-26T19:37:21.4963322Z * [new branch] gh/yangw-dev/14/head -> origin/gh/yangw-dev/14/head 2025-08-26T19:37:21.4963805Z * [new branch] gh/yangw-dev/14/orig -> origin/gh/yangw-dev/14/orig 2025-08-26T19:37:21.4964299Z * [new branch] gh/yangw-dev/15/base -> origin/gh/yangw-dev/15/base 2025-08-26T19:37:21.4964788Z * [new branch] gh/yangw-dev/15/head -> origin/gh/yangw-dev/15/head 2025-08-26T19:37:21.4965283Z * [new branch] gh/yangw-dev/15/orig -> origin/gh/yangw-dev/15/orig 2025-08-26T19:37:21.4965869Z * [new branch] gh/yangw-dev/16/base -> origin/gh/yangw-dev/16/base 2025-08-26T19:37:21.4966369Z * [new branch] gh/yangw-dev/16/head -> origin/gh/yangw-dev/16/head 2025-08-26T19:37:21.4966867Z * [new branch] gh/yangw-dev/16/orig -> origin/gh/yangw-dev/16/orig 2025-08-26T19:37:21.4967357Z * [new branch] gh/yangw-dev/17/base -> origin/gh/yangw-dev/17/base 2025-08-26T19:37:21.4967859Z * [new branch] gh/yangw-dev/17/head -> origin/gh/yangw-dev/17/head 2025-08-26T19:37:21.5372166Z * [new branch] gh/yangw-dev/17/orig -> origin/gh/yangw-dev/17/orig 2025-08-26T19:37:21.5372744Z * [new branch] gh/yangw-dev/18/base -> origin/gh/yangw-dev/18/base 2025-08-26T19:37:21.5373279Z * [new branch] gh/yangw-dev/18/head -> origin/gh/yangw-dev/18/head 2025-08-26T19:37:21.5373793Z * [new branch] gh/yangw-dev/18/orig -> origin/gh/yangw-dev/18/orig 2025-08-26T19:37:21.5374281Z * [new branch] gh/yangw-dev/19/base -> origin/gh/yangw-dev/19/base 2025-08-26T19:37:21.5374775Z * [new branch] gh/yangw-dev/19/head -> origin/gh/yangw-dev/19/head 2025-08-26T19:37:21.5375259Z * [new branch] gh/yangw-dev/19/orig -> origin/gh/yangw-dev/19/orig 2025-08-26T19:37:21.5375763Z * [new branch] gh/yangw-dev/2/base -> origin/gh/yangw-dev/2/base 2025-08-26T19:37:21.5376263Z * [new branch] gh/yangw-dev/2/head -> origin/gh/yangw-dev/2/head 2025-08-26T19:37:21.5376751Z * [new branch] gh/yangw-dev/20/base -> origin/gh/yangw-dev/20/base 2025-08-26T19:37:21.5377254Z * [new branch] gh/yangw-dev/20/head -> origin/gh/yangw-dev/20/head 2025-08-26T19:37:21.5378240Z * [new branch] gh/yangw-dev/20/orig -> origin/gh/yangw-dev/20/orig 2025-08-26T19:37:21.5378753Z * [new branch] gh/yangw-dev/21/base -> origin/gh/yangw-dev/21/base 2025-08-26T19:37:21.5379253Z * [new branch] gh/yangw-dev/21/head -> origin/gh/yangw-dev/21/head 2025-08-26T19:37:21.5379741Z * [new branch] gh/yangw-dev/21/orig -> origin/gh/yangw-dev/21/orig 2025-08-26T19:37:21.5380231Z * [new branch] gh/yangw-dev/22/base -> origin/gh/yangw-dev/22/base 2025-08-26T19:37:21.5380713Z * [new branch] gh/yangw-dev/22/head -> origin/gh/yangw-dev/22/head 2025-08-26T19:37:21.5381207Z * [new branch] gh/yangw-dev/22/orig -> origin/gh/yangw-dev/22/orig 2025-08-26T19:37:21.5381691Z * [new branch] gh/yangw-dev/23/base -> origin/gh/yangw-dev/23/base 2025-08-26T19:37:21.5382185Z * [new branch] gh/yangw-dev/23/head -> origin/gh/yangw-dev/23/head 2025-08-26T19:37:21.5382689Z * [new branch] gh/yangw-dev/23/orig -> origin/gh/yangw-dev/23/orig 2025-08-26T19:37:21.5383177Z * [new branch] gh/yangw-dev/3/base -> origin/gh/yangw-dev/3/base 2025-08-26T19:37:21.5383664Z * [new branch] gh/yangw-dev/3/head -> origin/gh/yangw-dev/3/head 2025-08-26T19:37:21.5384251Z * [new branch] gh/yangw-dev/4/base -> origin/gh/yangw-dev/4/base 2025-08-26T19:37:21.5384751Z * [new branch] gh/yangw-dev/4/head -> origin/gh/yangw-dev/4/head 2025-08-26T19:37:21.5385245Z * [new branch] gh/yangw-dev/5/base -> origin/gh/yangw-dev/5/base 2025-08-26T19:37:21.5385729Z * [new branch] gh/yangw-dev/5/head -> origin/gh/yangw-dev/5/head 2025-08-26T19:37:21.5386233Z * [new branch] gh/yangw-dev/6/base -> origin/gh/yangw-dev/6/base 2025-08-26T19:37:21.5386721Z * [new branch] gh/yangw-dev/6/head -> origin/gh/yangw-dev/6/head 2025-08-26T19:37:21.5387212Z * [new branch] gh/yangw-dev/7/base -> origin/gh/yangw-dev/7/base 2025-08-26T19:37:21.5387813Z * [new branch] gh/yangw-dev/7/head -> origin/gh/yangw-dev/7/head 2025-08-26T19:37:21.5388301Z * [new branch] gh/yangw-dev/8/base -> origin/gh/yangw-dev/8/base 2025-08-26T19:37:21.5388797Z * [new branch] gh/yangw-dev/8/head -> origin/gh/yangw-dev/8/head 2025-08-26T19:37:21.5389277Z * [new branch] gh/yangw-dev/8/orig -> origin/gh/yangw-dev/8/orig 2025-08-26T19:37:21.5389767Z * [new branch] gh/yangw-dev/9/base -> origin/gh/yangw-dev/9/base 2025-08-26T19:37:21.5390268Z * [new branch] gh/yangw-dev/9/head -> origin/gh/yangw-dev/9/head 2025-08-26T19:37:21.5390759Z * [new branch] gh/yangw-dev/9/orig -> origin/gh/yangw-dev/9/orig 2025-08-26T19:37:21.5391244Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-08-26T19:37:21.5391718Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-08-26T19:37:21.5392184Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-08-26T19:37:21.5392644Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-08-26T19:37:21.5393111Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-08-26T19:37:21.5393572Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-08-26T19:37:21.5394039Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-08-26T19:37:21.5394506Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-08-26T19:37:21.5394962Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-08-26T19:37:21.5395792Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-08-26T19:37:21.5824881Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-08-26T19:37:21.5825422Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-08-26T19:37:21.5825990Z * [new branch] gh/ydwu4/259/base -> origin/gh/ydwu4/259/base 2025-08-26T19:37:21.5826519Z * [new branch] gh/ydwu4/259/head -> origin/gh/ydwu4/259/head 2025-08-26T19:37:21.5826977Z * [new branch] gh/ydwu4/259/orig -> origin/gh/ydwu4/259/orig 2025-08-26T19:37:21.5827456Z * [new branch] gh/ydwu4/262/base -> origin/gh/ydwu4/262/base 2025-08-26T19:37:21.5827913Z * [new branch] gh/ydwu4/262/head -> origin/gh/ydwu4/262/head 2025-08-26T19:37:21.5828379Z * [new branch] gh/ydwu4/262/orig -> origin/gh/ydwu4/262/orig 2025-08-26T19:37:21.5828856Z * [new branch] gh/ydwu4/263/base -> origin/gh/ydwu4/263/base 2025-08-26T19:37:21.5829320Z * [new branch] gh/ydwu4/263/head -> origin/gh/ydwu4/263/head 2025-08-26T19:37:21.5829790Z * [new branch] gh/ydwu4/263/orig -> origin/gh/ydwu4/263/orig 2025-08-26T19:37:21.5830250Z * [new branch] gh/ydwu4/269/base -> origin/gh/ydwu4/269/base 2025-08-26T19:37:21.5830714Z * [new branch] gh/ydwu4/269/head -> origin/gh/ydwu4/269/head 2025-08-26T19:37:21.5831174Z * [new branch] gh/ydwu4/269/orig -> origin/gh/ydwu4/269/orig 2025-08-26T19:37:21.5831640Z * [new branch] gh/ydwu4/270/base -> origin/gh/ydwu4/270/base 2025-08-26T19:37:21.5832106Z * [new branch] gh/ydwu4/270/head -> origin/gh/ydwu4/270/head 2025-08-26T19:37:21.5832567Z * [new branch] gh/ydwu4/270/orig -> origin/gh/ydwu4/270/orig 2025-08-26T19:37:21.5833036Z * [new branch] gh/ydwu4/272/base -> origin/gh/ydwu4/272/base 2025-08-26T19:37:21.5833645Z * [new branch] gh/ydwu4/272/head -> origin/gh/ydwu4/272/head 2025-08-26T19:37:21.5834116Z * [new branch] gh/ydwu4/272/orig -> origin/gh/ydwu4/272/orig 2025-08-26T19:37:21.5834581Z * [new branch] gh/ydwu4/275/base -> origin/gh/ydwu4/275/base 2025-08-26T19:37:21.5835040Z * [new branch] gh/ydwu4/275/head -> origin/gh/ydwu4/275/head 2025-08-26T19:37:21.5835521Z * [new branch] gh/ydwu4/275/orig -> origin/gh/ydwu4/275/orig 2025-08-26T19:37:21.5835976Z * [new branch] gh/ydwu4/276/base -> origin/gh/ydwu4/276/base 2025-08-26T19:37:21.5836448Z * [new branch] gh/ydwu4/276/head -> origin/gh/ydwu4/276/head 2025-08-26T19:37:21.5836904Z * [new branch] gh/ydwu4/276/orig -> origin/gh/ydwu4/276/orig 2025-08-26T19:37:21.5837372Z * [new branch] gh/ydwu4/279/base -> origin/gh/ydwu4/279/base 2025-08-26T19:37:21.5837839Z * [new branch] gh/ydwu4/279/head -> origin/gh/ydwu4/279/head 2025-08-26T19:37:21.5838295Z * [new branch] gh/ydwu4/279/orig -> origin/gh/ydwu4/279/orig 2025-08-26T19:37:21.5838764Z * [new branch] gh/ydwu4/283/base -> origin/gh/ydwu4/283/base 2025-08-26T19:37:21.5839224Z * [new branch] gh/ydwu4/283/head -> origin/gh/ydwu4/283/head 2025-08-26T19:37:21.5839685Z * [new branch] gh/ydwu4/283/orig -> origin/gh/ydwu4/283/orig 2025-08-26T19:37:21.5840161Z * [new branch] gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-08-26T19:37:21.5840620Z * [new branch] gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-08-26T19:37:21.5841086Z * [new branch] gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig 2025-08-26T19:37:21.5842030Z * [new branch] gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-08-26T19:37:21.5842511Z * [new branch] gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-08-26T19:37:21.5842977Z * [new branch] gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig 2025-08-26T19:37:21.5843433Z * [new branch] gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-08-26T19:37:21.5843902Z * [new branch] gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-08-26T19:37:21.5844358Z * [new branch] gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig 2025-08-26T19:37:21.5844823Z * [new branch] gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-08-26T19:37:21.5845280Z * [new branch] gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-08-26T19:37:21.5845746Z * [new branch] gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig 2025-08-26T19:37:21.5846215Z * [new branch] gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-08-26T19:37:21.5846684Z * [new branch] gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-08-26T19:37:21.5847152Z * [new branch] gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig 2025-08-26T19:37:21.5847610Z * [new branch] gh/ydwu4/294/base -> origin/gh/ydwu4/294/base 2025-08-26T19:37:21.6272818Z * [new branch] gh/ydwu4/294/head -> origin/gh/ydwu4/294/head 2025-08-26T19:37:21.6273360Z * [new branch] gh/ydwu4/294/orig -> origin/gh/ydwu4/294/orig 2025-08-26T19:37:21.6273884Z * [new branch] gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-08-26T19:37:21.6274420Z * [new branch] gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-08-26T19:37:21.6274948Z * [new branch] gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig 2025-08-26T19:37:21.6275430Z * [new branch] gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-08-26T19:37:21.6276038Z * [new branch] gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-08-26T19:37:21.6276504Z * [new branch] gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig 2025-08-26T19:37:21.6276978Z * [new branch] gh/ydwu4/300/base -> origin/gh/ydwu4/300/base 2025-08-26T19:37:21.6277460Z * [new branch] gh/ydwu4/300/head -> origin/gh/ydwu4/300/head 2025-08-26T19:37:21.6277935Z * [new branch] gh/ydwu4/300/orig -> origin/gh/ydwu4/300/orig 2025-08-26T19:37:21.6278412Z * [new branch] gh/ydwu4/301/base -> origin/gh/ydwu4/301/base 2025-08-26T19:37:21.6278868Z * [new branch] gh/ydwu4/301/head -> origin/gh/ydwu4/301/head 2025-08-26T19:37:21.6279335Z * [new branch] gh/ydwu4/301/orig -> origin/gh/ydwu4/301/orig 2025-08-26T19:37:21.6279838Z * [new branch] gh/ydwu4/302/base -> origin/gh/ydwu4/302/base 2025-08-26T19:37:21.6280357Z * [new branch] gh/ydwu4/302/head -> origin/gh/ydwu4/302/head 2025-08-26T19:37:21.6280869Z * [new branch] gh/ydwu4/302/orig -> origin/gh/ydwu4/302/orig 2025-08-26T19:37:21.6281321Z * [new branch] gh/ydwu4/303/base -> origin/gh/ydwu4/303/base 2025-08-26T19:37:21.6281782Z * [new branch] gh/ydwu4/303/head -> origin/gh/ydwu4/303/head 2025-08-26T19:37:21.6282237Z * [new branch] gh/ydwu4/303/orig -> origin/gh/ydwu4/303/orig 2025-08-26T19:37:21.6282706Z * [new branch] gh/ydwu4/304/base -> origin/gh/ydwu4/304/base 2025-08-26T19:37:21.6283167Z * [new branch] gh/ydwu4/304/head -> origin/gh/ydwu4/304/head 2025-08-26T19:37:21.6284025Z * [new branch] gh/ydwu4/304/orig -> origin/gh/ydwu4/304/orig 2025-08-26T19:37:21.6284491Z * [new branch] gh/ydwu4/305/base -> origin/gh/ydwu4/305/base 2025-08-26T19:37:21.6284957Z * [new branch] gh/ydwu4/305/head -> origin/gh/ydwu4/305/head 2025-08-26T19:37:21.6285427Z * [new branch] gh/ydwu4/305/orig -> origin/gh/ydwu4/305/orig 2025-08-26T19:37:21.6285956Z * [new branch] gh/ydwu4/306/base -> origin/gh/ydwu4/306/base 2025-08-26T19:37:21.6286458Z * [new branch] gh/ydwu4/306/head -> origin/gh/ydwu4/306/head 2025-08-26T19:37:21.6286969Z * [new branch] gh/ydwu4/306/orig -> origin/gh/ydwu4/306/orig 2025-08-26T19:37:21.6287426Z * [new branch] gh/ydwu4/307/base -> origin/gh/ydwu4/307/base 2025-08-26T19:37:21.6287885Z * [new branch] gh/ydwu4/307/head -> origin/gh/ydwu4/307/head 2025-08-26T19:37:21.6288350Z * [new branch] gh/ydwu4/307/orig -> origin/gh/ydwu4/307/orig 2025-08-26T19:37:21.6288817Z * [new branch] gh/ydwu4/308/base -> origin/gh/ydwu4/308/base 2025-08-26T19:37:21.6289284Z * [new branch] gh/ydwu4/308/head -> origin/gh/ydwu4/308/head 2025-08-26T19:37:21.6289745Z * [new branch] gh/ydwu4/308/orig -> origin/gh/ydwu4/308/orig 2025-08-26T19:37:21.6290203Z * [new branch] gh/ydwu4/309/base -> origin/gh/ydwu4/309/base 2025-08-26T19:37:21.6290659Z * [new branch] gh/ydwu4/309/head -> origin/gh/ydwu4/309/head 2025-08-26T19:37:21.6291122Z * [new branch] gh/ydwu4/309/orig -> origin/gh/ydwu4/309/orig 2025-08-26T19:37:21.6291582Z * [new branch] gh/ydwu4/310/base -> origin/gh/ydwu4/310/base 2025-08-26T19:37:21.6292036Z * [new branch] gh/ydwu4/310/head -> origin/gh/ydwu4/310/head 2025-08-26T19:37:21.6292513Z * [new branch] gh/ydwu4/310/orig -> origin/gh/ydwu4/310/orig 2025-08-26T19:37:21.6293054Z * [new branch] gh/ydwu4/311/base -> origin/gh/ydwu4/311/base 2025-08-26T19:37:21.6293528Z * [new branch] gh/ydwu4/311/head -> origin/gh/ydwu4/311/head 2025-08-26T19:37:21.6293995Z * [new branch] gh/ydwu4/311/orig -> origin/gh/ydwu4/311/orig 2025-08-26T19:37:21.6294451Z * [new branch] gh/ydwu4/312/base -> origin/gh/ydwu4/312/base 2025-08-26T19:37:21.6294925Z * [new branch] gh/ydwu4/312/head -> origin/gh/ydwu4/312/head 2025-08-26T19:37:21.6295382Z * [new branch] gh/ydwu4/312/orig -> origin/gh/ydwu4/312/orig 2025-08-26T19:37:21.6295853Z * [new branch] gh/ydwu4/313/base -> origin/gh/ydwu4/313/base 2025-08-26T19:37:21.6296310Z * [new branch] gh/ydwu4/313/head -> origin/gh/ydwu4/313/head 2025-08-26T19:37:21.6715725Z * [new branch] gh/ydwu4/313/orig -> origin/gh/ydwu4/313/orig 2025-08-26T19:37:21.6716274Z * [new branch] gh/ydwu4/314/base -> origin/gh/ydwu4/314/base 2025-08-26T19:37:21.6716745Z * [new branch] gh/ydwu4/314/head -> origin/gh/ydwu4/314/head 2025-08-26T19:37:21.6717213Z * [new branch] gh/ydwu4/314/orig -> origin/gh/ydwu4/314/orig 2025-08-26T19:37:21.6717726Z * [new branch] gh/ydwu4/315/base -> origin/gh/ydwu4/315/base 2025-08-26T19:37:21.6718240Z * [new branch] gh/ydwu4/315/head -> origin/gh/ydwu4/315/head 2025-08-26T19:37:21.6718711Z * [new branch] gh/ydwu4/315/orig -> origin/gh/ydwu4/315/orig 2025-08-26T19:37:21.6719163Z * [new branch] gh/ydwu4/316/base -> origin/gh/ydwu4/316/base 2025-08-26T19:37:21.6719628Z * [new branch] gh/ydwu4/316/head -> origin/gh/ydwu4/316/head 2025-08-26T19:37:21.6720549Z * [new branch] gh/ydwu4/316/orig -> origin/gh/ydwu4/316/orig 2025-08-26T19:37:21.6721028Z * [new branch] gh/ydwu4/317/base -> origin/gh/ydwu4/317/base 2025-08-26T19:37:21.6721506Z * [new branch] gh/ydwu4/317/head -> origin/gh/ydwu4/317/head 2025-08-26T19:37:21.6721965Z * [new branch] gh/ydwu4/317/orig -> origin/gh/ydwu4/317/orig 2025-08-26T19:37:21.6722428Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-08-26T19:37:21.6722882Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-08-26T19:37:21.6723408Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-08-26T19:37:21.6723919Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-08-26T19:37:21.6724373Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-08-26T19:37:21.6724839Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-08-26T19:37:21.6725303Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-08-26T19:37:21.6725764Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-08-26T19:37:21.6726239Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-08-26T19:37:21.6726695Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-08-26T19:37:21.6727178Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-08-26T19:37:21.6727688Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-08-26T19:37:21.6728195Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-08-26T19:37:21.6728702Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-08-26T19:37:21.6729277Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-08-26T19:37:21.6729878Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-08-26T19:37:21.6730375Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-08-26T19:37:21.6730875Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-08-26T19:37:21.6731362Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-08-26T19:37:21.6731859Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-08-26T19:37:21.6732375Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-08-26T19:37:21.6732878Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-08-26T19:37:21.6733388Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-08-26T19:37:21.6733886Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-08-26T19:37:21.6734385Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-08-26T19:37:21.6734964Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-08-26T19:37:21.6735471Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-08-26T19:37:21.6735983Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-08-26T19:37:21.6736477Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-08-26T19:37:21.6736977Z * [new branch] gh/zhxchen17/25/base -> origin/gh/zhxchen17/25/base 2025-08-26T19:37:21.6737471Z * [new branch] gh/zhxchen17/25/head -> origin/gh/zhxchen17/25/head 2025-08-26T19:37:21.6738346Z * [new branch] gh/zhxchen17/25/orig -> origin/gh/zhxchen17/25/orig 2025-08-26T19:37:21.6738853Z * [new branch] gh/zhxchen17/31/base -> origin/gh/zhxchen17/31/base 2025-08-26T19:37:21.6739351Z * [new branch] gh/zhxchen17/31/head -> origin/gh/zhxchen17/31/head 2025-08-26T19:37:21.7160771Z * [new branch] gh/zhxchen17/31/orig -> origin/gh/zhxchen17/31/orig 2025-08-26T19:37:21.7161358Z * [new branch] gh/zhxchen17/34/base -> origin/gh/zhxchen17/34/base 2025-08-26T19:37:21.7161858Z * [new branch] gh/zhxchen17/34/head -> origin/gh/zhxchen17/34/head 2025-08-26T19:37:21.7162362Z * [new branch] gh/zhxchen17/35/base -> origin/gh/zhxchen17/35/base 2025-08-26T19:37:21.7162854Z * [new branch] gh/zhxchen17/35/head -> origin/gh/zhxchen17/35/head 2025-08-26T19:37:21.7172194Z * [new branch] gh/zhxchen17/36/base -> origin/gh/zhxchen17/36/base 2025-08-26T19:37:21.7173065Z * [new branch] gh/zhxchen17/36/head -> origin/gh/zhxchen17/36/head 2025-08-26T19:37:21.7173765Z * [new branch] gh/zhxchen17/36/orig -> origin/gh/zhxchen17/36/orig 2025-08-26T19:37:21.7174275Z * [new branch] gh/zhxchen17/37/base -> origin/gh/zhxchen17/37/base 2025-08-26T19:37:21.7174769Z * [new branch] gh/zhxchen17/37/head -> origin/gh/zhxchen17/37/head 2025-08-26T19:37:21.7175272Z * [new branch] gh/zhxchen17/37/orig -> origin/gh/zhxchen17/37/orig 2025-08-26T19:37:21.7175763Z * [new branch] gh/zhxchen17/38/base -> origin/gh/zhxchen17/38/base 2025-08-26T19:37:21.7176260Z * [new branch] gh/zhxchen17/38/head -> origin/gh/zhxchen17/38/head 2025-08-26T19:37:21.7176767Z * [new branch] gh/zhxchen17/38/orig -> origin/gh/zhxchen17/38/orig 2025-08-26T19:37:21.7177265Z * [new branch] gh/zhxchen17/39/base -> origin/gh/zhxchen17/39/base 2025-08-26T19:37:21.7177763Z * [new branch] gh/zhxchen17/39/head -> origin/gh/zhxchen17/39/head 2025-08-26T19:37:21.7178412Z * [new branch] gh/zhxchen17/39/orig -> origin/gh/zhxchen17/39/orig 2025-08-26T19:37:21.7178967Z * [new branch] gh/zhxchen17/40/base -> origin/gh/zhxchen17/40/base 2025-08-26T19:37:21.7179515Z * [new branch] gh/zhxchen17/40/head -> origin/gh/zhxchen17/40/head 2025-08-26T19:37:21.7180011Z * [new branch] gh/zhxchen17/40/orig -> origin/gh/zhxchen17/40/orig 2025-08-26T19:37:21.7180521Z * [new branch] gh/zhxchen17/41/base -> origin/gh/zhxchen17/41/base 2025-08-26T19:37:21.7181010Z * [new branch] gh/zhxchen17/41/head -> origin/gh/zhxchen17/41/head 2025-08-26T19:37:21.7181511Z * [new branch] gh/zhxchen17/41/orig -> origin/gh/zhxchen17/41/orig 2025-08-26T19:37:21.7182020Z * [new branch] gh/zhxchen17/42/base -> origin/gh/zhxchen17/42/base 2025-08-26T19:37:21.7182513Z * [new branch] gh/zhxchen17/42/head -> origin/gh/zhxchen17/42/head 2025-08-26T19:37:21.7183013Z * [new branch] gh/zhxchen17/42/orig -> origin/gh/zhxchen17/42/orig 2025-08-26T19:37:21.7183505Z * [new branch] gh/zhxchen17/43/base -> origin/gh/zhxchen17/43/base 2025-08-26T19:37:21.7184088Z * [new branch] gh/zhxchen17/43/head -> origin/gh/zhxchen17/43/head 2025-08-26T19:37:21.7184638Z * [new branch] gh/zhxchen17/43/orig -> origin/gh/zhxchen17/43/orig 2025-08-26T19:37:21.7185181Z * [new branch] gh/zklaus/10/base -> origin/gh/zklaus/10/base 2025-08-26T19:37:21.7185666Z * [new branch] gh/zklaus/10/head -> origin/gh/zklaus/10/head 2025-08-26T19:37:21.7186143Z * [new branch] gh/zklaus/10/orig -> origin/gh/zklaus/10/orig 2025-08-26T19:37:21.7187088Z * [new branch] gh/zklaus/11/base -> origin/gh/zklaus/11/base 2025-08-26T19:37:21.7187562Z * [new branch] gh/zklaus/11/head -> origin/gh/zklaus/11/head 2025-08-26T19:37:21.7188037Z * [new branch] gh/zklaus/11/orig -> origin/gh/zklaus/11/orig 2025-08-26T19:37:21.7188516Z * [new branch] gh/zklaus/12/base -> origin/gh/zklaus/12/base 2025-08-26T19:37:21.7188980Z * [new branch] gh/zklaus/12/head -> origin/gh/zklaus/12/head 2025-08-26T19:37:21.7189454Z * [new branch] gh/zklaus/12/orig -> origin/gh/zklaus/12/orig 2025-08-26T19:37:21.7189915Z * [new branch] gh/zklaus/14/base -> origin/gh/zklaus/14/base 2025-08-26T19:37:21.7190441Z * [new branch] gh/zklaus/14/head -> origin/gh/zklaus/14/head 2025-08-26T19:37:21.7190958Z * [new branch] gh/zklaus/14/orig -> origin/gh/zklaus/14/orig 2025-08-26T19:37:21.7191435Z * [new branch] gh/zklaus/15/base -> origin/gh/zklaus/15/base 2025-08-26T19:37:21.7191915Z * [new branch] gh/zklaus/15/head -> origin/gh/zklaus/15/head 2025-08-26T19:37:21.7192388Z * [new branch] gh/zklaus/15/orig -> origin/gh/zklaus/15/orig 2025-08-26T19:37:21.7192857Z * [new branch] gh/zklaus/16/base -> origin/gh/zklaus/16/base 2025-08-26T19:37:21.7193328Z * [new branch] gh/zklaus/16/head -> origin/gh/zklaus/16/head 2025-08-26T19:37:21.7193805Z * [new branch] gh/zklaus/16/orig -> origin/gh/zklaus/16/orig 2025-08-26T19:37:21.7625806Z * [new branch] gh/zklaus/17/base -> origin/gh/zklaus/17/base 2025-08-26T19:37:21.7626327Z * [new branch] gh/zklaus/17/head -> origin/gh/zklaus/17/head 2025-08-26T19:37:21.7626813Z * [new branch] gh/zklaus/17/orig -> origin/gh/zklaus/17/orig 2025-08-26T19:37:21.7627304Z * [new branch] gh/zklaus/18/base -> origin/gh/zklaus/18/base 2025-08-26T19:37:21.7627895Z * [new branch] gh/zklaus/18/head -> origin/gh/zklaus/18/head 2025-08-26T19:37:21.7628385Z * [new branch] gh/zklaus/18/orig -> origin/gh/zklaus/18/orig 2025-08-26T19:37:21.7628851Z * [new branch] gh/zklaus/19/base -> origin/gh/zklaus/19/base 2025-08-26T19:37:21.7629335Z * [new branch] gh/zklaus/19/head -> origin/gh/zklaus/19/head 2025-08-26T19:37:21.7629798Z * [new branch] gh/zklaus/19/orig -> origin/gh/zklaus/19/orig 2025-08-26T19:37:21.7630294Z * [new branch] gh/zklaus/7/base -> origin/gh/zklaus/7/base 2025-08-26T19:37:21.7630815Z * [new branch] gh/zklaus/7/head -> origin/gh/zklaus/7/head 2025-08-26T19:37:21.7631316Z * [new branch] gh/zklaus/7/orig -> origin/gh/zklaus/7/orig 2025-08-26T19:37:21.7631786Z * [new branch] gh/zklaus/9/base -> origin/gh/zklaus/9/base 2025-08-26T19:37:21.7632248Z * [new branch] gh/zklaus/9/head -> origin/gh/zklaus/9/head 2025-08-26T19:37:21.7632711Z * [new branch] gh/zklaus/9/orig -> origin/gh/zklaus/9/orig 2025-08-26T19:37:21.7633193Z * [new branch] gh/zou3519/1175/base -> origin/gh/zou3519/1175/base 2025-08-26T19:37:21.7633678Z * [new branch] gh/zou3519/1175/head -> origin/gh/zou3519/1175/head 2025-08-26T19:37:21.7634164Z * [new branch] gh/zou3519/1175/orig -> origin/gh/zou3519/1175/orig 2025-08-26T19:37:21.7634640Z * [new branch] gh/zou3519/1177/base -> origin/gh/zou3519/1177/base 2025-08-26T19:37:21.7635128Z * [new branch] gh/zou3519/1177/head -> origin/gh/zou3519/1177/head 2025-08-26T19:37:21.7636037Z * [new branch] gh/zou3519/1177/orig -> origin/gh/zou3519/1177/orig 2025-08-26T19:37:21.7636574Z * [new branch] gh/zou3519/1188/base -> origin/gh/zou3519/1188/base 2025-08-26T19:37:21.7637112Z * [new branch] gh/zou3519/1188/head -> origin/gh/zou3519/1188/head 2025-08-26T19:37:21.7637585Z * [new branch] gh/zou3519/1188/orig -> origin/gh/zou3519/1188/orig 2025-08-26T19:37:21.7638089Z * [new branch] gh/zou3519/1189/base -> origin/gh/zou3519/1189/base 2025-08-26T19:37:21.7638572Z * [new branch] gh/zou3519/1189/head -> origin/gh/zou3519/1189/head 2025-08-26T19:37:21.7639046Z * [new branch] gh/zou3519/1189/orig -> origin/gh/zou3519/1189/orig 2025-08-26T19:37:21.7639539Z * [new branch] gh/zou3519/1190/base -> origin/gh/zou3519/1190/base 2025-08-26T19:37:21.7640010Z * [new branch] gh/zou3519/1190/head -> origin/gh/zou3519/1190/head 2025-08-26T19:37:21.7640494Z * [new branch] gh/zou3519/1190/orig -> origin/gh/zou3519/1190/orig 2025-08-26T19:37:21.7640978Z * [new branch] gh/zou3519/1191/base -> origin/gh/zou3519/1191/base 2025-08-26T19:37:21.7641459Z * [new branch] gh/zou3519/1191/head -> origin/gh/zou3519/1191/head 2025-08-26T19:37:21.7641948Z * [new branch] gh/zou3519/1191/orig -> origin/gh/zou3519/1191/orig 2025-08-26T19:37:21.7642493Z * [new branch] gh/zou3519/1192/base -> origin/gh/zou3519/1192/base 2025-08-26T19:37:21.7643027Z * [new branch] gh/zou3519/1192/head -> origin/gh/zou3519/1192/head 2025-08-26T19:37:21.7643508Z * [new branch] gh/zou3519/1192/orig -> origin/gh/zou3519/1192/orig 2025-08-26T19:37:21.7643998Z * [new branch] gh/zpcore/1/base -> origin/gh/zpcore/1/base 2025-08-26T19:37:21.7644480Z * [new branch] gh/zpcore/1/head -> origin/gh/zpcore/1/head 2025-08-26T19:37:21.7644965Z * [new branch] gh/zpcore/10/base -> origin/gh/zpcore/10/base 2025-08-26T19:37:21.7645540Z * [new branch] gh/zpcore/10/head -> origin/gh/zpcore/10/head 2025-08-26T19:37:21.7646011Z * [new branch] gh/zpcore/10/orig -> origin/gh/zpcore/10/orig 2025-08-26T19:37:21.7646501Z * [new branch] gh/zpcore/11/base -> origin/gh/zpcore/11/base 2025-08-26T19:37:21.7646983Z * [new branch] gh/zpcore/11/head -> origin/gh/zpcore/11/head 2025-08-26T19:37:21.7647456Z * [new branch] gh/zpcore/11/orig -> origin/gh/zpcore/11/orig 2025-08-26T19:37:21.7647981Z * [new branch] gh/zpcore/12/base -> origin/gh/zpcore/12/base 2025-08-26T19:37:21.7648500Z * [new branch] gh/zpcore/12/head -> origin/gh/zpcore/12/head 2025-08-26T19:37:21.7648964Z * [new branch] gh/zpcore/12/orig -> origin/gh/zpcore/12/orig 2025-08-26T19:37:21.7649443Z * [new branch] gh/zpcore/13/base -> origin/gh/zpcore/13/base 2025-08-26T19:37:21.8078967Z * [new branch] gh/zpcore/13/head -> origin/gh/zpcore/13/head 2025-08-26T19:37:21.8079516Z * [new branch] gh/zpcore/13/orig -> origin/gh/zpcore/13/orig 2025-08-26T19:37:21.8080003Z * [new branch] gh/zpcore/2/base -> origin/gh/zpcore/2/base 2025-08-26T19:37:21.8080473Z * [new branch] gh/zpcore/2/head -> origin/gh/zpcore/2/head 2025-08-26T19:37:21.8080957Z * [new branch] gh/zpcore/3/base -> origin/gh/zpcore/3/base 2025-08-26T19:37:21.8081411Z * [new branch] gh/zpcore/3/head -> origin/gh/zpcore/3/head 2025-08-26T19:37:21.8081874Z * [new branch] gh/zpcore/4/base -> origin/gh/zpcore/4/base 2025-08-26T19:37:21.8082344Z * [new branch] gh/zpcore/4/head -> origin/gh/zpcore/4/head 2025-08-26T19:37:21.8082952Z * [new branch] gh/zpcore/5/base -> origin/gh/zpcore/5/base 2025-08-26T19:37:21.8083420Z * [new branch] gh/zpcore/5/head -> origin/gh/zpcore/5/head 2025-08-26T19:37:21.8083883Z * [new branch] gh/zpcore/6/base -> origin/gh/zpcore/6/base 2025-08-26T19:37:21.8084403Z * [new branch] gh/zpcore/6/head -> origin/gh/zpcore/6/head 2025-08-26T19:37:21.8084916Z * [new branch] gh/zpcore/7/base -> origin/gh/zpcore/7/base 2025-08-26T19:37:21.8085369Z * [new branch] gh/zpcore/7/head -> origin/gh/zpcore/7/head 2025-08-26T19:37:21.8085830Z * [new branch] gh/zpcore/8/base -> origin/gh/zpcore/8/base 2025-08-26T19:37:21.8086295Z * [new branch] gh/zpcore/8/head -> origin/gh/zpcore/8/head 2025-08-26T19:37:21.8086755Z * [new branch] gh/zpcore/9/head -> origin/gh/zpcore/9/head 2025-08-26T19:37:21.8087220Z * [new branch] gh/zpcore/9/orig -> origin/gh/zpcore/9/orig 2025-08-26T19:37:21.8087690Z * [new branch] google-main -> origin/google-main 2025-08-26T19:37:21.8088193Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-08-26T19:37:21.8088717Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-08-26T19:37:21.8089216Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-08-26T19:37:21.8089904Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-08-26T19:37:21.8090649Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-08-26T19:37:21.8091153Z * [new branch] hc_baseline -> origin/hc_baseline 2025-08-26T19:37:21.8091643Z * [new branch] headeronlyScalarType -> origin/headeronlyScalarType 2025-08-26T19:37:21.8092225Z * [new branch] hf_update -> origin/hf_update 2025-08-26T19:37:21.8092658Z * [new branch] hhh_decomp_mul -> origin/hhh_decomp_mul 2025-08-26T19:37:21.8093086Z * [new branch] hhh_rand -> origin/hhh_rand 2025-08-26T19:37:21.8093515Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-08-26T19:37:21.8093976Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-08-26T19:37:21.8094565Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-08-26T19:37:21.8095193Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-08-26T19:37:21.8095821Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-08-26T19:37:21.8096439Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-08-26T19:37:21.8096981Z * [new branch] inductordecompfix -> origin/inductordecompfix 2025-08-26T19:37:21.8097440Z * [new branch] inline -> origin/inline 2025-08-26T19:37:21.8097842Z * [new branch] inlining -> origin/inlining 2025-08-26T19:37:21.8098294Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-08-26T19:37:21.8098736Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-08-26T19:37:21.8099186Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-08-26T19:37:21.8099646Z * [new branch] issue#58739 -> origin/issue#58739 2025-08-26T19:37:21.8100067Z * [new branch] issue-154849 -> origin/issue-154849 2025-08-26T19:37:21.8100710Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-08-26T19:37:21.8101460Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-08-26T19:37:21.8102209Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-08-26T19:37:21.8102823Z * [new branch] justinchu/attention-tests -> origin/justinchu/attention-tests 2025-08-26T19:37:21.8541145Z * [new branch] justinchu/native-qdq -> origin/justinchu/native-qdq 2025-08-26T19:37:21.8541715Z * [new branch] justinchu/ort-122 -> origin/justinchu/ort-122 2025-08-26T19:37:21.8542265Z * [new branch] justinchuby/JitScalarType -> origin/justinchuby/JitScalarType 2025-08-26T19:37:21.8542839Z * [new branch] justinchuby/dynamo-true -> origin/justinchuby/dynamo-true 2025-08-26T19:37:21.8543386Z * [new branch] kainan666/xlf_debug -> origin/kainan666/xlf_debug 2025-08-26T19:37:21.8543862Z * [new branch] kainan_test -> origin/kainan_test 2025-08-26T19:37:21.8544405Z * [new branch] learnablebias -> origin/learnablebias 2025-08-26T19:37:21.8545008Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-08-26T19:37:21.8545710Z * [new branch] lessw2020/fix_cutlass_cache_error -> origin/lessw2020/fix_cutlass_cache_error 2025-08-26T19:37:21.8546321Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-08-26T19:37:21.8546832Z * [new branch] liaoxuan/tags_issue -> origin/liaoxuan/tags_issue 2025-08-26T19:37:21.8547399Z * [new branch] liaoxuan/test_fa_disable_softmax -> origin/liaoxuan/test_fa_disable_softmax 2025-08-26T19:37:21.8547978Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-08-26T19:37:21.8548494Z * [new branch] lintbuilddocker -> origin/lintbuilddocker 2025-08-26T19:37:21.8549110Z * [new branch] llama4-stable -> origin/llama4-stable 2025-08-26T19:37:21.8549551Z * [new branch] logdetfix -> origin/logdetfix 2025-08-26T19:37:21.8550004Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-08-26T19:37:21.8550522Z * [new branch] lucaskabela/#94773 -> origin/lucaskabela/#94773 2025-08-26T19:37:21.8551077Z * [new branch] lucaskabela/fix_157452 -> origin/lucaskabela/fix_157452 2025-08-26T19:37:21.8551647Z * [new branch] lucaskabela/func_under_decomp -> origin/lucaskabela/func_under_decomp 2025-08-26T19:37:21.8552282Z * [new branch] lucaskabela/functional_in_dynamo -> origin/lucaskabela/functional_in_dynamo 2025-08-26T19:37:21.8553012Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-08-26T19:37:21.8553672Z * [new branch] lucaskabela/issue_120648 -> origin/lucaskabela/issue_120648 2025-08-26T19:37:21.8554256Z * [new branch] lucaskabela/misc_typing_dynamo -> origin/lucaskabela/misc_typing_dynamo 2025-08-26T19:37:21.8554926Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-08-26T19:37:21.8555562Z * [new branch] lucaskabela/registry_fix -> origin/lucaskabela/registry_fix 2025-08-26T19:37:21.8556248Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-08-26T19:37:21.8557004Z * [new branch] lucaskabela/rnn_decomp -> origin/lucaskabela/rnn_decomp 2025-08-26T19:37:21.8557544Z * [new branch] lucaskabela/type_guards -> origin/lucaskabela/type_guards 2025-08-26T19:37:21.8558225Z * [new branch] lucaskabela/typing_backends -> origin/lucaskabela/typing_backends 2025-08-26T19:37:21.8558874Z * [new branch] lucaskabela/typing_compile_autograd -> origin/lucaskabela/typing_compile_autograd 2025-08-26T19:37:21.8559560Z * [new branch] lucaskabela/typing_output_graph -> origin/lucaskabela/typing_output_graph 2025-08-26T19:37:21.8560203Z * [new branch] lucaskabela/typing_source_guard -> origin/lucaskabela/typing_source_guard 2025-08-26T19:37:21.8560882Z * [new branch] lucaskabela/typing_symbolic_convert -> origin/lucaskabela/typing_symbolic_convert 2025-08-26T19:37:21.8561541Z * [new branch] lucaskabela/typing_utils.py -> origin/lucaskabela/typing_utils.py 2025-08-26T19:37:21.8562248Z * [new branch] lucaskabela/typing_utils_improvements -> origin/lucaskabela/typing_utils_improvements 2025-08-26T19:37:21.8562872Z * [new branch] main -> origin/main 2025-08-26T19:37:21.8563441Z * [new branch] main-enable-b200-distributed-tests -> origin/main-enable-b200-distributed-tests 2025-08-26T19:37:21.8564054Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-08-26T19:37:21.8564539Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-08-26T19:37:21.8565008Z * [new branch] malfet-patch-12 -> origin/malfet-patch-12 2025-08-26T19:37:21.8565482Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-08-26T19:37:21.8565967Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-08-26T19:37:21.8566422Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-08-26T19:37:21.8978136Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-08-26T19:37:21.8978674Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-08-26T19:37:21.8979156Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-08-26T19:37:21.8979757Z * [new branch] malfet-patch-7 -> origin/malfet-patch-7 2025-08-26T19:37:21.8980236Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-08-26T19:37:21.8980690Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-08-26T19:37:21.8981313Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-08-26T19:37:21.8981921Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-08-26T19:37:21.8982584Z * [new branch] manuel/test-ops-common-allow-mps -> origin/manuel/test-ops-common-allow-mps 2025-08-26T19:37:21.8983191Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-08-26T19:37:21.8983702Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-08-26T19:37:21.8984231Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-08-26T19:37:21.8984688Z * [new branch] mlazos/arg-renames -> origin/mlazos/arg-renames 2025-08-26T19:37:21.8985241Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-08-26T19:37:21.8985799Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-08-26T19:37:21.8986294Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-08-26T19:37:21.8986894Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-08-26T19:37:21.8987499Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-08-26T19:37:21.8988001Z * [new branch] mlazos/better-msg -> origin/mlazos/better-msg 2025-08-26T19:37:21.8988577Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-08-26T19:37:21.8989047Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-08-26T19:37:21.8989515Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-08-26T19:37:21.8989963Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-08-26T19:37:21.8990434Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-08-26T19:37:21.8990930Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-08-26T19:37:21.8991429Z * [new branch] mlazos/cuda-cmd-log -> origin/mlazos/cuda-cmd-log 2025-08-26T19:37:21.8991955Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-08-26T19:37:21.8992592Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-08-26T19:37:21.8993226Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-08-26T19:37:21.8993765Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-08-26T19:37:21.8994292Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-08-26T19:37:21.8994786Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-08-26T19:37:21.8995262Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-08-26T19:37:21.8995778Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-08-26T19:37:21.8996279Z * [new branch] mlazos/dc-attrs -> origin/mlazos/dc-attrs 2025-08-26T19:37:21.8996746Z * [new branch] mlazos/dc-helion -> origin/mlazos/dc-helion 2025-08-26T19:37:21.8997209Z * [new branch] mlazos/dict-fix -> origin/mlazos/dict-fix 2025-08-26T19:37:21.8997727Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-08-26T19:37:21.8998387Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-08-26T19:37:21.8998923Z * [new branch] mlazos/dupe-fix -> origin/mlazos/dupe-fix 2025-08-26T19:37:21.8999392Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-08-26T19:37:21.8999845Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-08-26T19:37:21.9000310Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-08-26T19:37:21.9000833Z * [new branch] mlazos/extract-examples -> origin/mlazos/extract-examples 2025-08-26T19:37:21.9001356Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-08-26T19:37:21.9001819Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-08-26T19:37:21.9002269Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-08-26T19:37:21.9442565Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-08-26T19:37:21.9443111Z * [new branch] mlazos/fp8-fixes -> origin/mlazos/fp8-fixes 2025-08-26T19:37:21.9443594Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-08-26T19:37:21.9444072Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-08-26T19:37:21.9444513Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-08-26T19:37:21.9444975Z * [new branch] mlazos/hash-hop -> origin/mlazos/hash-hop 2025-08-26T19:37:21.9445414Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-08-26T19:37:21.9445868Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-08-26T19:37:21.9446952Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-08-26T19:37:21.9447413Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-08-26T19:37:21.9447883Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-08-26T19:37:21.9448329Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-08-26T19:37:21.9448769Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-08-26T19:37:21.9449206Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-08-26T19:37:21.9449629Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-08-26T19:37:21.9450056Z * [new branch] mlazos/hc12 -> origin/mlazos/hc12 2025-08-26T19:37:21.9450475Z * [new branch] mlazos/hc13 -> origin/mlazos/hc13 2025-08-26T19:37:21.9450918Z * [new branch] mlazos/hc14 -> origin/mlazos/hc14 2025-08-26T19:37:21.9451346Z * [new branch] mlazos/hc15 -> origin/mlazos/hc15 2025-08-26T19:37:21.9451764Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-08-26T19:37:21.9452186Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-08-26T19:37:21.9452597Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-08-26T19:37:21.9453012Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-08-26T19:37:21.9453423Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-08-26T19:37:21.9453838Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-08-26T19:37:21.9454261Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-08-26T19:37:21.9454715Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-08-26T19:37:21.9455211Z * [new branch] mlazos/hop-modes -> origin/mlazos/hop-modes 2025-08-26T19:37:21.9455801Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-08-26T19:37:21.9456337Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-08-26T19:37:21.9456851Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-08-26T19:37:21.9457377Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-08-26T19:37:21.9457871Z * [new branch] mlazos/main -> origin/mlazos/main 2025-08-26T19:37:21.9458378Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-08-26T19:37:21.9458899Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-08-26T19:37:21.9459332Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-08-26T19:37:21.9459761Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-08-26T19:37:21.9460230Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-08-26T19:37:21.9460711Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-08-26T19:37:21.9461281Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-08-26T19:37:21.9461900Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-08-26T19:37:21.9462434Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-08-26T19:37:21.9462910Z * [new branch] mlazos/mode-fix -> origin/mlazos/mode-fix 2025-08-26T19:37:21.9463380Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-08-26T19:37:21.9463937Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-08-26T19:37:21.9464559Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-08-26T19:37:21.9465117Z * [new branch] mlazos/offsets -> origin/mlazos/offsets 2025-08-26T19:37:21.9465614Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-08-26T19:37:21.9466112Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-08-26T19:37:21.9912191Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-08-26T19:37:21.9912748Z * [new branch] mlazos/quant-fix -> origin/mlazos/quant-fix 2025-08-26T19:37:21.9913240Z * [new branch] mlazos/rm-buf-names -> origin/mlazos/rm-buf-names 2025-08-26T19:37:21.9913724Z * [new branch] mlazos/rm-code -> origin/mlazos/rm-code 2025-08-26T19:37:21.9914202Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-08-26T19:37:21.9914659Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-08-26T19:37:21.9915130Z * [new branch] mlazos/static-idx-dbg -> origin/mlazos/static-idx-dbg 2025-08-26T19:37:21.9915679Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-08-26T19:37:21.9916221Z * [new branch] mlazos/sub-param-fix -> origin/mlazos/sub-param-fix 2025-08-26T19:37:21.9916700Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-08-26T19:37:21.9917189Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-08-26T19:37:21.9917667Z * [new branch] mlazos/test -> origin/mlazos/test 2025-08-26T19:37:21.9918105Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-08-26T19:37:21.9918598Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-08-26T19:37:21.9919774Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-08-26T19:37:21.9920310Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-08-26T19:37:21.9920824Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-08-26T19:37:21.9921321Z * [new branch] mlazos/topo-fix -> origin/mlazos/topo-fix 2025-08-26T19:37:21.9921822Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-08-26T19:37:21.9922326Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-08-26T19:37:21.9922826Z * [new branch] mlazos/tuple-fixes -> origin/mlazos/tuple-fixes 2025-08-26T19:37:21.9923320Z * [new branch] mlazos/tuple-fixes2 -> origin/mlazos/tuple-fixes2 2025-08-26T19:37:21.9923843Z * [new branch] mlazos/tuple-handling -> origin/mlazos/tuple-handling 2025-08-26T19:37:21.9924359Z * [new branch] mlazos/user-streams -> origin/mlazos/user-streams 2025-08-26T19:37:21.9924849Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-08-26T19:37:21.9925329Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-08-26T19:37:21.9925810Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-08-26T19:37:21.9926299Z * [new branch] mm_out_dtype_compile -> origin/mm_out_dtype_compile 2025-08-26T19:37:21.9926786Z * [new branch] modify-setupvllm -> origin/modify-setupvllm 2025-08-26T19:37:21.9927294Z * [new branch] move-theme-out-docker -> origin/move-theme-out-docker 2025-08-26T19:37:21.9927903Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-08-26T19:37:21.9928424Z * [new branch] msaroufim/be1 -> origin/msaroufim/be1 2025-08-26T19:37:21.9928946Z * [new branch] msaroufim/cn_path -> origin/msaroufim/cn_path 2025-08-26T19:37:21.9929495Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-08-26T19:37:21.9930035Z * [new branch] msaroufim/reduce -> origin/msaroufim/reduce 2025-08-26T19:37:21.9930521Z * [new branch] mtia/basic-cmake -> origin/mtia/basic-cmake 2025-08-26T19:37:21.9930954Z * [new branch] muon_dev -> origin/muon_dev 2025-08-26T19:37:21.9931376Z * [new branch] muon_dev_1 -> origin/muon_dev_1 2025-08-26T19:37:21.9931851Z * [new branch] new-modifiy-setupvllm -> origin/new-modifiy-setupvllm 2025-08-26T19:37:21.9932365Z * [new branch] new-setupvllm -> origin/new-setupvllm 2025-08-26T19:37:21.9932805Z * [new branch] newtest-base -> origin/newtest-base 2025-08-26T19:37:21.9933263Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-08-26T19:37:21.9933759Z * [new branch] ngimel/error_index_list -> origin/ngimel/error_index_list 2025-08-26T19:37:21.9934265Z * [new branch] ngimel/fabric_check -> origin/ngimel/fabric_check 2025-08-26T19:37:21.9934813Z * [new branch] ngimel/fabric_driver_version -> origin/ngimel/fabric_driver_version 2025-08-26T19:37:21.9935342Z * [new branch] ngimel/fabric_fix -> origin/ngimel/fabric_fix 2025-08-26T19:37:21.9935823Z * [new branch] ngimel/fabric_symm -> origin/ngimel/fabric_symm 2025-08-26T19:37:21.9936358Z * [new branch] ngimel/fix_driver_init_error -> origin/ngimel/fix_driver_init_error 2025-08-26T19:37:22.0339176Z * [new branch] ngimel/fix_nccl_segment_seg -> origin/ngimel/fix_nccl_segment_seg 2025-08-26T19:37:22.0339891Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-08-26T19:37:22.0340401Z * [new branch] ngimel/grouped_mm_checks -> origin/ngimel/grouped_mm_checks 2025-08-26T19:37:22.0340952Z * [new branch] ngimel/guardfabric -> origin/ngimel/guardfabric 2025-08-26T19:37:22.0341452Z * [new branch] ngimel/modeguard -> origin/ngimel/modeguard 2025-08-26T19:37:22.0341947Z * [new branch] ngimel/multicast_fix -> origin/ngimel/multicast_fix 2025-08-26T19:37:22.0342464Z * [new branch] ngimel/unbind_multimem -> origin/ngimel/unbind_multimem 2025-08-26T19:37:22.0342932Z * [new branch] nightly -> origin/nightly 2025-08-26T19:37:22.0343409Z * [new branch] nmacchioni-patch-10 -> origin/nmacchioni-patch-10 2025-08-26T19:37:22.0343945Z * [new branch] nmacchioni-patch-7 -> origin/nmacchioni-patch-7 2025-08-26T19:37:22.0344520Z * [new branch] nmacchioni-patch-8 -> origin/nmacchioni-patch-8 2025-08-26T19:37:22.0345025Z * [new branch] nmacchioni-patch-9 -> origin/nmacchioni-patch-9 2025-08-26T19:37:22.0345546Z * [new branch] nullplay_fuse_matmul -> origin/nullplay_fuse_matmul 2025-08-26T19:37:22.0346201Z * [new branch] nweidia/enable-B200-inductor-nightly-ci -> origin/nweidia/enable-B200-inductor-nightly-ci 2025-08-26T19:37:22.0346811Z * [new branch] one-off -> origin/one-off 2025-08-26T19:37:22.0347251Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-08-26T19:37:22.0347729Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-08-26T19:37:22.0348194Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-08-26T19:37:22.0348773Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-08-26T19:37:22.0349263Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-08-26T19:37:22.0349731Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-08-26T19:37:22.0350205Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-08-26T19:37:22.0350660Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-08-26T19:37:22.0351129Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-08-26T19:37:22.0351593Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-08-26T19:37:22.0352046Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-08-26T19:37:22.0352522Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-08-26T19:37:22.0352977Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-08-26T19:37:22.0353445Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-08-26T19:37:22.0353912Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-08-26T19:37:22.0354367Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-08-26T19:37:22.0354831Z * [new branch] orig/release/2.8 -> origin/orig/release/2.8 2025-08-26T19:37:22.0355286Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-08-26T19:37:22.0355752Z * [new branch] padded-tensor -> origin/padded-tensor 2025-08-26T19:37:22.0356196Z * [new branch] parallel_cat -> origin/parallel_cat 2025-08-26T19:37:22.0356623Z * [new branch] pca2 -> origin/pca2 2025-08-26T19:37:22.0357074Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-08-26T19:37:22.0357747Z * [new branch] pianpwk/backed_size_oblivious_export -> origin/pianpwk/backed_size_oblivious_export 2025-08-26T19:37:22.0358383Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-08-26T19:37:22.0358961Z * [new branch] pianpwk/invalidate_fake_memo -> origin/pianpwk/invalidate_fake_memo 2025-08-26T19:37:22.0359530Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-08-26T19:37:22.0360047Z * [new branch] pianpwk/nonzero_memo -> origin/pianpwk/nonzero_memo 2025-08-26T19:37:22.0360681Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-08-26T19:37:22.0361366Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-08-26T19:37:22.0362000Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-08-26T19:37:22.0362605Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-08-26T19:37:22.0363161Z * [new branch] pianpwk/param_static_pgo -> origin/pianpwk/param_static_pgo 2025-08-26T19:37:22.0771021Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-08-26T19:37:22.0771715Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-08-26T19:37:22.0772328Z * [new branch] pianpwk/slice_fresh_symbols -> origin/pianpwk/slice_fresh_symbols 2025-08-26T19:37:22.0772919Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-08-26T19:37:22.0773527Z * [new branch] pianpwk/unbacked_channels_last -> origin/pianpwk/unbacked_channels_last 2025-08-26T19:37:22.0774303Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-08-26T19:37:22.0774897Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-08-26T19:37:22.0775476Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-08-26T19:37:22.0776089Z * [new branch] pianpwk/unbacked_should_swap_2 -> origin/pianpwk/unbacked_should_swap_2 2025-08-26T19:37:22.0776817Z * [new branch] pianpwk/unbacked_slice_binding -> origin/pianpwk/unbacked_slice_binding 2025-08-26T19:37:22.0777476Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-08-26T19:37:22.0778047Z * [new branch] pianpwk/wan21_reshape -> origin/pianpwk/wan21_reshape 2025-08-26T19:37:22.0778605Z * [new branch] pianpwk/whitelist_optimizer -> origin/pianpwk/whitelist_optimizer 2025-08-26T19:37:22.0779139Z * [new branch] pin-torchao -> origin/pin-torchao 2025-08-26T19:37:22.0779632Z * [new branch] piz/fall_back_missing_0716 -> origin/piz/fall_back_missing_0716 2025-08-26T19:37:22.0780116Z * [new branch] piz/fix_sort_ -> origin/piz/fix_sort_ 2025-08-26T19:37:22.0780603Z * [new branch] piz/improve_scatter_0808 -> origin/piz/improve_scatter_0808 2025-08-26T19:37:22.0781098Z * [new branch] pool-separate -> origin/pool-separate 2025-08-26T19:37:22.0781539Z * [new branch] pr-156087 -> origin/pr-156087 2025-08-26T19:37:22.0781954Z * [new branch] pr/131860 -> origin/pr/131860 2025-08-26T19:37:22.0782438Z * [new branch] predispatch_to -> origin/predispatch_to 2025-08-26T19:37:22.0782945Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-08-26T19:37:22.0783528Z * [new branch] pt2e-cache-model-device -> origin/pt2e-cache-model-device 2025-08-26T19:37:22.0784282Z * [new branch] pyobjectslot -> origin/pyobjectslot 2025-08-26T19:37:22.0784831Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-08-26T19:37:22.0785475Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-08-26T19:37:22.0786007Z * [new branch] quint-bits -> origin/quint-bits 2025-08-26T19:37:22.0786489Z * [new branch] release/1.10 -> origin/release/1.10 2025-08-26T19:37:22.0787007Z * [new branch] release/1.11 -> origin/release/1.11 2025-08-26T19:37:22.0787486Z * [new branch] release/1.12 -> origin/release/1.12 2025-08-26T19:37:22.0787959Z * [new branch] release/1.13 -> origin/release/1.13 2025-08-26T19:37:22.0788437Z * [new branch] release/1.4 -> origin/release/1.4 2025-08-26T19:37:22.0788949Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-08-26T19:37:22.0789432Z * [new branch] release/1.5 -> origin/release/1.5 2025-08-26T19:37:22.0789897Z * [new branch] release/1.6 -> origin/release/1.6 2025-08-26T19:37:22.0790393Z * [new branch] release/1.7 -> origin/release/1.7 2025-08-26T19:37:22.0790889Z * [new branch] release/1.8 -> origin/release/1.8 2025-08-26T19:37:22.0791358Z * [new branch] release/1.9 -> origin/release/1.9 2025-08-26T19:37:22.0791828Z * [new branch] release/2.0 -> origin/release/2.0 2025-08-26T19:37:22.0792313Z * [new branch] release/2.1 -> origin/release/2.1 2025-08-26T19:37:22.0792889Z * [new branch] release/2.2 -> origin/release/2.2 2025-08-26T19:37:22.0793361Z * [new branch] release/2.3 -> origin/release/2.3 2025-08-26T19:37:22.0793869Z * [new branch] release/2.4 -> origin/release/2.4 2025-08-26T19:37:22.0794347Z * [new branch] release/2.5 -> origin/release/2.5 2025-08-26T19:37:22.0794806Z * [new branch] release/2.6 -> origin/release/2.6 2025-08-26T19:37:22.0795283Z * [new branch] release/2.7 -> origin/release/2.7 2025-08-26T19:37:22.0795769Z * [new branch] release/2.8 -> origin/release/2.8 2025-08-26T19:37:22.0796261Z * [new branch] release_notes -> origin/release_notes 2025-08-26T19:37:22.1189444Z * [new branch] remove-actionable-label -> origin/remove-actionable-label 2025-08-26T19:37:22.1189987Z * [new branch] remove-ao -> origin/remove-ao 2025-08-26T19:37:22.1190616Z * [new branch] replace-pytorch-labs-20250812-195836 -> origin/replace-pytorch-labs-20250812-195836 2025-08-26T19:37:22.1191377Z * [new branch] replace-pytorch-labs-20250812-200248 -> origin/replace-pytorch-labs-20250812-200248 2025-08-26T19:37:22.1192151Z * [new branch] replace-pytorch-labs-20250812-200324 -> origin/replace-pytorch-labs-20250812-200324 2025-08-26T19:37:22.1192953Z * [new branch] replace-pytorch-labs-20250812-204020 -> origin/replace-pytorch-labs-20250812-204020 2025-08-26T19:37:22.1193738Z * [new branch] replace-pytorch-labs-20250812-204125 -> origin/replace-pytorch-labs-20250812-204125 2025-08-26T19:37:22.1194483Z * [new branch] replace-pytorch-labs-20250812-205624 -> origin/replace-pytorch-labs-20250812-205624 2025-08-26T19:37:22.1195263Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-08-26T19:37:22.1196000Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-08-26T19:37:22.1196804Z * [new branch] revert-156870-gh/skarjala/3/head -> origin/revert-156870-gh/skarjala/3/head 2025-08-26T19:37:22.1197642Z * [new branch] revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ -> origin/revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ 2025-08-26T19:37:22.1198466Z * [new branch] revert-direct-updates -> origin/revert-direct-updates 2025-08-26T19:37:22.1199026Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-08-26T19:37:22.1199706Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-08-26T19:37:22.1200444Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-08-26T19:37:22.1200996Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-08-26T19:37:22.1201458Z * [new branch] rzou/njt -> origin/rzou/njt 2025-08-26T19:37:22.1201899Z * [new branch] rzou/operator -> origin/rzou/operator 2025-08-26T19:37:22.1202330Z * [new branch] rzou/pca -> origin/rzou/pca 2025-08-26T19:37:22.1202766Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-08-26T19:37:22.1203225Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-08-26T19:37:22.1203863Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-08-26T19:37:22.1204851Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-08-26T19:37:22.1205643Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-08-26T19:37:22.1206252Z * [new branch] save -> origin/save 2025-08-26T19:37:22.1206663Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-08-26T19:37:22.1207148Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-08-26T19:37:22.1207655Z * [new branch] setup-torchci -> origin/setup-torchci 2025-08-26T19:37:22.1208095Z * [new branch] setupvllm -> origin/setupvllm 2025-08-26T19:37:22.1208549Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-08-26T19:37:22.1209041Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-08-26T19:37:22.1209565Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-08-26T19:37:22.1210155Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-08-26T19:37:22.1210752Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-08-26T19:37:22.1211300Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-08-26T19:37:22.1211785Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-08-26T19:37:22.1212283Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-08-26T19:37:22.1212828Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-08-26T19:37:22.1213343Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-08-26T19:37:22.1213881Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-08-26T19:37:22.1214449Z * [new branch] standalone-templates -> origin/standalone-templates 2025-08-26T19:37:22.1563668Z * [new branch] standalone_package_weights -> origin/standalone_package_weights 2025-08-26T19:37:22.1564410Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-08-26T19:37:22.1564898Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-08-26T19:37:22.1565440Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-08-26T19:37:22.1565942Z * [new branch] sve-poc -> origin/sve-poc 2025-08-26T19:37:22.1566400Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-08-26T19:37:22.1566847Z * [new branch] switch-bn -> origin/switch-bn 2025-08-26T19:37:22.1567348Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-08-26T19:37:22.1567935Z * [new branch] tenpercent/ck_inductor_gfx950 -> origin/tenpercent/ck_inductor_gfx950 2025-08-26T19:37:22.1568512Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-08-26T19:37:22.1569007Z * [new branch] test-7054 -> origin/test-7054 2025-08-26T19:37:22.1569553Z * [new branch] test-half-migration-internally -> origin/test-half-migration-internally 2025-08-26T19:37:22.1570159Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-08-26T19:37:22.1570744Z * [new branch] test-myst-markdown-docstring -> origin/test-myst-markdown-docstring 2025-08-26T19:37:22.1571264Z * [new branch] test-old -> origin/test-old 2025-08-26T19:37:22.1571799Z * [new branch] test-vec-migration-internally -> origin/test-vec-migration-internally 2025-08-26T19:37:22.1572343Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-08-26T19:37:22.1572776Z * [new branch] test/inductor -> origin/test/inductor 2025-08-26T19:37:22.1573383Z * [new branch] tianren/flex_paged_attn_fix -> origin/tianren/flex_paged_attn_fix 2025-08-26T19:37:22.1573922Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-08-26T19:37:22.1574412Z * [new branch] torchtitan_ep -> origin/torchtitan_ep 2025-08-26T19:37:22.1574916Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-08-26T19:37:22.1575453Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-08-26T19:37:22.1575965Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-08-26T19:37:22.1576427Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-08-26T19:37:22.1576877Z * [new branch] triton-update -> origin/triton-update 2025-08-26T19:37:22.1577319Z * [new branch] triton_kernel -> origin/triton_kernel 2025-08-26T19:37:22.1577781Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-08-26T19:37:22.1578246Z * [new branch] try-runllm -> origin/try-runllm 2025-08-26T19:37:22.1578667Z * [new branch] tt_pkg_1908 -> origin/tt_pkg_1908 2025-08-26T19:37:22.1579213Z * [new branch] tweak-transformer-dependabot -> origin/tweak-transformer-dependabot 2025-08-26T19:37:22.1579735Z * [new branch] type_dec -> origin/type_dec 2025-08-26T19:37:22.1580238Z * [new branch] udate-sphinx-dependancies -> origin/udate-sphinx-dependancies 2025-08-26T19:37:22.1580950Z * [new branch] update-audio-commit-hash/16583472358-1693-1 -> origin/update-audio-commit-hash/16583472358-1693-1 2025-08-26T19:37:22.1581764Z * [new branch] update-audio-commit-hash/16663082088-1700-1 -> origin/update-audio-commit-hash/16663082088-1700-1 2025-08-26T19:37:22.1582589Z * [new branch] update-audio-commit-hash/16737365217-1704-1 -> origin/update-audio-commit-hash/16737365217-1704-1 2025-08-26T19:37:22.1583465Z * [new branch] update-audio-commit-hash/16791960928-1711-1 -> origin/update-audio-commit-hash/16791960928-1711-1 2025-08-26T19:37:22.1584351Z * [new branch] update-audio-commit-hash/16818882925-1712-1 -> origin/update-audio-commit-hash/16818882925-1712-1 2025-08-26T19:37:22.1585176Z * [new branch] update-audio-commit-hash/16895560422-1720-1 -> origin/update-audio-commit-hash/16895560422-1720-1 2025-08-26T19:37:22.1585979Z * [new branch] update-audio-commit-hash/16924174496-1738-1 -> origin/update-audio-commit-hash/16924174496-1738-1 2025-08-26T19:37:22.1586803Z * [new branch] update-audio-commit-hash/17002010821-1749-1 -> origin/update-audio-commit-hash/17002010821-1749-1 2025-08-26T19:37:22.1587623Z * [new branch] update-audio-commit-hash/17056004427-1766-1 -> origin/update-audio-commit-hash/17056004427-1766-1 2025-08-26T19:37:22.1588439Z * [new branch] update-audio-commit-hash/17085054029-1767-1 -> origin/update-audio-commit-hash/17085054029-1767-1 2025-08-26T19:37:22.1893398Z * [new branch] update-audio-commit-hash/17142507405-1771-1 -> origin/update-audio-commit-hash/17142507405-1771-1 2025-08-26T19:37:22.1894247Z * [new branch] update-audio-commit-hash/17168762740-1773-1 -> origin/update-audio-commit-hash/17168762740-1773-1 2025-08-26T19:37:22.1894973Z * [new branch] update-dynamic-shapes-doc -> origin/update-dynamic-shapes-doc 2025-08-26T19:37:22.1895753Z * [new branch] update-executorch-commit-hash/15694981040-1626-1 -> origin/update-executorch-commit-hash/15694981040-1626-1 2025-08-26T19:37:22.1896631Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-08-26T19:37:22.1897640Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-08-26T19:37:22.1898473Z * [new branch] update-vllm-commit-hash/16545403308-1687-1 -> origin/update-vllm-commit-hash/16545403308-1687-1 2025-08-26T19:37:22.1899256Z * [new branch] update-vllm-commit-hash/16557202787-1688-1 -> origin/update-vllm-commit-hash/16557202787-1688-1 2025-08-26T19:37:22.1900046Z * [new branch] update-vllm-commit-hash/16583472358-1693-1 -> origin/update-vllm-commit-hash/16583472358-1693-1 2025-08-26T19:37:22.1900824Z * [new branch] update-vllm-commit-hash/16663082088-1700-1 -> origin/update-vllm-commit-hash/16663082088-1700-1 2025-08-26T19:37:22.1901609Z * [new branch] update-vllm-commit-hash/16737365217-1704-1 -> origin/update-vllm-commit-hash/16737365217-1704-1 2025-08-26T19:37:22.1902391Z * [new branch] update-vllm-commit-hash/16843157111-1713-1 -> origin/update-vllm-commit-hash/16843157111-1713-1 2025-08-26T19:37:22.1903177Z * [new branch] update-vllm-commit-hash/16855312394-1714-1 -> origin/update-vllm-commit-hash/16855312394-1714-1 2025-08-26T19:37:22.1903961Z * [new branch] update-vllm-commit-hash/16924174496-1738-1 -> origin/update-vllm-commit-hash/16924174496-1738-1 2025-08-26T19:37:22.1904819Z * [new branch] update-vllm-commit-hash/16952608705-1745-1 -> origin/update-vllm-commit-hash/16952608705-1745-1 2025-08-26T19:37:22.1905605Z * [new branch] update-vllm-commit-hash/16979836546-1748-1 -> origin/update-vllm-commit-hash/16979836546-1748-1 2025-08-26T19:37:22.1906405Z * [new branch] update-vllm-commit-hash/17014576881-1756-1 -> origin/update-vllm-commit-hash/17014576881-1756-1 2025-08-26T19:37:22.1907188Z * [new branch] update-vllm-commit-hash/17027830869-1761-1 -> origin/update-vllm-commit-hash/17027830869-1761-1 2025-08-26T19:37:22.1907995Z * [new branch] update-vllm-commit-hash/17056004427-1766-1 -> origin/update-vllm-commit-hash/17056004427-1766-1 2025-08-26T19:37:22.1908869Z * [new branch] update-vllm-commit-hash/17085054029-1767-1 -> origin/update-vllm-commit-hash/17085054029-1767-1 2025-08-26T19:37:22.1909662Z * [new branch] update-vllm-commit-hash/17113610216-1768-1 -> origin/update-vllm-commit-hash/17113610216-1768-1 2025-08-26T19:37:22.1910448Z * [new branch] update-vllm-commit-hash/17142507405-1771-1 -> origin/update-vllm-commit-hash/17142507405-1771-1 2025-08-26T19:37:22.1911242Z * [new branch] update-vllm-commit-hash/17181878974-1774-1 -> origin/update-vllm-commit-hash/17181878974-1774-1 2025-08-26T19:37:22.1912006Z * [new branch] update-xla-commit-hash/16260974441-194-1 -> origin/update-xla-commit-hash/16260974441-194-1 2025-08-26T19:37:22.1912762Z * [new branch] update-xla-commit-hash/16717126778-197-1 -> origin/update-xla-commit-hash/16717126778-197-1 2025-08-26T19:37:22.1913509Z * [new branch] update-xla-commit-hash/16873912760-198-1 -> origin/update-xla-commit-hash/16873912760-198-1 2025-08-26T19:37:22.1914265Z * [new branch] update-xla-commit-hash/17034266655-199-1 -> origin/update-xla-commit-hash/17034266655-199-1 2025-08-26T19:37:22.1915014Z * [new branch] update-xla-commit-hash/17202464405-200-1 -> origin/update-xla-commit-hash/17202464405-200-1 2025-08-26T19:37:22.1915770Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-08-26T19:37:22.1916424Z * [new branch] update_executorch_pin -> origin/update_executorch_pin 2025-08-26T19:37:22.1916959Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-08-26T19:37:22.1917513Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-08-26T19:37:22.1918156Z * [new branch] update_slow_tests_1752478971 -> origin/update_slow_tests_1752478971 2025-08-26T19:37:22.1918707Z * [new branch] update_slow_tests_1755502951 -> origin/update_slow_tests_1755502951 2025-08-26T19:37:22.2355217Z * [new branch] update_slow_tests_1756107664 -> origin/update_slow_tests_1756107664 2025-08-26T19:37:22.2355894Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-08-26T19:37:22.2356482Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-08-26T19:37:22.2357110Z * [new branch] update_submodule_tensorpipe -> origin/update_submodule_tensorpipe 2025-08-26T19:37:22.2357605Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-08-26T19:37:22.2358020Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-08-26T19:37:22.2358434Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-08-26T19:37:22.2358840Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-08-26T19:37:22.2359246Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-08-26T19:37:22.2359634Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-08-26T19:37:22.2360029Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-08-26T19:37:22.2360438Z * [new branch] validate_fn -> origin/validate_fn 2025-08-26T19:37:22.2360896Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-08-26T19:37:22.2361374Z * [new branch] validations_2.8 -> origin/validations_2.8 2025-08-26T19:37:22.2361825Z * [new branch] viable/strict -> origin/viable/strict 2025-08-26T19:37:22.2362276Z * [new branch] vllmbuildci -> origin/vllmbuildci 2025-08-26T19:37:22.2362705Z * [new branch] vllmpin -> origin/vllmpin 2025-08-26T19:37:22.2363332Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-08-26T19:37:22.2363865Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-08-26T19:37:22.2364339Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-08-26T19:37:22.2364825Z * [new branch] weight_sharing_cpp -> origin/weight_sharing_cpp 2025-08-26T19:37:22.2365284Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-08-26T19:37:22.2365728Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-08-26T19:37:22.2366159Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-08-26T19:37:22.2366600Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-08-26T19:37:22.2367040Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-08-26T19:37:22.2367454Z * [new branch] whc/uneven -> origin/whc/uneven 2025-08-26T19:37:22.2367930Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-08-26T19:37:22.2368384Z * [new branch] win_warnings -> origin/win_warnings 2025-08-26T19:37:22.2368840Z * [new branch] workonoldcommit -> origin/workonoldcommit 2025-08-26T19:37:22.2369378Z * [new branch] wwen/programming-model-2.8 -> origin/wwen/programming-model-2.8 2025-08-26T19:37:22.2369891Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-08-26T19:37:22.2370343Z * [new branch] xmfan/ca_1051b93192 -> origin/xmfan/ca_1051b93192 2025-08-26T19:37:22.2371035Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-08-26T19:37:22.2371835Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-08-26T19:37:22.2372331Z * [new branch] xmfan/ca_9d59b516e9 -> origin/xmfan/ca_9d59b516e9 2025-08-26T19:37:22.2372786Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-08-26T19:37:22.2373233Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-08-26T19:37:22.2373665Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-08-26T19:37:22.2374150Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-08-26T19:37:22.2374625Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-08-26T19:37:22.2375085Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-08-26T19:37:22.2375562Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-08-26T19:37:22.2376067Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-08-26T19:37:22.2376551Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-08-26T19:37:22.2376981Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-08-26T19:37:22.2377421Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-08-26T19:37:22.2377873Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-08-26T19:37:22.2378325Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-08-26T19:37:22.2820770Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-08-26T19:37:22.2821351Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-08-26T19:37:22.2821939Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-08-26T19:37:22.2822488Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-08-26T19:37:22.2823106Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-08-26T19:37:22.2823585Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-08-26T19:37:22.2824173Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-08-26T19:37:22.2824795Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-08-26T19:37:22.2825330Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-08-26T19:37:22.2825845Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-08-26T19:37:22.2826327Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-08-26T19:37:22.2826815Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-08-26T19:37:22.2827273Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-08-26T19:37:22.2827726Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-08-26T19:37:22.2828175Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-08-26T19:37:22.2828648Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-08-26T19:37:22.2829198Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-08-26T19:37:22.2829788Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-08-26T19:37:22.2830405Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-08-26T19:37:22.2831006Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-08-26T19:37:22.2831919Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-26T19:37:22.2832837Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-26T19:37:22.2833547Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-08-26T19:37:22.2834040Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-08-26T19:37:22.2834512Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-08-26T19:37:22.2834948Z * [new branch] xmfan/test -> origin/xmfan/test 2025-08-26T19:37:22.2835440Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-08-26T19:37:22.2835991Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-08-26T19:37:22.2836588Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-08-26T19:37:22.2837231Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-08-26T19:37:22.2837782Z * [new branch] yiming/add_jit_trace_benchmark -> origin/yiming/add_jit_trace_benchmark 2025-08-26T19:37:22.2838381Z * [new branch] yiming/add_nativert_benchmark -> origin/yiming/add_nativert_benchmark 2025-08-26T19:37:22.2838926Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-08-26T19:37:22.2839399Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-08-26T19:37:22.2839943Z * [new branch] zainr/cleanup-gh-runners -> origin/zainr/cleanup-gh-runners 2025-08-26T19:37:22.2840484Z * [new branch] zainr/git-push-v2 -> origin/zainr/git-push-v2 2025-08-26T19:37:22.2841002Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-08-26T19:37:22.2841598Z * [new branch] zainr/test2 -> origin/zainr/test2 2025-08-26T19:37:22.2842044Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-08-26T19:37:22.2842580Z * [new branch] zainr/unstable-xla -> origin/zainr/unstable-xla 2025-08-26T19:37:22.2843156Z * [new branch] zainr/uv-pip-fix -> origin/zainr/uv-pip-fix 2025-08-26T19:37:22.2843649Z * [new branch] zainr/vs-aarch64 -> origin/zainr/vs-aarch64 2025-08-26T19:37:22.2844145Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-08-26T19:37:22.2844592Z * [new branch] zb2p -> origin/zb2p 2025-08-26T19:37:22.2845038Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-08-26T19:37:22.2845540Z * [new branch] zero_grad_optimization -> origin/zero_grad_optimization 2025-08-26T19:37:22.3138544Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-08-26T19:37:22.3139120Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-08-26T19:37:22.3139639Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-08-26T19:37:22.3140130Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-08-26T19:37:22.3140560Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-08-26T19:37:22.3141302Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-08-26T19:37:22.3142034Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-08-26T19:37:22.3142460Z * [new tag] ciflow/binaries/153920 -> ciflow/binaries/153920 2025-08-26T19:37:22.3143147Z * [new tag] ciflow/binaries/158104 -> ciflow/binaries/158104 2025-08-26T19:37:22.3143604Z * [new tag] ciflow/binaries/160229 -> ciflow/binaries/160229 2025-08-26T19:37:22.3144049Z * [new tag] ciflow/binaries/160853 -> ciflow/binaries/160853 2025-08-26T19:37:22.3144532Z * [new tag] ciflow/binaries/161257 -> ciflow/binaries/161257 2025-08-26T19:37:22.3145025Z * [new tag] ciflow/binaries_libtorch/156049 -> ciflow/binaries_libtorch/156049 2025-08-26T19:37:22.3145555Z * [new tag] ciflow/binaries_wheel/156049 -> ciflow/binaries_wheel/156049 2025-08-26T19:37:22.3146045Z * [new tag] ciflow/binaries_wheel/158733 -> ciflow/binaries_wheel/158733 2025-08-26T19:37:22.3146538Z * [new tag] ciflow/binaries_wheel/160207 -> ciflow/binaries_wheel/160207 2025-08-26T19:37:22.3147026Z * [new tag] ciflow/h100-symm-mem/151845 -> ciflow/h100-symm-mem/151845 2025-08-26T19:37:22.3147498Z * [new tag] ciflow/h100-symm-mem/155923 -> ciflow/h100-symm-mem/155923 2025-08-26T19:37:22.3147976Z * [new tag] ciflow/h100-symm-mem/157635 -> ciflow/h100-symm-mem/157635 2025-08-26T19:37:22.3148498Z * [new tag] ciflow/h100-symm-mem/159562 -> ciflow/h100-symm-mem/159562 2025-08-26T19:37:22.3149009Z * [new tag] ciflow/h100-symm-mem/159889 -> ciflow/h100-symm-mem/159889 2025-08-26T19:37:22.3149483Z * [new tag] ciflow/h100-symm-mem/160825 -> ciflow/h100-symm-mem/160825 2025-08-26T19:37:22.3149949Z * [new tag] ciflow/h100-symm-mem/161008 -> ciflow/h100-symm-mem/161008 2025-08-26T19:37:22.3150423Z * [new tag] ciflow/h100-symm-mem/161090 -> ciflow/h100-symm-mem/161090 2025-08-26T19:37:22.3150893Z * [new tag] ciflow/h100-symm-mem/161214 -> ciflow/h100-symm-mem/161214 2025-08-26T19:37:22.3151367Z * [new tag] ciflow/h100-symm-mem/161217 -> ciflow/h100-symm-mem/161217 2025-08-26T19:37:22.3151933Z * [new tag] ciflow/h100-symm-mem/161232 -> ciflow/h100-symm-mem/161232 2025-08-26T19:37:22.3152393Z * [new tag] ciflow/h100-symm-mem/161257 -> ciflow/h100-symm-mem/161257 2025-08-26T19:37:22.3152863Z * [new tag] ciflow/h100-symm-mem/161309 -> ciflow/h100-symm-mem/161309 2025-08-26T19:37:22.3153325Z * [new tag] ciflow/h100-symm-mem/161470 -> ciflow/h100-symm-mem/161470 2025-08-26T19:37:22.3153794Z * [new tag] ciflow/h100-symm-mem/161471 -> ciflow/h100-symm-mem/161471 2025-08-26T19:37:22.3154303Z * [new tag] ciflow/h100-symm-mem/161532 -> ciflow/h100-symm-mem/161532 2025-08-26T19:37:22.3154813Z * [new tag] ciflow/h100-symm-mem/161533 -> ciflow/h100-symm-mem/161533 2025-08-26T19:37:22.3155245Z * [new tag] ciflow/h100/159158 -> ciflow/h100/159158 2025-08-26T19:37:22.3155646Z * [new tag] ciflow/h100/161225 -> ciflow/h100/161225 2025-08-26T19:37:22.3156279Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-08-26T19:37:22.3157152Z * [new tag] ciflow/inductor-perf-test-nightly-x86-zen/161512 -> ciflow/inductor-perf-test-nightly-x86-zen/161512 2025-08-26T19:37:22.3157898Z * [new tag] ciflow/inductor-periodic/158137 -> ciflow/inductor-periodic/158137 2025-08-26T19:37:22.3158470Z * [new tag] ciflow/inductor-periodic/160807 -> ciflow/inductor-periodic/160807 2025-08-26T19:37:22.3159027Z * [new tag] ciflow/inductor-periodic/161461 -> ciflow/inductor-periodic/161461 2025-08-26T19:37:22.3159977Z * [new tag] ciflow/inductor-periodic/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 -> ciflow/inductor-periodic/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 2025-08-26T19:37:22.3161317Z * [new tag] ciflow/inductor-periodic/3e5b021f217a42ae55dc690083f67a28126808ed -> ciflow/inductor-periodic/3e5b021f217a42ae55dc690083f67a28126808ed 2025-08-26T19:37:22.3162494Z * [new tag] ciflow/inductor-periodic/f912c93344caa74e24c8164a2e25fe84a8203073 -> ciflow/inductor-periodic/f912c93344caa74e24c8164a2e25fe84a8203073 2025-08-26T19:37:22.3468131Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-08-26T19:37:22.3468716Z * [new tag] ciflow/inductor-rocm/159158 -> ciflow/inductor-rocm/159158 2025-08-26T19:37:22.3469216Z * [new tag] ciflow/inductor-rocm/160671 -> ciflow/inductor-rocm/160671 2025-08-26T19:37:22.3469721Z * [new tag] ciflow/inductor-rocm/161180 -> ciflow/inductor-rocm/161180 2025-08-26T19:37:22.3470197Z * [new tag] ciflow/inductor-rocm/161225 -> ciflow/inductor-rocm/161225 2025-08-26T19:37:22.3470684Z * [new tag] ciflow/inductor-rocm/161521 -> ciflow/inductor-rocm/161521 2025-08-26T19:37:22.3471220Z * [new tag] ciflow/inductor-windows/160406 -> ciflow/inductor-windows/160406 2025-08-26T19:37:22.3471729Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-08-26T19:37:22.3472175Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-08-26T19:37:22.3472607Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-08-26T19:37:22.3473041Z * [new tag] ciflow/inductor/155072 -> ciflow/inductor/155072 2025-08-26T19:37:22.3473464Z * [new tag] ciflow/inductor/155152 -> ciflow/inductor/155152 2025-08-26T19:37:22.3473900Z * [new tag] ciflow/inductor/155153 -> ciflow/inductor/155153 2025-08-26T19:37:22.3474345Z * [new tag] ciflow/inductor/155154 -> ciflow/inductor/155154 2025-08-26T19:37:22.3474772Z * [new tag] ciflow/inductor/155501 -> ciflow/inductor/155501 2025-08-26T19:37:22.3475214Z * [new tag] ciflow/inductor/155502 -> ciflow/inductor/155502 2025-08-26T19:37:22.3475786Z * [new tag] ciflow/inductor/155503 -> ciflow/inductor/155503 2025-08-26T19:37:22.3476229Z * [new tag] ciflow/inductor/155557 -> ciflow/inductor/155557 2025-08-26T19:37:22.3476664Z * [new tag] ciflow/inductor/155608 -> ciflow/inductor/155608 2025-08-26T19:37:22.3477096Z * [new tag] ciflow/inductor/155923 -> ciflow/inductor/155923 2025-08-26T19:37:22.3477534Z * [new tag] ciflow/inductor/155928 -> ciflow/inductor/155928 2025-08-26T19:37:22.3477962Z * [new tag] ciflow/inductor/156875 -> ciflow/inductor/156875 2025-08-26T19:37:22.3478410Z * [new tag] ciflow/inductor/156967 -> ciflow/inductor/156967 2025-08-26T19:37:22.3478848Z * [new tag] ciflow/inductor/157298 -> ciflow/inductor/157298 2025-08-26T19:37:22.3479281Z * [new tag] ciflow/inductor/157572 -> ciflow/inductor/157572 2025-08-26T19:37:22.3479726Z * [new tag] ciflow/inductor/157635 -> ciflow/inductor/157635 2025-08-26T19:37:22.3480153Z * [new tag] ciflow/inductor/157743 -> ciflow/inductor/157743 2025-08-26T19:37:22.3480591Z * [new tag] ciflow/inductor/157767 -> ciflow/inductor/157767 2025-08-26T19:37:22.3481015Z * [new tag] ciflow/inductor/157944 -> ciflow/inductor/157944 2025-08-26T19:37:22.3481456Z * [new tag] ciflow/inductor/158061 -> ciflow/inductor/158061 2025-08-26T19:37:22.3481894Z * [new tag] ciflow/inductor/158097 -> ciflow/inductor/158097 2025-08-26T19:37:22.3482325Z * [new tag] ciflow/inductor/158098 -> ciflow/inductor/158098 2025-08-26T19:37:22.3482762Z * [new tag] ciflow/inductor/158104 -> ciflow/inductor/158104 2025-08-26T19:37:22.3483284Z * [new tag] ciflow/inductor/158137 -> ciflow/inductor/158137 2025-08-26T19:37:22.3483729Z * [new tag] ciflow/inductor/158321 -> ciflow/inductor/158321 2025-08-26T19:37:22.3484174Z * [new tag] ciflow/inductor/158609 -> ciflow/inductor/158609 2025-08-26T19:37:22.3484603Z * [new tag] ciflow/inductor/158932 -> ciflow/inductor/158932 2025-08-26T19:37:22.3485044Z * [new tag] ciflow/inductor/159003 -> ciflow/inductor/159003 2025-08-26T19:37:22.3485471Z * [new tag] ciflow/inductor/159158 -> ciflow/inductor/159158 2025-08-26T19:37:22.3485911Z * [new tag] ciflow/inductor/159274 -> ciflow/inductor/159274 2025-08-26T19:37:22.3486348Z * [new tag] ciflow/inductor/159387 -> ciflow/inductor/159387 2025-08-26T19:37:22.3486775Z * [new tag] ciflow/inductor/159473 -> ciflow/inductor/159473 2025-08-26T19:37:22.3487215Z * [new tag] ciflow/inductor/159664 -> ciflow/inductor/159664 2025-08-26T19:37:22.3487648Z * [new tag] ciflow/inductor/159778 -> ciflow/inductor/159778 2025-08-26T19:37:22.3488085Z * [new tag] ciflow/inductor/159835 -> ciflow/inductor/159835 2025-08-26T19:37:22.3488514Z * [new tag] ciflow/inductor/159889 -> ciflow/inductor/159889 2025-08-26T19:37:22.3488956Z * [new tag] ciflow/inductor/159923 -> ciflow/inductor/159923 2025-08-26T19:37:22.3489393Z * [new tag] ciflow/inductor/159944 -> ciflow/inductor/159944 2025-08-26T19:37:22.3797594Z * [new tag] ciflow/inductor/160080 -> ciflow/inductor/160080 2025-08-26T19:37:22.3798117Z * [new tag] ciflow/inductor/160111 -> ciflow/inductor/160111 2025-08-26T19:37:22.3798624Z * [new tag] ciflow/inductor/160156 -> ciflow/inductor/160156 2025-08-26T19:37:22.3799122Z * [new tag] ciflow/inductor/160180 -> ciflow/inductor/160180 2025-08-26T19:37:22.3799781Z * [new tag] ciflow/inductor/160198 -> ciflow/inductor/160198 2025-08-26T19:37:22.3800258Z * [new tag] ciflow/inductor/160258 -> ciflow/inductor/160258 2025-08-26T19:37:22.3800736Z * [new tag] ciflow/inductor/160266 -> ciflow/inductor/160266 2025-08-26T19:37:22.3801214Z * [new tag] ciflow/inductor/160282 -> ciflow/inductor/160282 2025-08-26T19:37:22.3801719Z * [new tag] ciflow/inductor/160323 -> ciflow/inductor/160323 2025-08-26T19:37:22.3802196Z * [new tag] ciflow/inductor/160324 -> ciflow/inductor/160324 2025-08-26T19:37:22.3802659Z * [new tag] ciflow/inductor/160325 -> ciflow/inductor/160325 2025-08-26T19:37:22.3803132Z * [new tag] ciflow/inductor/160326 -> ciflow/inductor/160326 2025-08-26T19:37:22.3803639Z * [new tag] ciflow/inductor/160327 -> ciflow/inductor/160327 2025-08-26T19:37:22.3804116Z * [new tag] ciflow/inductor/160328 -> ciflow/inductor/160328 2025-08-26T19:37:22.3804585Z * [new tag] ciflow/inductor/160329 -> ciflow/inductor/160329 2025-08-26T19:37:22.3805050Z * [new tag] ciflow/inductor/160431 -> ciflow/inductor/160431 2025-08-26T19:37:22.3805585Z * [new tag] ciflow/inductor/160448 -> ciflow/inductor/160448 2025-08-26T19:37:22.3806064Z * [new tag] ciflow/inductor/160449 -> ciflow/inductor/160449 2025-08-26T19:37:22.3806540Z * [new tag] ciflow/inductor/160467 -> ciflow/inductor/160467 2025-08-26T19:37:22.3807034Z * [new tag] ciflow/inductor/160470 -> ciflow/inductor/160470 2025-08-26T19:37:22.3807513Z * [new tag] ciflow/inductor/160483 -> ciflow/inductor/160483 2025-08-26T19:37:22.3808099Z * [new tag] ciflow/inductor/160527 -> ciflow/inductor/160527 2025-08-26T19:37:22.3808537Z * [new tag] ciflow/inductor/160532 -> ciflow/inductor/160532 2025-08-26T19:37:22.3808973Z * [new tag] ciflow/inductor/160539 -> ciflow/inductor/160539 2025-08-26T19:37:22.3809402Z * [new tag] ciflow/inductor/160580 -> ciflow/inductor/160580 2025-08-26T19:37:22.3809835Z * [new tag] ciflow/inductor/160601 -> ciflow/inductor/160601 2025-08-26T19:37:22.3810272Z * [new tag] ciflow/inductor/160611 -> ciflow/inductor/160611 2025-08-26T19:37:22.3810702Z * [new tag] ciflow/inductor/160669 -> ciflow/inductor/160669 2025-08-26T19:37:22.3811148Z * [new tag] ciflow/inductor/160670 -> ciflow/inductor/160670 2025-08-26T19:37:22.3811581Z * [new tag] ciflow/inductor/160671 -> ciflow/inductor/160671 2025-08-26T19:37:22.3812024Z * [new tag] ciflow/inductor/160677 -> ciflow/inductor/160677 2025-08-26T19:37:22.3812455Z * [new tag] ciflow/inductor/160690 -> ciflow/inductor/160690 2025-08-26T19:37:22.3812887Z * [new tag] ciflow/inductor/160763 -> ciflow/inductor/160763 2025-08-26T19:37:22.3813356Z * [new tag] ciflow/inductor/160772 -> ciflow/inductor/160772 2025-08-26T19:37:22.3813821Z * [new tag] ciflow/inductor/160798 -> ciflow/inductor/160798 2025-08-26T19:37:22.3814291Z * [new tag] ciflow/inductor/160807 -> ciflow/inductor/160807 2025-08-26T19:37:22.3814717Z * [new tag] ciflow/inductor/160836 -> ciflow/inductor/160836 2025-08-26T19:37:22.3815149Z * [new tag] ciflow/inductor/160861 -> ciflow/inductor/160861 2025-08-26T19:37:22.3815583Z * [new tag] ciflow/inductor/160883 -> ciflow/inductor/160883 2025-08-26T19:37:22.3816013Z * [new tag] ciflow/inductor/160888 -> ciflow/inductor/160888 2025-08-26T19:37:22.3816543Z * [new tag] ciflow/inductor/160903 -> ciflow/inductor/160903 2025-08-26T19:37:22.3816974Z * [new tag] ciflow/inductor/160913 -> ciflow/inductor/160913 2025-08-26T19:37:22.3817411Z * [new tag] ciflow/inductor/160941 -> ciflow/inductor/160941 2025-08-26T19:37:22.3817850Z * [new tag] ciflow/inductor/160943 -> ciflow/inductor/160943 2025-08-26T19:37:22.3818277Z * [new tag] ciflow/inductor/160991 -> ciflow/inductor/160991 2025-08-26T19:37:22.3818724Z * [new tag] ciflow/inductor/160997 -> ciflow/inductor/160997 2025-08-26T19:37:22.3819153Z * [new tag] ciflow/inductor/161003 -> ciflow/inductor/161003 2025-08-26T19:37:22.3819630Z * [new tag] ciflow/inductor/161026 -> ciflow/inductor/161026 2025-08-26T19:37:22.3820102Z * [new tag] ciflow/inductor/161032 -> ciflow/inductor/161032 2025-08-26T19:37:22.3820578Z * [new tag] ciflow/inductor/161040 -> ciflow/inductor/161040 2025-08-26T19:37:22.4117644Z * [new tag] ciflow/inductor/161055 -> ciflow/inductor/161055 2025-08-26T19:37:22.4118122Z * [new tag] ciflow/inductor/161062 -> ciflow/inductor/161062 2025-08-26T19:37:22.4118573Z * [new tag] ciflow/inductor/161069 -> ciflow/inductor/161069 2025-08-26T19:37:22.4119038Z * [new tag] ciflow/inductor/161092 -> ciflow/inductor/161092 2025-08-26T19:37:22.4119471Z * [new tag] ciflow/inductor/161093 -> ciflow/inductor/161093 2025-08-26T19:37:22.4119959Z * [new tag] ciflow/inductor/161097 -> ciflow/inductor/161097 2025-08-26T19:37:22.4120422Z * [new tag] ciflow/inductor/161098 -> ciflow/inductor/161098 2025-08-26T19:37:22.4121539Z * [new tag] ciflow/inductor/161100 -> ciflow/inductor/161100 2025-08-26T19:37:22.4121991Z * [new tag] ciflow/inductor/161107 -> ciflow/inductor/161107 2025-08-26T19:37:22.4122424Z * [new tag] ciflow/inductor/161110 -> ciflow/inductor/161110 2025-08-26T19:37:22.4122870Z * [new tag] ciflow/inductor/161117 -> ciflow/inductor/161117 2025-08-26T19:37:22.4123304Z * [new tag] ciflow/inductor/161118 -> ciflow/inductor/161118 2025-08-26T19:37:22.4123739Z * [new tag] ciflow/inductor/161123 -> ciflow/inductor/161123 2025-08-26T19:37:22.4124165Z * [new tag] ciflow/inductor/161124 -> ciflow/inductor/161124 2025-08-26T19:37:22.4124602Z * [new tag] ciflow/inductor/161125 -> ciflow/inductor/161125 2025-08-26T19:37:22.4125038Z * [new tag] ciflow/inductor/161126 -> ciflow/inductor/161126 2025-08-26T19:37:22.4125469Z * [new tag] ciflow/inductor/161144 -> ciflow/inductor/161144 2025-08-26T19:37:22.4125967Z * [new tag] ciflow/inductor/161148 -> ciflow/inductor/161148 2025-08-26T19:37:22.4126440Z * [new tag] ciflow/inductor/161158 -> ciflow/inductor/161158 2025-08-26T19:37:22.4126871Z * [new tag] ciflow/inductor/161178 -> ciflow/inductor/161178 2025-08-26T19:37:22.4127300Z * [new tag] ciflow/inductor/161190 -> ciflow/inductor/161190 2025-08-26T19:37:22.4127726Z * [new tag] ciflow/inductor/161208 -> ciflow/inductor/161208 2025-08-26T19:37:22.4128166Z * [new tag] ciflow/inductor/161225 -> ciflow/inductor/161225 2025-08-26T19:37:22.4128592Z * [new tag] ciflow/inductor/161229 -> ciflow/inductor/161229 2025-08-26T19:37:22.4129035Z * [new tag] ciflow/inductor/161237 -> ciflow/inductor/161237 2025-08-26T19:37:22.4129475Z * [new tag] ciflow/inductor/161241 -> ciflow/inductor/161241 2025-08-26T19:37:22.4129998Z * [new tag] ciflow/inductor/161246 -> ciflow/inductor/161246 2025-08-26T19:37:22.4130434Z * [new tag] ciflow/inductor/161274 -> ciflow/inductor/161274 2025-08-26T19:37:22.4130862Z * [new tag] ciflow/inductor/161278 -> ciflow/inductor/161278 2025-08-26T19:37:22.4131297Z * [new tag] ciflow/inductor/161279 -> ciflow/inductor/161279 2025-08-26T19:37:22.4131775Z * [new tag] ciflow/inductor/161288 -> ciflow/inductor/161288 2025-08-26T19:37:22.4132269Z * [new tag] ciflow/inductor/161314 -> ciflow/inductor/161314 2025-08-26T19:37:22.4132712Z * [new tag] ciflow/inductor/161320 -> ciflow/inductor/161320 2025-08-26T19:37:22.4133145Z * [new tag] ciflow/inductor/161336 -> ciflow/inductor/161336 2025-08-26T19:37:22.4133593Z * [new tag] ciflow/inductor/161337 -> ciflow/inductor/161337 2025-08-26T19:37:22.4134022Z * [new tag] ciflow/inductor/161338 -> ciflow/inductor/161338 2025-08-26T19:37:22.4134467Z * [new tag] ciflow/inductor/161339 -> ciflow/inductor/161339 2025-08-26T19:37:22.4134911Z * [new tag] ciflow/inductor/161340 -> ciflow/inductor/161340 2025-08-26T19:37:22.4135348Z * [new tag] ciflow/inductor/161341 -> ciflow/inductor/161341 2025-08-26T19:37:22.4135795Z * [new tag] ciflow/inductor/161342 -> ciflow/inductor/161342 2025-08-26T19:37:22.4136228Z * [new tag] ciflow/inductor/161343 -> ciflow/inductor/161343 2025-08-26T19:37:22.4136666Z * [new tag] ciflow/inductor/161344 -> ciflow/inductor/161344 2025-08-26T19:37:22.4137094Z * [new tag] ciflow/inductor/161345 -> ciflow/inductor/161345 2025-08-26T19:37:22.4137682Z * [new tag] ciflow/inductor/161346 -> ciflow/inductor/161346 2025-08-26T19:37:22.4138172Z * [new tag] ciflow/inductor/161347 -> ciflow/inductor/161347 2025-08-26T19:37:22.4138610Z * [new tag] ciflow/inductor/161348 -> ciflow/inductor/161348 2025-08-26T19:37:22.4139065Z * [new tag] ciflow/inductor/161349 -> ciflow/inductor/161349 2025-08-26T19:37:22.4139509Z * [new tag] ciflow/inductor/161350 -> ciflow/inductor/161350 2025-08-26T19:37:22.4139959Z * [new tag] ciflow/inductor/161351 -> ciflow/inductor/161351 2025-08-26T19:37:22.4457154Z * [new tag] ciflow/inductor/161353 -> ciflow/inductor/161353 2025-08-26T19:37:22.4457701Z * [new tag] ciflow/inductor/161354 -> ciflow/inductor/161354 2025-08-26T19:37:22.4458154Z * [new tag] ciflow/inductor/161355 -> ciflow/inductor/161355 2025-08-26T19:37:22.4458635Z * [new tag] ciflow/inductor/161362 -> ciflow/inductor/161362 2025-08-26T19:37:22.4459069Z * [new tag] ciflow/inductor/161363 -> ciflow/inductor/161363 2025-08-26T19:37:22.4459513Z * [new tag] ciflow/inductor/161382 -> ciflow/inductor/161382 2025-08-26T19:37:22.4459941Z * [new tag] ciflow/inductor/161383 -> ciflow/inductor/161383 2025-08-26T19:37:22.4460387Z * [new tag] ciflow/inductor/161385 -> ciflow/inductor/161385 2025-08-26T19:37:22.4460824Z * [new tag] ciflow/inductor/161396 -> ciflow/inductor/161396 2025-08-26T19:37:22.4470045Z * [new tag] ciflow/inductor/161397 -> ciflow/inductor/161397 2025-08-26T19:37:22.4470625Z * [new tag] ciflow/inductor/161404 -> ciflow/inductor/161404 2025-08-26T19:37:22.4471072Z * [new tag] ciflow/inductor/161405 -> ciflow/inductor/161405 2025-08-26T19:37:22.4471518Z * [new tag] ciflow/inductor/161406 -> ciflow/inductor/161406 2025-08-26T19:37:22.4471962Z * [new tag] ciflow/inductor/161409 -> ciflow/inductor/161409 2025-08-26T19:37:22.4473085Z * [new tag] ciflow/inductor/161410 -> ciflow/inductor/161410 2025-08-26T19:37:22.4473535Z * [new tag] ciflow/inductor/161414 -> ciflow/inductor/161414 2025-08-26T19:37:22.4473980Z * [new tag] ciflow/inductor/161416 -> ciflow/inductor/161416 2025-08-26T19:37:22.4474424Z * [new tag] ciflow/inductor/161420 -> ciflow/inductor/161420 2025-08-26T19:37:22.4474860Z * [new tag] ciflow/inductor/161431 -> ciflow/inductor/161431 2025-08-26T19:37:22.4475295Z * [new tag] ciflow/inductor/161435 -> ciflow/inductor/161435 2025-08-26T19:37:22.4475721Z * [new tag] ciflow/inductor/161440 -> ciflow/inductor/161440 2025-08-26T19:37:22.4476162Z * [new tag] ciflow/inductor/161447 -> ciflow/inductor/161447 2025-08-26T19:37:22.4476607Z * [new tag] ciflow/inductor/161452 -> ciflow/inductor/161452 2025-08-26T19:37:22.4477046Z * [new tag] ciflow/inductor/161453 -> ciflow/inductor/161453 2025-08-26T19:37:22.4477492Z * [new tag] ciflow/inductor/161458 -> ciflow/inductor/161458 2025-08-26T19:37:22.4477925Z * [new tag] ciflow/inductor/161461 -> ciflow/inductor/161461 2025-08-26T19:37:22.4478366Z * [new tag] ciflow/inductor/161464 -> ciflow/inductor/161464 2025-08-26T19:37:22.4478816Z * [new tag] ciflow/inductor/161466 -> ciflow/inductor/161466 2025-08-26T19:37:22.4479253Z * [new tag] ciflow/inductor/161468 -> ciflow/inductor/161468 2025-08-26T19:37:22.4479692Z * [new tag] ciflow/inductor/161469 -> ciflow/inductor/161469 2025-08-26T19:37:22.4480133Z * [new tag] ciflow/inductor/161474 -> ciflow/inductor/161474 2025-08-26T19:37:22.4480680Z * [new tag] ciflow/inductor/161477 -> ciflow/inductor/161477 2025-08-26T19:37:22.4481115Z * [new tag] ciflow/inductor/161485 -> ciflow/inductor/161485 2025-08-26T19:37:22.4481552Z * [new tag] ciflow/inductor/161486 -> ciflow/inductor/161486 2025-08-26T19:37:22.4481990Z * [new tag] ciflow/inductor/161487 -> ciflow/inductor/161487 2025-08-26T19:37:22.4482420Z * [new tag] ciflow/inductor/161495 -> ciflow/inductor/161495 2025-08-26T19:37:22.4482854Z * [new tag] ciflow/inductor/161497 -> ciflow/inductor/161497 2025-08-26T19:37:22.4483284Z * [new tag] ciflow/inductor/161499 -> ciflow/inductor/161499 2025-08-26T19:37:22.4483724Z * [new tag] ciflow/inductor/161512 -> ciflow/inductor/161512 2025-08-26T19:37:22.4484161Z * [new tag] ciflow/inductor/161521 -> ciflow/inductor/161521 2025-08-26T19:37:22.4484592Z * [new tag] ciflow/inductor/161526 -> ciflow/inductor/161526 2025-08-26T19:37:22.4485035Z * [new tag] ciflow/inductor/161530 -> ciflow/inductor/161530 2025-08-26T19:37:22.4485471Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-08-26T19:37:22.4485929Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-08-26T19:37:22.4486380Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-08-26T19:37:22.4486845Z * [new tag] ciflow/linux-aarch64/159737 -> ciflow/linux-aarch64/159737 2025-08-26T19:37:22.4487332Z * [new tag] ciflow/linux-aarch64/160078 -> ciflow/linux-aarch64/160078 2025-08-26T19:37:22.4487806Z * [new tag] ciflow/linux-aarch64/160080 -> ciflow/linux-aarch64/160080 2025-08-26T19:37:22.4488251Z * [new tag] ciflow/mps/155923 -> ciflow/mps/155923 2025-08-26T19:37:22.4811309Z * [new tag] ciflow/mps/157553 -> ciflow/mps/157553 2025-08-26T19:37:22.4811943Z * [new tag] ciflow/mps/157635 -> ciflow/mps/157635 2025-08-26T19:37:22.4812355Z * [new tag] ciflow/mps/160839 -> ciflow/mps/160839 2025-08-26T19:37:22.4812751Z * [new tag] ciflow/mps/161511 -> ciflow/mps/161511 2025-08-26T19:37:22.4813184Z * [new tag] ciflow/nightly/158104 -> ciflow/nightly/158104 2025-08-26T19:37:22.4813717Z * [new tag] ciflow/periodic-rocm-mi300/161180 -> ciflow/periodic-rocm-mi300/161180 2025-08-26T19:37:22.4814246Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-08-26T19:37:22.4815013Z * [new tag] ciflow/periodic/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 -> ciflow/periodic/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 2025-08-26T19:37:22.4817200Z * [new tag] ciflow/periodic/156491 -> ciflow/periodic/156491 2025-08-26T19:37:22.4817666Z * [new tag] ciflow/periodic/161013 -> ciflow/periodic/161013 2025-08-26T19:37:22.4818126Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-08-26T19:37:22.4818583Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-08-26T19:37:22.4819025Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-08-26T19:37:22.4819456Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-08-26T19:37:22.4819928Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-08-26T19:37:22.4820726Z * [new tag] ciflow/periodic/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 -> ciflow/periodic/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 2025-08-26T19:37:22.4821529Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-08-26T19:37:22.4823590Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-08-26T19:37:22.4824117Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-08-26T19:37:22.4824701Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-08-26T19:37:22.4825238Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-08-26T19:37:22.4825766Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-08-26T19:37:22.4826259Z * [new tag] ciflow/rocm-mi300/159158 -> ciflow/rocm-mi300/159158 2025-08-26T19:37:22.4826716Z * [new tag] ciflow/rocm-mi300/161040 -> ciflow/rocm-mi300/161040 2025-08-26T19:37:22.4827166Z * [new tag] ciflow/rocm-mi300/161180 -> ciflow/rocm-mi300/161180 2025-08-26T19:37:22.4827607Z * [new tag] ciflow/rocm-mi300/161225 -> ciflow/rocm-mi300/161225 2025-08-26T19:37:22.4829445Z * [new tag] ciflow/rocm-mi300/161429 -> ciflow/rocm-mi300/161429 2025-08-26T19:37:22.4829906Z * [new tag] ciflow/rocm-mi355/160215 -> ciflow/rocm-mi355/160215 2025-08-26T19:37:22.4830331Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-08-26T19:37:22.4830745Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-08-26T19:37:22.4831148Z * [new tag] ciflow/rocm/152526 -> ciflow/rocm/152526 2025-08-26T19:37:22.4831562Z * [new tag] ciflow/rocm/156491 -> ciflow/rocm/156491 2025-08-26T19:37:22.4831966Z * [new tag] ciflow/rocm/158352 -> ciflow/rocm/158352 2025-08-26T19:37:22.4832363Z * [new tag] ciflow/rocm/159158 -> ciflow/rocm/159158 2025-08-26T19:37:22.4832775Z * [new tag] ciflow/rocm/160215 -> ciflow/rocm/160215 2025-08-26T19:37:22.4833167Z * [new tag] ciflow/rocm/160671 -> ciflow/rocm/160671 2025-08-26T19:37:22.4833676Z * [new tag] ciflow/rocm/160676 -> ciflow/rocm/160676 2025-08-26T19:37:22.4835451Z * [new tag] ciflow/rocm/161180 -> ciflow/rocm/161180 2025-08-26T19:37:22.4835869Z * [new tag] ciflow/rocm/161225 -> ciflow/rocm/161225 2025-08-26T19:37:22.4836280Z * [new tag] ciflow/rocm/161277 -> ciflow/rocm/161277 2025-08-26T19:37:22.4836674Z * [new tag] ciflow/rocm/161429 -> ciflow/rocm/161429 2025-08-26T19:37:22.4837086Z * [new tag] ciflow/rocm/161496 -> ciflow/rocm/161496 2025-08-26T19:37:22.4837472Z * [new tag] ciflow/s390/160893 -> ciflow/s390/160893 2025-08-26T19:37:22.4837878Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-08-26T19:37:22.4838292Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-08-26T19:37:22.4839037Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-08-26T19:37:22.4839784Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-08-26T19:37:22.4840190Z * [new tag] ciflow/slow/161182 -> ciflow/slow/161182 2025-08-26T19:37:22.5117748Z * [new tag] ciflow/slow/161395 -> ciflow/slow/161395 2025-08-26T19:37:22.5118173Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-08-26T19:37:22.5118586Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-08-26T19:37:22.5119005Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-08-26T19:37:22.5119411Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-08-26T19:37:22.5120014Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-08-26T19:37:22.5120436Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-08-26T19:37:22.5120840Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-08-26T19:37:22.5121262Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-08-26T19:37:22.5121971Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-08-26T19:37:22.5122679Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-08-26T19:37:22.5123094Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-08-26T19:37:22.5123527Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-08-26T19:37:22.5123937Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-08-26T19:37:22.5124346Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-08-26T19:37:22.5125099Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-08-26T19:37:22.5125852Z * [new tag] ciflow/torchbench/158137 -> ciflow/torchbench/158137 2025-08-26T19:37:22.5126289Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-08-26T19:37:22.5126690Z * [new tag] ciflow/trunk/151314 -> ciflow/trunk/151314 2025-08-26T19:37:22.5127092Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-08-26T19:37:22.5127506Z * [new tag] ciflow/trunk/153784 -> ciflow/trunk/153784 2025-08-26T19:37:22.5127906Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-08-26T19:37:22.5128321Z * [new tag] ciflow/trunk/156418 -> ciflow/trunk/156418 2025-08-26T19:37:22.5128811Z * [new tag] ciflow/trunk/157196 -> ciflow/trunk/157196 2025-08-26T19:37:22.5129217Z * [new tag] ciflow/trunk/157537 -> ciflow/trunk/157537 2025-08-26T19:37:22.5129627Z * [new tag] ciflow/trunk/157767 -> ciflow/trunk/157767 2025-08-26T19:37:22.5130024Z * [new tag] ciflow/trunk/157944 -> ciflow/trunk/157944 2025-08-26T19:37:22.5130428Z * [new tag] ciflow/trunk/158104 -> ciflow/trunk/158104 2025-08-26T19:37:22.5130824Z * [new tag] ciflow/trunk/158541 -> ciflow/trunk/158541 2025-08-26T19:37:22.5131232Z * [new tag] ciflow/trunk/158733 -> ciflow/trunk/158733 2025-08-26T19:37:22.5131630Z * [new tag] ciflow/trunk/158747 -> ciflow/trunk/158747 2025-08-26T19:37:22.5132040Z * [new tag] ciflow/trunk/159158 -> ciflow/trunk/159158 2025-08-26T19:37:22.5132448Z * [new tag] ciflow/trunk/159387 -> ciflow/trunk/159387 2025-08-26T19:37:22.5132851Z * [new tag] ciflow/trunk/159562 -> ciflow/trunk/159562 2025-08-26T19:37:22.5133266Z * [new tag] ciflow/trunk/159835 -> ciflow/trunk/159835 2025-08-26T19:37:22.5133663Z * [new tag] ciflow/trunk/159889 -> ciflow/trunk/159889 2025-08-26T19:37:22.5134079Z * [new tag] ciflow/trunk/159923 -> ciflow/trunk/159923 2025-08-26T19:37:22.5134486Z * [new tag] ciflow/trunk/160156 -> ciflow/trunk/160156 2025-08-26T19:37:22.5134887Z * [new tag] ciflow/trunk/160180 -> ciflow/trunk/160180 2025-08-26T19:37:22.5135303Z * [new tag] ciflow/trunk/160198 -> ciflow/trunk/160198 2025-08-26T19:37:22.5135700Z * [new tag] ciflow/trunk/160258 -> ciflow/trunk/160258 2025-08-26T19:37:22.5136197Z * [new tag] ciflow/trunk/160431 -> ciflow/trunk/160431 2025-08-26T19:37:22.5136602Z * [new tag] ciflow/trunk/160448 -> ciflow/trunk/160448 2025-08-26T19:37:22.5137015Z * [new tag] ciflow/trunk/160449 -> ciflow/trunk/160449 2025-08-26T19:37:22.5137424Z * [new tag] ciflow/trunk/160527 -> ciflow/trunk/160527 2025-08-26T19:37:22.5137828Z * [new tag] ciflow/trunk/160532 -> ciflow/trunk/160532 2025-08-26T19:37:22.5138240Z * [new tag] ciflow/trunk/160671 -> ciflow/trunk/160671 2025-08-26T19:37:22.5138637Z * [new tag] ciflow/trunk/160677 -> ciflow/trunk/160677 2025-08-26T19:37:22.5139044Z * [new tag] ciflow/trunk/160692 -> ciflow/trunk/160692 2025-08-26T19:37:22.5469563Z * [new tag] ciflow/trunk/160781 -> ciflow/trunk/160781 2025-08-26T19:37:22.5470045Z * [new tag] ciflow/trunk/160825 -> ciflow/trunk/160825 2025-08-26T19:37:22.5470483Z * [new tag] ciflow/trunk/160836 -> ciflow/trunk/160836 2025-08-26T19:37:22.5470881Z * [new tag] ciflow/trunk/160866 -> ciflow/trunk/160866 2025-08-26T19:37:22.5471288Z * [new tag] ciflow/trunk/160915 -> ciflow/trunk/160915 2025-08-26T19:37:22.5471697Z * [new tag] ciflow/trunk/160991 -> ciflow/trunk/160991 2025-08-26T19:37:22.5472094Z * [new tag] ciflow/trunk/160992 -> ciflow/trunk/160992 2025-08-26T19:37:22.5472498Z * [new tag] ciflow/trunk/161004 -> ciflow/trunk/161004 2025-08-26T19:37:22.5472893Z * [new tag] ciflow/trunk/161016 -> ciflow/trunk/161016 2025-08-26T19:37:22.5473298Z * [new tag] ciflow/trunk/161023 -> ciflow/trunk/161023 2025-08-26T19:37:22.5473696Z * [new tag] ciflow/trunk/161026 -> ciflow/trunk/161026 2025-08-26T19:37:22.5474258Z * [new tag] ciflow/trunk/161032 -> ciflow/trunk/161032 2025-08-26T19:37:22.5474667Z * [new tag] ciflow/trunk/161035 -> ciflow/trunk/161035 2025-08-26T19:37:22.5475064Z * [new tag] ciflow/trunk/161040 -> ciflow/trunk/161040 2025-08-26T19:37:22.5475476Z * [new tag] ciflow/trunk/161094 -> ciflow/trunk/161094 2025-08-26T19:37:22.5475875Z * [new tag] ciflow/trunk/161097 -> ciflow/trunk/161097 2025-08-26T19:37:22.5476277Z * [new tag] ciflow/trunk/161098 -> ciflow/trunk/161098 2025-08-26T19:37:22.5476683Z * [new tag] ciflow/trunk/161100 -> ciflow/trunk/161100 2025-08-26T19:37:22.5477079Z * [new tag] ciflow/trunk/161106 -> ciflow/trunk/161106 2025-08-26T19:37:22.5477482Z * [new tag] ciflow/trunk/161110 -> ciflow/trunk/161110 2025-08-26T19:37:22.5477878Z * [new tag] ciflow/trunk/161114 -> ciflow/trunk/161114 2025-08-26T19:37:22.5478300Z * [new tag] ciflow/trunk/161117 -> ciflow/trunk/161117 2025-08-26T19:37:22.5478697Z * [new tag] ciflow/trunk/161123 -> ciflow/trunk/161123 2025-08-26T19:37:22.5479104Z * [new tag] ciflow/trunk/161124 -> ciflow/trunk/161124 2025-08-26T19:37:22.5479513Z * [new tag] ciflow/trunk/161125 -> ciflow/trunk/161125 2025-08-26T19:37:22.5479907Z * [new tag] ciflow/trunk/161126 -> ciflow/trunk/161126 2025-08-26T19:37:22.5480326Z * [new tag] ciflow/trunk/161131 -> ciflow/trunk/161131 2025-08-26T19:37:22.5480728Z * [new tag] ciflow/trunk/161143 -> ciflow/trunk/161143 2025-08-26T19:37:22.5481129Z * [new tag] ciflow/trunk/161144 -> ciflow/trunk/161144 2025-08-26T19:37:22.5481635Z * [new tag] ciflow/trunk/161164 -> ciflow/trunk/161164 2025-08-26T19:37:22.5482041Z * [new tag] ciflow/trunk/161180 -> ciflow/trunk/161180 2025-08-26T19:37:22.5482448Z * [new tag] ciflow/trunk/161214 -> ciflow/trunk/161214 2025-08-26T19:37:22.5482844Z * [new tag] ciflow/trunk/161217 -> ciflow/trunk/161217 2025-08-26T19:37:22.5483250Z * [new tag] ciflow/trunk/161225 -> ciflow/trunk/161225 2025-08-26T19:37:22.5483660Z * [new tag] ciflow/trunk/161236 -> ciflow/trunk/161236 2025-08-26T19:37:22.5484061Z * [new tag] ciflow/trunk/161237 -> ciflow/trunk/161237 2025-08-26T19:37:22.5484467Z * [new tag] ciflow/trunk/161241 -> ciflow/trunk/161241 2025-08-26T19:37:22.5484867Z * [new tag] ciflow/trunk/161262 -> ciflow/trunk/161262 2025-08-26T19:37:22.5485274Z * [new tag] ciflow/trunk/161263 -> ciflow/trunk/161263 2025-08-26T19:37:22.5485690Z * [new tag] ciflow/trunk/161279 -> ciflow/trunk/161279 2025-08-26T19:37:22.5486087Z * [new tag] ciflow/trunk/161306 -> ciflow/trunk/161306 2025-08-26T19:37:22.5486490Z * [new tag] ciflow/trunk/161311 -> ciflow/trunk/161311 2025-08-26T19:37:22.5486888Z * [new tag] ciflow/trunk/161354 -> ciflow/trunk/161354 2025-08-26T19:37:22.5487293Z * [new tag] ciflow/trunk/161355 -> ciflow/trunk/161355 2025-08-26T19:37:22.5487692Z * [new tag] ciflow/trunk/161362 -> ciflow/trunk/161362 2025-08-26T19:37:22.5488105Z * [new tag] ciflow/trunk/161363 -> ciflow/trunk/161363 2025-08-26T19:37:22.5488514Z * [new tag] ciflow/trunk/161370 -> ciflow/trunk/161370 2025-08-26T19:37:22.5488914Z * [new tag] ciflow/trunk/161383 -> ciflow/trunk/161383 2025-08-26T19:37:22.5489320Z * [new tag] ciflow/trunk/161385 -> ciflow/trunk/161385 2025-08-26T19:37:22.5489803Z * [new tag] ciflow/trunk/161389 -> ciflow/trunk/161389 2025-08-26T19:37:22.5490236Z * [new tag] ciflow/trunk/161392 -> ciflow/trunk/161392 2025-08-26T19:37:22.5841367Z * [new tag] ciflow/trunk/161395 -> ciflow/trunk/161395 2025-08-26T19:37:22.5841821Z * [new tag] ciflow/trunk/161396 -> ciflow/trunk/161396 2025-08-26T19:37:22.5842247Z * [new tag] ciflow/trunk/161409 -> ciflow/trunk/161409 2025-08-26T19:37:22.5842697Z * [new tag] ciflow/trunk/161410 -> ciflow/trunk/161410 2025-08-26T19:37:22.5843144Z * [new tag] ciflow/trunk/161435 -> ciflow/trunk/161435 2025-08-26T19:37:22.5843589Z * [new tag] ciflow/trunk/161437 -> ciflow/trunk/161437 2025-08-26T19:37:22.5844049Z * [new tag] ciflow/trunk/161451 -> ciflow/trunk/161451 2025-08-26T19:37:22.5844451Z * [new tag] ciflow/trunk/161453 -> ciflow/trunk/161453 2025-08-26T19:37:22.5844864Z * [new tag] ciflow/trunk/161454 -> ciflow/trunk/161454 2025-08-26T19:37:22.5845269Z * [new tag] ciflow/trunk/161489 -> ciflow/trunk/161489 2025-08-26T19:37:22.5845670Z * [new tag] ciflow/trunk/161517 -> ciflow/trunk/161517 2025-08-26T19:37:22.5846082Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-08-26T19:37:22.5846504Z * [new tag] ciflow/win-arm64/158104 -> ciflow/win-arm64/158104 2025-08-26T19:37:22.5846941Z * [new tag] ciflow/win-arm64/159562 -> ciflow/win-arm64/159562 2025-08-26T19:37:22.5847371Z * [new tag] ciflow/win-arm64/160258 -> ciflow/win-arm64/160258 2025-08-26T19:37:22.5847992Z * [new tag] ciflow/win-arm64/161504 -> ciflow/win-arm64/161504 2025-08-26T19:37:22.5848419Z * [new tag] ciflow/xpu/143553 -> ciflow/xpu/143553 2025-08-26T19:37:22.5848815Z * [new tag] ciflow/xpu/158733 -> ciflow/xpu/158733 2025-08-26T19:37:22.5849218Z * [new tag] ciflow/xpu/159473 -> ciflow/xpu/159473 2025-08-26T19:37:22.5849610Z * [new tag] ciflow/xpu/159944 -> ciflow/xpu/159944 2025-08-26T19:37:22.5850006Z * [new tag] ciflow/xpu/160067 -> ciflow/xpu/160067 2025-08-26T19:37:22.5850402Z * [new tag] ciflow/xpu/160158 -> ciflow/xpu/160158 2025-08-26T19:37:22.5850790Z * [new tag] ciflow/xpu/160940 -> ciflow/xpu/160940 2025-08-26T19:37:22.5851189Z * [new tag] ciflow/xpu/161041 -> ciflow/xpu/161041 2025-08-26T19:37:22.5851579Z * [new tag] ciflow/xpu/161045 -> ciflow/xpu/161045 2025-08-26T19:37:22.5851972Z * [new tag] ciflow/xpu/161142 -> ciflow/xpu/161142 2025-08-26T19:37:22.5852363Z * [new tag] ciflow/xpu/161152 -> ciflow/xpu/161152 2025-08-26T19:37:22.5852759Z * [new tag] ciflow/xpu/161246 -> ciflow/xpu/161246 2025-08-26T19:37:22.5853153Z * [new tag] ciflow/xpu/161389 -> ciflow/xpu/161389 2025-08-26T19:37:22.5853589Z * [new tag] ciflow/xpu/161392 -> ciflow/xpu/161392 2025-08-26T19:37:22.5854033Z * [new tag] ciflow/xpu/161397 -> ciflow/xpu/161397 2025-08-26T19:37:22.5854459Z * [new tag] ciflow/xpu/161477 -> ciflow/xpu/161477 2025-08-26T19:37:22.5854866Z * [new tag] ciflow/xpu/161489 -> ciflow/xpu/161489 2025-08-26T19:37:22.5855266Z * [new tag] cslpull75 -> cslpull75 2025-08-26T19:37:22.5855629Z * [new tag] cslpull76 -> cslpull76 2025-08-26T19:37:22.5856094Z * [new tag] cslpull77 -> cslpull77 2025-08-26T19:37:22.5856451Z * [new tag] cslpull78 -> cslpull78 2025-08-26T19:37:22.5856816Z * [new tag] cslpull79 -> cslpull79 2025-08-26T19:37:22.5857176Z * [new tag] cslpull80 -> cslpull80 2025-08-26T19:37:22.5857540Z * [new tag] cslpull81 -> cslpull81 2025-08-26T19:37:22.5857900Z * [new tag] cslpull82 -> cslpull82 2025-08-26T19:37:22.5858250Z * [new tag] cslpull83 -> cslpull83 2025-08-26T19:37:22.5858606Z * [new tag] cslpull84 -> cslpull84 2025-08-26T19:37:22.5858953Z * [new tag] cslpull85 -> cslpull85 2025-08-26T19:37:22.5859322Z * [new tag] cslpull86 -> cslpull86 2025-08-26T19:37:22.5859673Z * [new tag] cslpull87 -> cslpull87 2025-08-26T19:37:22.5860033Z * [new tag] cslpull88 -> cslpull88 2025-08-26T19:37:22.5860394Z * [new tag] cslpull89 -> cslpull89 2025-08-26T19:37:22.5860746Z * [new tag] cslpull90 -> cslpull90 2025-08-26T19:37:22.5861106Z * [new tag] cslpull91 -> cslpull91 2025-08-26T19:37:22.5861453Z * [new tag] cslpull92 -> cslpull92 2025-08-26T19:37:22.5861814Z * [new tag] flight_5 -> flight_5 2025-08-26T19:37:22.5862175Z * [new tag] flight_5.1 -> flight_5.1 2025-08-26T19:37:22.5862525Z * [new tag] flight_5.2 -> flight_5.2 2025-08-26T19:37:22.6102750Z * [new tag] flight_5.3 -> flight_5.3 2025-08-26T19:37:22.6103180Z * [new tag] forpull1 -> forpull1 2025-08-26T19:37:22.6103606Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-08-26T19:37:22.6104031Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-08-26T19:37:22.6104490Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-08-26T19:37:22.6104905Z * [new tag] nightly-binary -> nightly-binary 2025-08-26T19:37:22.6105325Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-08-26T19:37:22.6105745Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-08-26T19:37:22.6106379Z * [new tag] trunk/00efeabc295e072fb9d6e68b008a31fb04201fd1 -> trunk/00efeabc295e072fb9d6e68b008a31fb04201fd1 2025-08-26T19:37:22.6107227Z * [new tag] trunk/037c43d3b24d4db733011cb904c385eaa6e11bcf -> trunk/037c43d3b24d4db733011cb904c385eaa6e11bcf 2025-08-26T19:37:22.6108060Z * [new tag] trunk/0533ff2ccba7e77622ac3c6758f1032bdc10feff -> trunk/0533ff2ccba7e77622ac3c6758f1032bdc10feff 2025-08-26T19:37:22.6108885Z * [new tag] trunk/05e8fac4f374c4dbf0cd0e85e925e9112cf234a2 -> trunk/05e8fac4f374c4dbf0cd0e85e925e9112cf234a2 2025-08-26T19:37:22.6109732Z * [new tag] trunk/089ad1d88bf31ddab769a4f87750b474ed1214c8 -> trunk/089ad1d88bf31ddab769a4f87750b474ed1214c8 2025-08-26T19:37:22.6110549Z * [new tag] trunk/0924304e728b9507a54eced28c812fbd5b13c397 -> trunk/0924304e728b9507a54eced28c812fbd5b13c397 2025-08-26T19:37:22.6111372Z * [new tag] trunk/0a5ab612dd2b9fc5bb2e1281ec7ca8730c5c3c89 -> trunk/0a5ab612dd2b9fc5bb2e1281ec7ca8730c5c3c89 2025-08-26T19:37:22.6112193Z * [new tag] trunk/0d19541284c38212235f78db24e3ac3ae4787e45 -> trunk/0d19541284c38212235f78db24e3ac3ae4787e45 2025-08-26T19:37:22.6113017Z * [new tag] trunk/0d9da384ef76e3ce2e7eaf951252ae9edb922863 -> trunk/0d9da384ef76e3ce2e7eaf951252ae9edb922863 2025-08-26T19:37:22.6113996Z * [new tag] trunk/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 -> trunk/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 2025-08-26T19:37:22.6114816Z * [new tag] trunk/0f801a510f5f185543388717241adb7237c3d46a -> trunk/0f801a510f5f185543388717241adb7237c3d46a 2025-08-26T19:37:22.6115626Z * [new tag] trunk/10e67f5ec3834da93fc2022caa7ac69cf97c01f0 -> trunk/10e67f5ec3834da93fc2022caa7ac69cf97c01f0 2025-08-26T19:37:22.6116462Z * [new tag] trunk/1113e7de30da95973c1eac7921601f9a0e94f2db -> trunk/1113e7de30da95973c1eac7921601f9a0e94f2db 2025-08-26T19:37:22.6117299Z * [new tag] trunk/117f11adb4b41a5485b570c4337c22ecc8e00aeb -> trunk/117f11adb4b41a5485b570c4337c22ecc8e00aeb 2025-08-26T19:37:22.6118116Z * [new tag] trunk/1471b20cb3fc502931ef12b1420414e32facd5b0 -> trunk/1471b20cb3fc502931ef12b1420414e32facd5b0 2025-08-26T19:37:22.6118940Z * [new tag] trunk/16e811e0b5073c7b42fe76f650ca2b79e339e053 -> trunk/16e811e0b5073c7b42fe76f650ca2b79e339e053 2025-08-26T19:37:22.6119758Z * [new tag] trunk/17b0263e86aec8aed068bb8b6744b129233e8084 -> trunk/17b0263e86aec8aed068bb8b6744b129233e8084 2025-08-26T19:37:22.6120577Z * [new tag] trunk/18271148d32da3d48897e9e7515de45066fce5bc -> trunk/18271148d32da3d48897e9e7515de45066fce5bc 2025-08-26T19:37:22.6121380Z * [new tag] trunk/19c70c2f3dc345a6555318f5f8b46cd55c42d0b4 -> trunk/19c70c2f3dc345a6555318f5f8b46cd55c42d0b4 2025-08-26T19:37:22.6122194Z * [new tag] trunk/1a566c4909ccf16ace1fbf1f65d90c995b362712 -> trunk/1a566c4909ccf16ace1fbf1f65d90c995b362712 2025-08-26T19:37:22.6123030Z * [new tag] trunk/1d458e294755ff2bfa314c67ddc5cb1dacc2aee8 -> trunk/1d458e294755ff2bfa314c67ddc5cb1dacc2aee8 2025-08-26T19:37:22.6123979Z * [new tag] trunk/1d46aa736fc8870dc88015c729a8c64470fa985c -> trunk/1d46aa736fc8870dc88015c729a8c64470fa985c 2025-08-26T19:37:22.6125051Z * [new tag] trunk/1de4540449ad6b9df8f452ab72da30ce8908af60 -> trunk/1de4540449ad6b9df8f452ab72da30ce8908af60 2025-08-26T19:37:22.6125891Z * [new tag] trunk/1e3fe78a104776cd708f150116348540346dae25 -> trunk/1e3fe78a104776cd708f150116348540346dae25 2025-08-26T19:37:22.6126705Z * [new tag] trunk/1ea918caf990c84bcb4e4ee5eee90f1102815b0a -> trunk/1ea918caf990c84bcb4e4ee5eee90f1102815b0a 2025-08-26T19:37:22.6127555Z * [new tag] trunk/1eccfb157ab9855b3f81872a23502fb15f455e0a -> trunk/1eccfb157ab9855b3f81872a23502fb15f455e0a 2025-08-26T19:37:22.6128392Z * [new tag] trunk/1fbe230b0d82251c6de8b5ae86c4da456b1db05c -> trunk/1fbe230b0d82251c6de8b5ae86c4da456b1db05c 2025-08-26T19:37:22.6129206Z * [new tag] trunk/209143ddeb99b0b075d16525088cee4893be7492 -> trunk/209143ddeb99b0b075d16525088cee4893be7492 2025-08-26T19:37:22.6369208Z * [new tag] trunk/22df59efc0a845b3ff37019029efd07c5a25c456 -> trunk/22df59efc0a845b3ff37019029efd07c5a25c456 2025-08-26T19:37:22.6370087Z * [new tag] trunk/23b033452fb1d4b404216279bbf5b6d06d8570c3 -> trunk/23b033452fb1d4b404216279bbf5b6d06d8570c3 2025-08-26T19:37:22.6370919Z * [new tag] trunk/24e7f3c21c9452c81d72bbd4b0c6b1f96f33536a -> trunk/24e7f3c21c9452c81d72bbd4b0c6b1f96f33536a 2025-08-26T19:37:22.6371879Z * [new tag] trunk/25df65afd8b5e2fffbcaf2b7ed63ef7a1e37ecb9 -> trunk/25df65afd8b5e2fffbcaf2b7ed63ef7a1e37ecb9 2025-08-26T19:37:22.6372719Z * [new tag] trunk/262640fd220236042fbf4443cc163c8838c84c3d -> trunk/262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:37:22.6373515Z * [new tag] trunk/266784ec6ae82f823abe406582e7a91f2ebb564a -> trunk/266784ec6ae82f823abe406582e7a91f2ebb564a 2025-08-26T19:37:22.6374357Z * [new tag] trunk/2835cc5e91eda8cbc4ac59de2ca990fa17107409 -> trunk/2835cc5e91eda8cbc4ac59de2ca990fa17107409 2025-08-26T19:37:22.6375312Z * [new tag] trunk/284b7190054686e68d9cc683b6ce43e45dd22338 -> trunk/284b7190054686e68d9cc683b6ce43e45dd22338 2025-08-26T19:37:22.6376125Z * [new tag] trunk/29afde20203ee6773641b4e3552942a37315316f -> trunk/29afde20203ee6773641b4e3552942a37315316f 2025-08-26T19:37:22.6376954Z * [new tag] trunk/2a7a7ad7116d930fde86cda02f668e624d26ec3e -> trunk/2a7a7ad7116d930fde86cda02f668e624d26ec3e 2025-08-26T19:37:22.6377776Z * [new tag] trunk/2b62ef74208792c7c4bf923f872e54b5f384efc8 -> trunk/2b62ef74208792c7c4bf923f872e54b5f384efc8 2025-08-26T19:37:22.6378602Z * [new tag] trunk/2beffb3311a41589021c121dac543994a7cbdff2 -> trunk/2beffb3311a41589021c121dac543994a7cbdff2 2025-08-26T19:37:22.6379424Z * [new tag] trunk/2c0650a00a0a0dd2bbf25ed22780fdd881bcda54 -> trunk/2c0650a00a0a0dd2bbf25ed22780fdd881bcda54 2025-08-26T19:37:22.6380270Z * [new tag] trunk/2cf69fe0e1bdb1413fe9e802c4b84d8958708421 -> trunk/2cf69fe0e1bdb1413fe9e802c4b84d8958708421 2025-08-26T19:37:22.6381112Z * [new tag] trunk/2cf7ac2fb7ab4067e17cc5ca71034b1c61a4fb10 -> trunk/2cf7ac2fb7ab4067e17cc5ca71034b1c61a4fb10 2025-08-26T19:37:22.6381935Z * [new tag] trunk/2f0cba934de7094a66c6ce68f5e937254f23142a -> trunk/2f0cba934de7094a66c6ce68f5e937254f23142a 2025-08-26T19:37:22.6382890Z * [new tag] trunk/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 -> trunk/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 2025-08-26T19:37:22.6383723Z * [new tag] trunk/2f50ae7d2022cb096c4156f5a207c291e36ddecf -> trunk/2f50ae7d2022cb096c4156f5a207c291e36ddecf 2025-08-26T19:37:22.6384637Z * [new tag] trunk/2fdd4f918cdc5fc8070e4c9c0d87b9045d316c06 -> trunk/2fdd4f918cdc5fc8070e4c9c0d87b9045d316c06 2025-08-26T19:37:22.6385581Z * [new tag] trunk/30384abcb1d181e774c0ac21b580aa34336a96c6 -> trunk/30384abcb1d181e774c0ac21b580aa34336a96c6 2025-08-26T19:37:22.6386417Z * [new tag] trunk/31a41daff49f2cde941d8b9e35cb2eaeeb606c0d -> trunk/31a41daff49f2cde941d8b9e35cb2eaeeb606c0d 2025-08-26T19:37:22.6387239Z * [new tag] trunk/332fa5b388521c05a19217649745c6edfdc2836d -> trunk/332fa5b388521c05a19217649745c6edfdc2836d 2025-08-26T19:37:22.6388029Z * [new tag] trunk/33346b58148c55592994a43385c321ae8c8808f2 -> trunk/33346b58148c55592994a43385c321ae8c8808f2 2025-08-26T19:37:22.6388810Z * [new tag] trunk/3373b074f5ea5277974fa6e945544fdfb16bb446 -> trunk/3373b074f5ea5277974fa6e945544fdfb16bb446 2025-08-26T19:37:22.6389610Z * [new tag] trunk/33c3794533844236a6e30ba377e0a6802b279fc8 -> trunk/33c3794533844236a6e30ba377e0a6802b279fc8 2025-08-26T19:37:22.6390421Z * [new tag] trunk/35e4d97e047bff8b38fee1dcf6ef6503f0fc9208 -> trunk/35e4d97e047bff8b38fee1dcf6ef6503f0fc9208 2025-08-26T19:37:22.6391227Z * [new tag] trunk/36ac916929ca67b533cc45932970297e9824324e -> trunk/36ac916929ca67b533cc45932970297e9824324e 2025-08-26T19:37:22.6392040Z * [new tag] trunk/371909cfd10e0da1bab1e12fb54a2403c37c5f76 -> trunk/371909cfd10e0da1bab1e12fb54a2403c37c5f76 2025-08-26T19:37:22.6392854Z * [new tag] trunk/373e25c2eb9f882356a9c7a2f18020935ff1d78b -> trunk/373e25c2eb9f882356a9c7a2f18020935ff1d78b 2025-08-26T19:37:22.6393667Z * [new tag] trunk/37a34022b59a6ff2757e5cec0fdc72278418f339 -> trunk/37a34022b59a6ff2757e5cec0fdc72278418f339 2025-08-26T19:37:22.6394491Z * [new tag] trunk/38a492d40d7ebb2856cb120df337c6cdac244528 -> trunk/38a492d40d7ebb2856cb120df337c6cdac244528 2025-08-26T19:37:22.6395308Z * [new tag] trunk/394728bab2de21e8002fc6a47aa4d3acb2d7a728 -> trunk/394728bab2de21e8002fc6a47aa4d3acb2d7a728 2025-08-26T19:37:22.6593630Z * [new tag] trunk/39862acb2e320783245d2a03acfd1b14cae28038 -> trunk/39862acb2e320783245d2a03acfd1b14cae28038 2025-08-26T19:37:22.6594655Z * [new tag] trunk/3a4140bf8e783db3f0094d2a2ce1d8534066432f -> trunk/3a4140bf8e783db3f0094d2a2ce1d8534066432f 2025-08-26T19:37:22.6595489Z * [new tag] trunk/3caddd4daa5b1a167663c07219e065e86247ad76 -> trunk/3caddd4daa5b1a167663c07219e065e86247ad76 2025-08-26T19:37:22.6596338Z * [new tag] trunk/3dacaf0e1eb3286e70bf8d572000ecebf2c1f4c9 -> trunk/3dacaf0e1eb3286e70bf8d572000ecebf2c1f4c9 2025-08-26T19:37:22.6597167Z * [new tag] trunk/3e210f90c2cbd5817aa23d430da10cad200a3ffa -> trunk/3e210f90c2cbd5817aa23d430da10cad200a3ffa 2025-08-26T19:37:22.6597995Z * [new tag] trunk/3e3e83418d0f6b1495f79380f3a3dbc8b2d23062 -> trunk/3e3e83418d0f6b1495f79380f3a3dbc8b2d23062 2025-08-26T19:37:22.6598806Z * [new tag] trunk/3e5b021f217a42ae55dc690083f67a28126808ed -> trunk/3e5b021f217a42ae55dc690083f67a28126808ed 2025-08-26T19:37:22.6599613Z * [new tag] trunk/3ea6cc8c2d443d6104159d50e8328c144f6caa39 -> trunk/3ea6cc8c2d443d6104159d50e8328c144f6caa39 2025-08-26T19:37:22.6600442Z * [new tag] trunk/3f1a97a99cad4cc682b20b43c1178ed9e1b81f24 -> trunk/3f1a97a99cad4cc682b20b43c1178ed9e1b81f24 2025-08-26T19:37:22.6601280Z * [new tag] trunk/3f5a8e2003f2234ca8be19fdc307ba7b995f9be3 -> trunk/3f5a8e2003f2234ca8be19fdc307ba7b995f9be3 2025-08-26T19:37:22.6602101Z * [new tag] trunk/40c0e700a488191cd8f541b30d8e3b9f2c0bc759 -> trunk/40c0e700a488191cd8f541b30d8e3b9f2c0bc759 2025-08-26T19:37:22.6602919Z * [new tag] trunk/419a2dbf5f69cee52382090200b532a81da92c69 -> trunk/419a2dbf5f69cee52382090200b532a81da92c69 2025-08-26T19:37:22.6603717Z * [new tag] trunk/431846a6323c6f1d02da49e311ac694324f386f4 -> trunk/431846a6323c6f1d02da49e311ac694324f386f4 2025-08-26T19:37:22.6604518Z * [new tag] trunk/44549c7146bd6c4166f97e856037babe1b7f4f49 -> trunk/44549c7146bd6c4166f97e856037babe1b7f4f49 2025-08-26T19:37:22.6605436Z * [new tag] trunk/447d34b5f80fb7350f79decd855cb599cab39083 -> trunk/447d34b5f80fb7350f79decd855cb599cab39083 2025-08-26T19:37:22.6606234Z * [new tag] trunk/46429be72323c1807a785234164bd91011f68d08 -> trunk/46429be72323c1807a785234164bd91011f68d08 2025-08-26T19:37:22.6607052Z * [new tag] trunk/4651aaac47ff855e08a74e2fdbfa605bc53afba8 -> trunk/4651aaac47ff855e08a74e2fdbfa605bc53afba8 2025-08-26T19:37:22.6607883Z * [new tag] trunk/47d267364cad407b5612bf4a5faa160d2f4a7121 -> trunk/47d267364cad407b5612bf4a5faa160d2f4a7121 2025-08-26T19:37:22.6608713Z * [new tag] trunk/49ff884b1edc3b872eeb2387ec60ef230cae7f24 -> trunk/49ff884b1edc3b872eeb2387ec60ef230cae7f24 2025-08-26T19:37:22.6609545Z * [new tag] trunk/4a1aca11c20cfa29a1513b9f289d75bfe32d05d4 -> trunk/4a1aca11c20cfa29a1513b9f289d75bfe32d05d4 2025-08-26T19:37:22.6610377Z * [new tag] trunk/4acdbb8311f760513556e2e4fdd7bfd88c225e52 -> trunk/4acdbb8311f760513556e2e4fdd7bfd88c225e52 2025-08-26T19:37:22.6611198Z * [new tag] trunk/4c36c8a99463c898190a462300ba7f05b5b3384e -> trunk/4c36c8a99463c898190a462300ba7f05b5b3384e 2025-08-26T19:37:22.6611994Z * [new tag] trunk/4e19c1906a830714c1d9d71361357ce616a034d6 -> trunk/4e19c1906a830714c1d9d71361357ce616a034d6 2025-08-26T19:37:22.6612794Z * [new tag] trunk/4ed3184dee1bf4f775839bfd1448a7a34fe5a898 -> trunk/4ed3184dee1bf4f775839bfd1448a7a34fe5a898 2025-08-26T19:37:22.6613620Z * [new tag] trunk/50cfe76231768ee2c784f68a1eba03369f386019 -> trunk/50cfe76231768ee2c784f68a1eba03369f386019 2025-08-26T19:37:22.6614427Z * [new tag] trunk/510825e5fed8b56eb5e9352c12f0df1feeadb810 -> trunk/510825e5fed8b56eb5e9352c12f0df1feeadb810 2025-08-26T19:37:22.6615246Z * [new tag] trunk/512fc768e94c937df350911aaa4ebce757d1f9df -> trunk/512fc768e94c937df350911aaa4ebce757d1f9df 2025-08-26T19:37:22.6616138Z * [new tag] trunk/517d38d3406abbba35d0694bff259a698cad3ec9 -> trunk/517d38d3406abbba35d0694bff259a698cad3ec9 2025-08-26T19:37:22.6616963Z * [new tag] trunk/5255e65c01bf48bbcd916ecf16ed81cf28d3c6e2 -> trunk/5255e65c01bf48bbcd916ecf16ed81cf28d3c6e2 2025-08-26T19:37:22.6617794Z * [new tag] trunk/543896fcf3312f2053018edf9ee74c0fbb1d28ed -> trunk/543896fcf3312f2053018edf9ee74c0fbb1d28ed 2025-08-26T19:37:22.6618613Z * [new tag] trunk/54c2b66592d168e4a7525f7a58f8ca020517a9cb -> trunk/54c2b66592d168e4a7525f7a58f8ca020517a9cb 2025-08-26T19:37:22.6619420Z * [new tag] trunk/54cc63b467f24242cf0d6538d3e1df39e553daf1 -> trunk/54cc63b467f24242cf0d6538d3e1df39e553daf1 2025-08-26T19:37:22.6620249Z * [new tag] trunk/56ebed627a23eea36190e1ced5024a18ffcedbd7 -> trunk/56ebed627a23eea36190e1ced5024a18ffcedbd7 2025-08-26T19:37:22.6808037Z * [new tag] trunk/576a0e64ed2470abd2c430205d1984a11951ce05 -> trunk/576a0e64ed2470abd2c430205d1984a11951ce05 2025-08-26T19:37:22.6808898Z * [new tag] trunk/5805c4210b477f0a7315d6038078dc4a8be1c8fa -> trunk/5805c4210b477f0a7315d6038078dc4a8be1c8fa 2025-08-26T19:37:22.6809806Z * [new tag] trunk/58f9a3dd6391397e439c5f5075837e8f983735aa -> trunk/58f9a3dd6391397e439c5f5075837e8f983735aa 2025-08-26T19:37:22.6810611Z * [new tag] trunk/595987d28d4c8aee68de83734af919c7710ad58b -> trunk/595987d28d4c8aee68de83734af919c7710ad58b 2025-08-26T19:37:22.6811431Z * [new tag] trunk/599f639ddb8bb45abb2dc305542f38288427183d -> trunk/599f639ddb8bb45abb2dc305542f38288427183d 2025-08-26T19:37:22.6812254Z * [new tag] trunk/5afa4187dfe1e99278f8e372ec09102d5b937572 -> trunk/5afa4187dfe1e99278f8e372ec09102d5b937572 2025-08-26T19:37:22.6813061Z * [new tag] trunk/5d9653d90ee003173dd03f93e09fed236500ef06 -> trunk/5d9653d90ee003173dd03f93e09fed236500ef06 2025-08-26T19:37:22.6814041Z * [new tag] trunk/5dad5b4f57ade4001c0f421dbdad2e418304870e -> trunk/5dad5b4f57ade4001c0f421dbdad2e418304870e 2025-08-26T19:37:22.6814907Z * [new tag] trunk/5ee464db5c4293ac09521f9069fa7d2106680a7f -> trunk/5ee464db5c4293ac09521f9069fa7d2106680a7f 2025-08-26T19:37:22.6815819Z * [new tag] trunk/6096d277c543f5dd40351431ef9a8d556134c74d -> trunk/6096d277c543f5dd40351431ef9a8d556134c74d 2025-08-26T19:37:22.6816640Z * [new tag] trunk/62db8ec39116544ae247f876b3e06753178db49b -> trunk/62db8ec39116544ae247f876b3e06753178db49b 2025-08-26T19:37:22.6817446Z * [new tag] trunk/639b8cc51ddebf10361f3840a6b0a244eb6092a1 -> trunk/639b8cc51ddebf10361f3840a6b0a244eb6092a1 2025-08-26T19:37:22.6818266Z * [new tag] trunk/6443ea337df843681bc558d99efa84a3e5559b7f -> trunk/6443ea337df843681bc558d99efa84a3e5559b7f 2025-08-26T19:37:22.6819083Z * [new tag] trunk/6598f00c18dfcc4fc50427305b6b5724e617246f -> trunk/6598f00c18dfcc4fc50427305b6b5724e617246f 2025-08-26T19:37:22.6819916Z * [new tag] trunk/65d21dae18a34e8bd1b2f0e5aec7144b9dd33611 -> trunk/65d21dae18a34e8bd1b2f0e5aec7144b9dd33611 2025-08-26T19:37:22.6820741Z * [new tag] trunk/660b5656a436dcccb0275ea5421d3eb4f1157b43 -> trunk/660b5656a436dcccb0275ea5421d3eb4f1157b43 2025-08-26T19:37:22.6821683Z * [new tag] trunk/66166cf1e7696bf25f6f7bb815a93df367db48dc -> trunk/66166cf1e7696bf25f6f7bb815a93df367db48dc 2025-08-26T19:37:22.6822599Z * [new tag] trunk/667245dc60242a35ae0a6b0072628eb8e15a6d03 -> trunk/667245dc60242a35ae0a6b0072628eb8e15a6d03 2025-08-26T19:37:22.6823501Z * [new tag] trunk/67b98da1b262317f9c0375d64a4b467c82712548 -> trunk/67b98da1b262317f9c0375d64a4b467c82712548 2025-08-26T19:37:22.6824498Z * [new tag] trunk/67d31f6b281d3b15b205756fc7ebc450cdde1dab -> trunk/67d31f6b281d3b15b205756fc7ebc450cdde1dab 2025-08-26T19:37:22.6825422Z * [new tag] trunk/67fc16c7447f4fc04e7d28bfe201a4a0c78f3ea4 -> trunk/67fc16c7447f4fc04e7d28bfe201a4a0c78f3ea4 2025-08-26T19:37:22.6826482Z * [new tag] trunk/6aef9f3a6906c011a57541c1de7a246222bc9ac9 -> trunk/6aef9f3a6906c011a57541c1de7a246222bc9ac9 2025-08-26T19:37:22.6827406Z * [new tag] trunk/6ea4be1e2eca952ea66090182bd2eede89799a45 -> trunk/6ea4be1e2eca952ea66090182bd2eede89799a45 2025-08-26T19:37:22.6828379Z * [new tag] trunk/7006fd0c8874cb0228d3f2bfd83a989bde4b7021 -> trunk/7006fd0c8874cb0228d3f2bfd83a989bde4b7021 2025-08-26T19:37:22.6829284Z * [new tag] trunk/710514a2a51facaba445d2c188541d778f9fdb59 -> trunk/710514a2a51facaba445d2c188541d778f9fdb59 2025-08-26T19:37:22.6830258Z * [new tag] trunk/7131bfab89c46ffe31b61ea4937a8727e9cf33c1 -> trunk/7131bfab89c46ffe31b61ea4937a8727e9cf33c1 2025-08-26T19:37:22.6831186Z * [new tag] trunk/726dce3c944cbda16e54d3b15cdb4b6ced05af72 -> trunk/726dce3c944cbda16e54d3b15cdb4b6ced05af72 2025-08-26T19:37:22.6832142Z * [new tag] trunk/72e4786d1635681b8d053d0168c7d16b980e5124 -> trunk/72e4786d1635681b8d053d0168c7d16b980e5124 2025-08-26T19:37:22.6833043Z * [new tag] trunk/7376111d59f3170c2814d565c09d09435189692a -> trunk/7376111d59f3170c2814d565c09d09435189692a 2025-08-26T19:37:22.6833925Z * [new tag] trunk/74124d1b46774f2a73aa1aadc2b0874cb523b1c1 -> trunk/74124d1b46774f2a73aa1aadc2b0874cb523b1c1 2025-08-26T19:37:22.6834855Z * [new tag] trunk/74280d091321343b47a2975e17584b973d7c22c4 -> trunk/74280d091321343b47a2975e17584b973d7c22c4 2025-08-26T19:37:22.6835740Z * [new tag] trunk/74c4c758afa8c28162f00a456c185552e1159fd3 -> trunk/74c4c758afa8c28162f00a456c185552e1159fd3 2025-08-26T19:37:22.7031418Z * [new tag] trunk/763053dc536341997641e920d8887b3010901b3b -> trunk/763053dc536341997641e920d8887b3010901b3b 2025-08-26T19:37:22.7032410Z * [new tag] trunk/774b4befa18741b3115802cae71000168a40c384 -> trunk/774b4befa18741b3115802cae71000168a40c384 2025-08-26T19:37:22.7033233Z * [new tag] trunk/78a8e6a671c5631bc0e89b0e674790a424540547 -> trunk/78a8e6a671c5631bc0e89b0e674790a424540547 2025-08-26T19:37:22.7034049Z * [new tag] trunk/7e4bfa74eafab994b01f8b5501d4d061cbf64808 -> trunk/7e4bfa74eafab994b01f8b5501d4d061cbf64808 2025-08-26T19:37:22.7034966Z * [new tag] trunk/7e6ce41555d595e3fa0d91059491f21cee3eb5ea -> trunk/7e6ce41555d595e3fa0d91059491f21cee3eb5ea 2025-08-26T19:37:22.7035780Z * [new tag] trunk/7f201baf414301b3312576893b7f6f2698acd9ba -> trunk/7f201baf414301b3312576893b7f6f2698acd9ba 2025-08-26T19:37:22.7036606Z * [new tag] trunk/7fcdd8d6afeda6a4c8630816e12bf7cca44b8f8a -> trunk/7fcdd8d6afeda6a4c8630816e12bf7cca44b8f8a 2025-08-26T19:37:22.7037419Z * [new tag] trunk/801851086d09506d081800108c9e214edb3f5b7d -> trunk/801851086d09506d081800108c9e214edb3f5b7d 2025-08-26T19:37:22.7038215Z * [new tag] trunk/8047cde0f3a27f3afa218792b8464d5e0c9d942f -> trunk/8047cde0f3a27f3afa218792b8464d5e0c9d942f 2025-08-26T19:37:22.7039047Z * [new tag] trunk/80df27a612be3433516d7e6dfc8d8be058425d3e -> trunk/80df27a612be3433516d7e6dfc8d8be058425d3e 2025-08-26T19:37:22.7039884Z * [new tag] trunk/818ba434c7de4cd604184b2857d544e0ad95735f -> trunk/818ba434c7de4cd604184b2857d544e0ad95735f 2025-08-26T19:37:22.7040762Z * [new tag] trunk/83283ce7f5a7847b4e561e22be9b0f4530b05527 -> trunk/83283ce7f5a7847b4e561e22be9b0f4530b05527 2025-08-26T19:37:22.7041594Z * [new tag] trunk/85adf80cf15538a7e010fa235036fe8e06f8bede -> trunk/85adf80cf15538a7e010fa235036fe8e06f8bede 2025-08-26T19:37:22.7042440Z * [new tag] trunk/8aad3a60ce16a4acab17a8e46e5df339db2ff740 -> trunk/8aad3a60ce16a4acab17a8e46e5df339db2ff740 2025-08-26T19:37:22.7043267Z * [new tag] trunk/8c442e4fd3310e15f57770944f883ac1d73e77e2 -> trunk/8c442e4fd3310e15f57770944f883ac1d73e77e2 2025-08-26T19:37:22.7044166Z * [new tag] trunk/8c506e6310b9b5295151fb725be479d0f80ce5e8 -> trunk/8c506e6310b9b5295151fb725be479d0f80ce5e8 2025-08-26T19:37:22.7044983Z * [new tag] trunk/8cfc119491f533c4edded4263a78eb0af782a2d5 -> trunk/8cfc119491f533c4edded4263a78eb0af782a2d5 2025-08-26T19:37:22.7045836Z * [new tag] trunk/8dbe7f99bd707ee28ae12ecb9cab54e1785bf13e -> trunk/8dbe7f99bd707ee28ae12ecb9cab54e1785bf13e 2025-08-26T19:37:22.7046743Z * [new tag] trunk/8e1770905565cd67d6c3a91c7afa462f4ef6e6aa -> trunk/8e1770905565cd67d6c3a91c7afa462f4ef6e6aa 2025-08-26T19:37:22.7047555Z * [new tag] trunk/8f31aa97a3e1e17bed29b6cedf9884f0c6b145e9 -> trunk/8f31aa97a3e1e17bed29b6cedf9884f0c6b145e9 2025-08-26T19:37:22.7048368Z * [new tag] trunk/8f766d68397736053883aa281cae0eb46bb233bb -> trunk/8f766d68397736053883aa281cae0eb46bb233bb 2025-08-26T19:37:22.7049192Z * [new tag] trunk/908b0ccb1f70ed2cfa830484e05ee32af13b1836 -> trunk/908b0ccb1f70ed2cfa830484e05ee32af13b1836 2025-08-26T19:37:22.7050014Z * [new tag] trunk/90ea9ccefe3e2d9a9e4840016d1af10c1814d48b -> trunk/90ea9ccefe3e2d9a9e4840016d1af10c1814d48b 2025-08-26T19:37:22.7050845Z * [new tag] trunk/9225c6199412f8a2ee99b7c29f533fb98b9ff62e -> trunk/9225c6199412f8a2ee99b7c29f533fb98b9ff62e 2025-08-26T19:37:22.7051688Z * [new tag] trunk/923bc46122d173a7964c646311a3bea3cd8dd561 -> trunk/923bc46122d173a7964c646311a3bea3cd8dd561 2025-08-26T19:37:22.7052519Z * [new tag] trunk/92ab18482459a63e97f1374e27e8411964da9762 -> trunk/92ab18482459a63e97f1374e27e8411964da9762 2025-08-26T19:37:22.7053316Z * [new tag] trunk/94b9569c4a86e12b944ca66e3125357a14d0eb9e -> trunk/94b9569c4a86e12b944ca66e3125357a14d0eb9e 2025-08-26T19:37:22.7054205Z * [new tag] trunk/957b170d8efe2a51147e0cdb7515acc345ba81da -> trunk/957b170d8efe2a51147e0cdb7515acc345ba81da 2025-08-26T19:37:22.7055035Z * [new tag] trunk/958f9ca88e9a1580de7c94a5a2ca8a750b1335ae -> trunk/958f9ca88e9a1580de7c94a5a2ca8a750b1335ae 2025-08-26T19:37:22.7055837Z * [new tag] trunk/96682103026b5ea27f19e6db9303e17572095b0e -> trunk/96682103026b5ea27f19e6db9303e17572095b0e 2025-08-26T19:37:22.7056634Z * [new tag] trunk/97200c971110d54030feaad999698c7341f8acc7 -> trunk/97200c971110d54030feaad999698c7341f8acc7 2025-08-26T19:37:22.7057477Z * [new tag] trunk/981ac533c6e69a77538aaa7a9747c3d840dfa8be -> trunk/981ac533c6e69a77538aaa7a9747c3d840dfa8be 2025-08-26T19:37:22.7058312Z * [new tag] trunk/995397d47a0e27394ee1010f158e181eb304100a -> trunk/995397d47a0e27394ee1010f158e181eb304100a 2025-08-26T19:37:22.7251034Z * [new tag] trunk/9a41570199155eee92ebd28452a556075e34e1b4 -> trunk/9a41570199155eee92ebd28452a556075e34e1b4 2025-08-26T19:37:22.7251953Z * [new tag] trunk/9b3ebd25acfd2ff4e9b7428079ba364d6f8a14da -> trunk/9b3ebd25acfd2ff4e9b7428079ba364d6f8a14da 2025-08-26T19:37:22.7252872Z * [new tag] trunk/9b4adc4db7494dbc4dbbac5dd85ccbf5babaef44 -> trunk/9b4adc4db7494dbc4dbbac5dd85ccbf5babaef44 2025-08-26T19:37:22.7253732Z * [new tag] trunk/9d18bf01b1661d227f6af41ac07a1e9ef20a9e1a -> trunk/9d18bf01b1661d227f6af41ac07a1e9ef20a9e1a 2025-08-26T19:37:22.7254559Z * [new tag] trunk/9d7cecdd6c44c5421d341bcc359be4097ea9a2f5 -> trunk/9d7cecdd6c44c5421d341bcc359be4097ea9a2f5 2025-08-26T19:37:22.7255404Z * [new tag] trunk/9d882fd9ffc6ad2a292fee548740aabfea745002 -> trunk/9d882fd9ffc6ad2a292fee548740aabfea745002 2025-08-26T19:37:22.7256239Z * [new tag] trunk/9d9cc9897ac44a1a8df38211b03d8342a8af48c3 -> trunk/9d9cc9897ac44a1a8df38211b03d8342a8af48c3 2025-08-26T19:37:22.7257055Z * [new tag] trunk/9e1c9541344b2aa1c946edb779d275072f3b8f4a -> trunk/9e1c9541344b2aa1c946edb779d275072f3b8f4a 2025-08-26T19:37:22.7258076Z * [new tag] trunk/9e491f753ee521a70e6a7e7dbb36f96c9350f5ea -> trunk/9e491f753ee521a70e6a7e7dbb36f96c9350f5ea 2025-08-26T19:37:22.7258916Z * [new tag] trunk/a03cc53e6f6e2fe67316cb8c74c25f5b953f445b -> trunk/a03cc53e6f6e2fe67316cb8c74c25f5b953f445b 2025-08-26T19:37:22.7259729Z * [new tag] trunk/a154c2093c0f2646346f032e1f30012779b3c51d -> trunk/a154c2093c0f2646346f032e1f30012779b3c51d 2025-08-26T19:37:22.7260558Z * [new tag] trunk/a391fa1c42dd32e32a2e5b1cb196bac56daaca88 -> trunk/a391fa1c42dd32e32a2e5b1cb196bac56daaca88 2025-08-26T19:37:22.7261405Z * [new tag] trunk/a3a82e3da85a53afc4bbf3d75bd3d3dcc2e06645 -> trunk/a3a82e3da85a53afc4bbf3d75bd3d3dcc2e06645 2025-08-26T19:37:22.7262268Z * [new tag] trunk/a3fe1ced409d186628ff2975f05ba529a86fae84 -> trunk/a3fe1ced409d186628ff2975f05ba529a86fae84 2025-08-26T19:37:22.7263102Z * [new tag] trunk/a43480d19cdd68e544163b1a07c328a9c54723b8 -> trunk/a43480d19cdd68e544163b1a07c328a9c54723b8 2025-08-26T19:37:22.7264004Z * [new tag] trunk/a445b41e4f11daa82a53a21ec413c15d5079ae77 -> trunk/a445b41e4f11daa82a53a21ec413c15d5079ae77 2025-08-26T19:37:22.7264888Z * [new tag] trunk/a44a0d3671b4ccf2fe915896a8a5204fe79b1e7b -> trunk/a44a0d3671b4ccf2fe915896a8a5204fe79b1e7b 2025-08-26T19:37:22.7265724Z * [new tag] trunk/a6401cb5aa51622045c3f9a03b2cebef236e4182 -> trunk/a6401cb5aa51622045c3f9a03b2cebef236e4182 2025-08-26T19:37:22.7266528Z * [new tag] trunk/a68f63e33161b4665e0f4c399bf8072135a35a57 -> trunk/a68f63e33161b4665e0f4c399bf8072135a35a57 2025-08-26T19:37:22.7267338Z * [new tag] trunk/a72803f1e3c69c780b7d7bcdd9b35360fd98148b -> trunk/a72803f1e3c69c780b7d7bcdd9b35360fd98148b 2025-08-26T19:37:22.7268160Z * [new tag] trunk/a7b5955ea8851d73e35f50a0de5bb0626bae24cb -> trunk/a7b5955ea8851d73e35f50a0de5bb0626bae24cb 2025-08-26T19:37:22.7269136Z * [new tag] trunk/a818fa77e3a72271f144514ef349c5a666313205 -> trunk/a818fa77e3a72271f144514ef349c5a666313205 2025-08-26T19:37:22.7269998Z * [new tag] trunk/a825557ed53507e85ac613862311a81eb88710a4 -> trunk/a825557ed53507e85ac613862311a81eb88710a4 2025-08-26T19:37:22.7270798Z * [new tag] trunk/a85711d565f37b0095af9f7dafa77f392c9aa31e -> trunk/a85711d565f37b0095af9f7dafa77f392c9aa31e 2025-08-26T19:37:22.7271634Z * [new tag] trunk/a941d7ffe54b5f256c1fbd3959ddbf608b7eea88 -> trunk/a941d7ffe54b5f256c1fbd3959ddbf608b7eea88 2025-08-26T19:37:22.7272478Z * [new tag] trunk/a9fabeb012a4b804836a2b8d4b3742b92c9a6b58 -> trunk/a9fabeb012a4b804836a2b8d4b3742b92c9a6b58 2025-08-26T19:37:22.7273303Z * [new tag] trunk/ab7787fb82dd777b2f777ef58bc20dbb7bd8289b -> trunk/ab7787fb82dd777b2f777ef58bc20dbb7bd8289b 2025-08-26T19:37:22.7274150Z * [new tag] trunk/ab8d60f4c86ca19ed00d6e79ae8e6939266f28e6 -> trunk/ab8d60f4c86ca19ed00d6e79ae8e6939266f28e6 2025-08-26T19:37:22.7275033Z * [new tag] trunk/ac8d9418aee4543fa193c86ae0bc3e63707bcd3b -> trunk/ac8d9418aee4543fa193c86ae0bc3e63707bcd3b 2025-08-26T19:37:22.7275917Z * [new tag] trunk/acb00d3ccf5f2d566225f07ed66bd579d5d3e44e -> trunk/acb00d3ccf5f2d566225f07ed66bd579d5d3e44e 2025-08-26T19:37:22.7276760Z * [new tag] trunk/adecb0c9e89e0dfe18d944d292c98c97b686fc83 -> trunk/adecb0c9e89e0dfe18d944d292c98c97b686fc83 2025-08-26T19:37:22.7277591Z * [new tag] trunk/ae8d319fd4a0b0fa7b1372aa07690a36ce823abc -> trunk/ae8d319fd4a0b0fa7b1372aa07690a36ce823abc 2025-08-26T19:37:22.7459772Z * [new tag] trunk/af3265d20f763e5366bfa37e3d4a6307036d0c18 -> trunk/af3265d20f763e5366bfa37e3d4a6307036d0c18 2025-08-26T19:37:22.7460599Z * [new tag] trunk/b0420d24386263f2727fd5714b63cfa6bc89f3e6 -> trunk/b0420d24386263f2727fd5714b63cfa6bc89f3e6 2025-08-26T19:37:22.7461531Z * [new tag] trunk/b1380f434da2fa2de0e5ff6fd70f73082dc08687 -> trunk/b1380f434da2fa2de0e5ff6fd70f73082dc08687 2025-08-26T19:37:22.7462367Z * [new tag] trunk/b2632e79828300302fd11e093d765196c3c0db58 -> trunk/b2632e79828300302fd11e093d765196c3c0db58 2025-08-26T19:37:22.7463162Z * [new tag] trunk/b2e06e0194c3fa8f7578a1b48751cc027394fb67 -> trunk/b2e06e0194c3fa8f7578a1b48751cc027394fb67 2025-08-26T19:37:22.7464005Z * [new tag] trunk/b3e215b864e6ca43b2c4e50ce666673f80feee27 -> trunk/b3e215b864e6ca43b2c4e50ce666673f80feee27 2025-08-26T19:37:22.7464867Z * [new tag] trunk/b708966201811b31ee765ec57715ac21d06ef652 -> trunk/b708966201811b31ee765ec57715ac21d06ef652 2025-08-26T19:37:22.7465666Z * [new tag] trunk/b9e9e92817fd7d1a778f074105603efb07e05004 -> trunk/b9e9e92817fd7d1a778f074105603efb07e05004 2025-08-26T19:37:22.7466518Z * [new tag] trunk/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 -> trunk/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 2025-08-26T19:37:22.7467372Z * [new tag] trunk/bcfe1b2d714cbb2716495e09ae010e7c34daf045 -> trunk/bcfe1b2d714cbb2716495e09ae010e7c34daf045 2025-08-26T19:37:22.7468202Z * [new tag] trunk/bd5857a1d6d5455d4f0057c182dff5e8ad2a4c8a -> trunk/bd5857a1d6d5455d4f0057c182dff5e8ad2a4c8a 2025-08-26T19:37:22.7469027Z * [new tag] trunk/be2e6b3158552405acc13ef7829a0217826fb271 -> trunk/be2e6b3158552405acc13ef7829a0217826fb271 2025-08-26T19:37:22.7469839Z * [new tag] trunk/be87f22dfba4488963fcc854699829e2782ee0f2 -> trunk/be87f22dfba4488963fcc854699829e2782ee0f2 2025-08-26T19:37:22.7470661Z * [new tag] trunk/becd6cd744bdf950578519437652a0d1f4b48781 -> trunk/becd6cd744bdf950578519437652a0d1f4b48781 2025-08-26T19:37:22.7471572Z * [new tag] trunk/bf8431ba062efa9ff0cdd5032a3ddf2e007a3216 -> trunk/bf8431ba062efa9ff0cdd5032a3ddf2e007a3216 2025-08-26T19:37:22.7473071Z * [new tag] trunk/c02e26bf31eb3da301158a061aa68527dbfb4d32 -> trunk/c02e26bf31eb3da301158a061aa68527dbfb4d32 2025-08-26T19:37:22.7473918Z * [new tag] trunk/c081481bbebdb568d07ee19cfe2cd3125de6cba7 -> trunk/c081481bbebdb568d07ee19cfe2cd3125de6cba7 2025-08-26T19:37:22.7474770Z * [new tag] trunk/c2390087c34c964ef648addf43efb8c6a34e30c2 -> trunk/c2390087c34c964ef648addf43efb8c6a34e30c2 2025-08-26T19:37:22.7475577Z * [new tag] trunk/c4670e40c9b741d50a79b714e3830149833be908 -> trunk/c4670e40c9b741d50a79b714e3830149833be908 2025-08-26T19:37:22.7476395Z * [new tag] trunk/c5cb255625deb4cdbc5780e6911b73498e17ed5a -> trunk/c5cb255625deb4cdbc5780e6911b73498e17ed5a 2025-08-26T19:37:22.7477307Z * [new tag] trunk/c60dea5261d9648d1da51528a07731966bb6823e -> trunk/c60dea5261d9648d1da51528a07731966bb6823e 2025-08-26T19:37:22.7478147Z * [new tag] trunk/c74e5f60611b7eac4321f53a9e4a15b077fb1bcc -> trunk/c74e5f60611b7eac4321f53a9e4a15b077fb1bcc 2025-08-26T19:37:22.7478972Z * [new tag] trunk/c7a77470c54b28e555319e34048af14d1d66198a -> trunk/c7a77470c54b28e555319e34048af14d1d66198a 2025-08-26T19:37:22.7479776Z * [new tag] trunk/c7fb031706330684fc3a2d8d169bebea874d4e95 -> trunk/c7fb031706330684fc3a2d8d169bebea874d4e95 2025-08-26T19:37:22.7480610Z * [new tag] trunk/c8bb0e4720ddddf3cd1b0b48b336978f763c71ca -> trunk/c8bb0e4720ddddf3cd1b0b48b336978f763c71ca 2025-08-26T19:37:22.7481447Z * [new tag] trunk/ca9fe0107e165a4a4147325ff6d34235ebde447f -> trunk/ca9fe0107e165a4a4147325ff6d34235ebde447f 2025-08-26T19:37:22.7482262Z * [new tag] trunk/cb579532150c9e87e7c143adcb020fb7de7cc6b1 -> trunk/cb579532150c9e87e7c143adcb020fb7de7cc6b1 2025-08-26T19:37:22.7483093Z * [new tag] trunk/cc2b65a91ae7773d4ecf9a600dda48fc3e69aa8f -> trunk/cc2b65a91ae7773d4ecf9a600dda48fc3e69aa8f 2025-08-26T19:37:22.7483933Z * [new tag] trunk/cc791d5857f4aa06b8d4e567b1fb2852e3ae963d -> trunk/cc791d5857f4aa06b8d4e567b1fb2852e3ae963d 2025-08-26T19:37:22.7484860Z * [new tag] trunk/cd31be28ec5cd0c4d9cdb6742efe151eee1406ec -> trunk/cd31be28ec5cd0c4d9cdb6742efe151eee1406ec 2025-08-26T19:37:22.7485716Z * [new tag] trunk/cd87f3029582cedb3b88747a3bd7d200b05c1138 -> trunk/cd87f3029582cedb3b88747a3bd7d200b05c1138 2025-08-26T19:37:22.7486521Z * [new tag] trunk/ce048de608180fa88335e5821070472539968b54 -> trunk/ce048de608180fa88335e5821070472539968b54 2025-08-26T19:37:22.7487348Z * [new tag] trunk/ce467df5d1d763d1648aee51c93ce3e9a4699936 -> trunk/ce467df5d1d763d1648aee51c93ce3e9a4699936 2025-08-26T19:37:22.7686670Z * [new tag] trunk/cee72119b2dec7776bc2550dd39a9b1349772751 -> trunk/cee72119b2dec7776bc2550dd39a9b1349772751 2025-08-26T19:37:22.7687530Z * [new tag] trunk/cf94cadbeee31a4d1d46a57f11bce7c9fd1cebc0 -> trunk/cf94cadbeee31a4d1d46a57f11bce7c9fd1cebc0 2025-08-26T19:37:22.7688406Z * [new tag] trunk/cfdaaaaa26d7f34427ba941569eca46f02f79f3e -> trunk/cfdaaaaa26d7f34427ba941569eca46f02f79f3e 2025-08-26T19:37:22.7689255Z * [new tag] trunk/d1faf2ef0476eb60b42c057baee9af0f48ae849a -> trunk/d1faf2ef0476eb60b42c057baee9af0f48ae849a 2025-08-26T19:37:22.7690088Z * [new tag] trunk/d228a776e90368bb693837ae23285ad8fc33def5 -> trunk/d228a776e90368bb693837ae23285ad8fc33def5 2025-08-26T19:37:22.7690906Z * [new tag] trunk/d2b8c0d431e00ad57354c5247e46c1bea0b8cd31 -> trunk/d2b8c0d431e00ad57354c5247e46c1bea0b8cd31 2025-08-26T19:37:22.7691720Z * [new tag] trunk/d2bd55d8de784df439b38378f161271dc43b744c -> trunk/d2bd55d8de784df439b38378f161271dc43b744c 2025-08-26T19:37:22.7692529Z * [new tag] trunk/d4703fb91c3510460d71f648da113177edf593c8 -> trunk/d4703fb91c3510460d71f648da113177edf593c8 2025-08-26T19:37:22.7693468Z * [new tag] trunk/d875d3ca1e5099636c766c9df70ac5888c25215a -> trunk/d875d3ca1e5099636c766c9df70ac5888c25215a 2025-08-26T19:37:22.7694301Z * [new tag] trunk/d8fcb2a4acb506f9c72a1f44fc8b857158bda892 -> trunk/d8fcb2a4acb506f9c72a1f44fc8b857158bda892 2025-08-26T19:37:22.7695219Z * [new tag] trunk/daeb3a6094c62d1881ea68091fcadb02d1dc687e -> trunk/daeb3a6094c62d1881ea68091fcadb02d1dc687e 2025-08-26T19:37:22.7696147Z * [new tag] trunk/db38c44ad639e7ada3e9df2ba026a2cb5e40feb0 -> trunk/db38c44ad639e7ada3e9df2ba026a2cb5e40feb0 2025-08-26T19:37:22.7697006Z * [new tag] trunk/db44de4c0d3e9f1fe5334ff4cc261fb8fe4390c8 -> trunk/db44de4c0d3e9f1fe5334ff4cc261fb8fe4390c8 2025-08-26T19:37:22.7697851Z * [new tag] trunk/dbef6066311a1ce6e60e1f2b6084249d1ad45769 -> trunk/dbef6066311a1ce6e60e1f2b6084249d1ad45769 2025-08-26T19:37:22.7698677Z * [new tag] trunk/df571ae7ad7dacf77ce42c00189cf369d7993387 -> trunk/df571ae7ad7dacf77ce42c00189cf369d7993387 2025-08-26T19:37:22.7699523Z * [new tag] trunk/df6073641079c781e66a905e4f15ee49ac257eb2 -> trunk/df6073641079c781e66a905e4f15ee49ac257eb2 2025-08-26T19:37:22.7700327Z * [new tag] trunk/e1a64b75ff3dc834774a9174c2e7b1c46dea35ec -> trunk/e1a64b75ff3dc834774a9174c2e7b1c46dea35ec 2025-08-26T19:37:22.7701186Z * [new tag] trunk/e20f6d798606f3245686e950c43635bbe526232d -> trunk/e20f6d798606f3245686e950c43635bbe526232d 2025-08-26T19:37:22.7702041Z * [new tag] trunk/e25ee0290ef16503f178e04890c15717f6e9ea44 -> trunk/e25ee0290ef16503f178e04890c15717f6e9ea44 2025-08-26T19:37:22.7702855Z * [new tag] trunk/e34b6a01039df5d8940acdccd8d8989f3cd827aa -> trunk/e34b6a01039df5d8940acdccd8d8989f3cd827aa 2025-08-26T19:37:22.7703696Z * [new tag] trunk/e3d68dfae2dee15e74d3b95beaed7149b6afb94a -> trunk/e3d68dfae2dee15e74d3b95beaed7149b6afb94a 2025-08-26T19:37:22.7704620Z * [new tag] trunk/e3ebf364e6d2fb8008da113a596d3cc426ba9c79 -> trunk/e3ebf364e6d2fb8008da113a596d3cc426ba9c79 2025-08-26T19:37:22.7705965Z * [new tag] trunk/e4839470470168648dee5997f57347bb8541ea2b -> trunk/e4839470470168648dee5997f57347bb8541ea2b 2025-08-26T19:37:22.7706777Z * [new tag] trunk/e63155751825ba026ced3a1fc89563231bc85ccc -> trunk/e63155751825ba026ced3a1fc89563231bc85ccc 2025-08-26T19:37:22.7707587Z * [new tag] trunk/e6aa7287f8c8cac76d792097f20ba1dae6dc8717 -> trunk/e6aa7287f8c8cac76d792097f20ba1dae6dc8717 2025-08-26T19:37:22.7708434Z * [new tag] trunk/e6e45e6ae8452f0bc5e3e258027c42eb9a1394fb -> trunk/e6e45e6ae8452f0bc5e3e258027c42eb9a1394fb 2025-08-26T19:37:22.7709255Z * [new tag] trunk/e795450a35bca909902e12de99245e1c0e7e2872 -> trunk/e795450a35bca909902e12de99245e1c0e7e2872 2025-08-26T19:37:22.7710064Z * [new tag] trunk/e7e270a33a3f368c3ef0c3339950a47fdbfadd71 -> trunk/e7e270a33a3f368c3ef0c3339950a47fdbfadd71 2025-08-26T19:37:22.7710885Z * [new tag] trunk/e836323a23f5750e800abe04ef8ca386b3066b58 -> trunk/e836323a23f5750e800abe04ef8ca386b3066b58 2025-08-26T19:37:22.7711704Z * [new tag] trunk/e83825f91cb2901567fedbf31ba7cc434a897271 -> trunk/e83825f91cb2901567fedbf31ba7cc434a897271 2025-08-26T19:37:22.7712529Z * [new tag] trunk/e9d42b3880dcdbd823bbdc9370c8b0b3af0ba2e3 -> trunk/e9d42b3880dcdbd823bbdc9370c8b0b3af0ba2e3 2025-08-26T19:37:22.7713361Z * [new tag] trunk/eb5549a43164cdf8689cd7d177c03b2508c699f4 -> trunk/eb5549a43164cdf8689cd7d177c03b2508c699f4 2025-08-26T19:37:22.7939876Z * [new tag] trunk/eba1ad09e47b66478f973e03cece7f314ac3b412 -> trunk/eba1ad09e47b66478f973e03cece7f314ac3b412 2025-08-26T19:37:22.7940771Z * [new tag] trunk/eba20d2d748cb17dce9aa26e5513e4567bfd8282 -> trunk/eba20d2d748cb17dce9aa26e5513e4567bfd8282 2025-08-26T19:37:22.7941779Z * [new tag] trunk/ec21cafd85d491d2d220e4e54080fe340a37c4c2 -> trunk/ec21cafd85d491d2d220e4e54080fe340a37c4c2 2025-08-26T19:37:22.7942638Z * [new tag] trunk/ed8bcccf31e1ba01a35e818a4afbb74c333e8dc3 -> trunk/ed8bcccf31e1ba01a35e818a4afbb74c333e8dc3 2025-08-26T19:37:22.7943486Z * [new tag] trunk/eddaaa6c2a66a84e17b17bf8af5131852067b259 -> trunk/eddaaa6c2a66a84e17b17bf8af5131852067b259 2025-08-26T19:37:22.7944431Z * [new tag] trunk/ef761c43538abae5bccc0c4b6ebaf42ff676db7a -> trunk/ef761c43538abae5bccc0c4b6ebaf42ff676db7a 2025-08-26T19:37:22.7945269Z * [new tag] trunk/f085f299584b06a2a7d8855eda2a411313e782ad -> trunk/f085f299584b06a2a7d8855eda2a411313e782ad 2025-08-26T19:37:22.7946089Z * [new tag] trunk/f09458c2e16b4fe7063d73d80fd3e7e354bad3f8 -> trunk/f09458c2e16b4fe7063d73d80fd3e7e354bad3f8 2025-08-26T19:37:22.7946926Z * [new tag] trunk/f0e0a6897ee5cb31ccee10ee8e2d3c01140ff999 -> trunk/f0e0a6897ee5cb31ccee10ee8e2d3c01140ff999 2025-08-26T19:37:22.7947743Z * [new tag] trunk/f30501937738a2440f90988d1d46920529309ba8 -> trunk/f30501937738a2440f90988d1d46920529309ba8 2025-08-26T19:37:22.7948560Z * [new tag] trunk/f391afe9bf8c542fdbb822423d2a1e454b3d9744 -> trunk/f391afe9bf8c542fdbb822423d2a1e454b3d9744 2025-08-26T19:37:22.7949398Z * [new tag] trunk/f521e82a4e80df502fa57e5852af14d8779dcbd1 -> trunk/f521e82a4e80df502fa57e5852af14d8779dcbd1 2025-08-26T19:37:22.7950214Z * [new tag] trunk/f5bf5147ad18994c9a6e0f565d7831362bf5a18a -> trunk/f5bf5147ad18994c9a6e0f565d7831362bf5a18a 2025-08-26T19:37:22.7951013Z * [new tag] trunk/f795e92802c55608ad4f4f198726d250056d0232 -> trunk/f795e92802c55608ad4f4f198726d250056d0232 2025-08-26T19:37:22.7951810Z * [new tag] trunk/f8bd85827d465a8a2a610c27ed9e62a4c27ac07d -> trunk/f8bd85827d465a8a2a610c27ed9e62a4c27ac07d 2025-08-26T19:37:22.7952635Z * [new tag] trunk/f90ccad1651b5a1698b2232acc3e92e2829b7935 -> trunk/f90ccad1651b5a1698b2232acc3e92e2829b7935 2025-08-26T19:37:22.7953542Z * [new tag] trunk/f912c93344caa74e24c8164a2e25fe84a8203073 -> trunk/f912c93344caa74e24c8164a2e25fe84a8203073 2025-08-26T19:37:22.7954350Z * [new tag] trunk/f9875166a953a51bbd454d963ee03d41818a27e8 -> trunk/f9875166a953a51bbd454d963ee03d41818a27e8 2025-08-26T19:37:22.7955180Z * [new tag] trunk/f9df4ec2af0ac19b42f658ae87acf12067e67b36 -> trunk/f9df4ec2af0ac19b42f658ae87acf12067e67b36 2025-08-26T19:37:22.7956012Z * [new tag] trunk/fab5dac734344105ae107e85c08151758a4a9b4d -> trunk/fab5dac734344105ae107e85c08151758a4a9b4d 2025-08-26T19:37:22.7956830Z * [new tag] trunk/fb241d0a448f1dd88471098ac149418124a7c4aa -> trunk/fb241d0a448f1dd88471098ac149418124a7c4aa 2025-08-26T19:37:22.7957642Z * [new tag] trunk/fc0683b1e75fdf3182e0855b3f79e80fe0124ef1 -> trunk/fc0683b1e75fdf3182e0855b3f79e80fe0124ef1 2025-08-26T19:37:22.7958456Z * [new tag] trunk/fc69c2bc67672c3b2d0c62c1821895f09288f1c0 -> trunk/fc69c2bc67672c3b2d0c62c1821895f09288f1c0 2025-08-26T19:37:22.7959289Z * [new tag] trunk/febfc3ec03004116dfd6d504e6853ff02a1dd6e0 -> trunk/febfc3ec03004116dfd6d504e6853ff02a1dd6e0 2025-08-26T19:37:22.7960242Z * [new tag] trunk/fecc5f600110209aaaedead11770a445b3c879e6 -> trunk/fecc5f600110209aaaedead11770a445b3c879e6 2025-08-26T19:37:22.7961086Z * [new tag] trunk/ff4f5dd8ed8e2aaee903c7d30cd4f8bd04d883c8 -> trunk/ff4f5dd8ed8e2aaee903c7d30cd4f8bd04d883c8 2025-08-26T19:37:22.7961944Z * [new tag] trunk/ffa1ce7650766c2ae6eaa96415dfc29e9eb0b3ec -> trunk/ffa1ce7650766c2ae6eaa96415dfc29e9eb0b3ec 2025-08-26T19:37:22.7962541Z * [new tag] v0.1.1 -> v0.1.1 2025-08-26T19:37:22.7962897Z * [new tag] v0.1.10 -> v0.1.10 2025-08-26T19:37:22.7963341Z * [new tag] v0.1.11 -> v0.1.11 2025-08-26T19:37:22.7963677Z * [new tag] v0.1.12 -> v0.1.12 2025-08-26T19:37:22.7964029Z * [new tag] v0.1.2 -> v0.1.2 2025-08-26T19:37:22.7964366Z * [new tag] v0.1.3 -> v0.1.3 2025-08-26T19:37:22.7964719Z * [new tag] v0.1.4 -> v0.1.4 2025-08-26T19:37:22.7965046Z * [new tag] v0.1.5 -> v0.1.5 2025-08-26T19:37:22.7965382Z * [new tag] v0.1.6 -> v0.1.6 2025-08-26T19:37:22.7965714Z * [new tag] v0.1.7 -> v0.1.7 2025-08-26T19:37:22.7966042Z * [new tag] v0.1.8 -> v0.1.8 2025-08-26T19:37:22.8353556Z * [new tag] v0.1.9 -> v0.1.9 2025-08-26T19:37:22.8353991Z * [new tag] v0.2.0 -> v0.2.0 2025-08-26T19:37:22.8354384Z * [new tag] v0.3.0 -> v0.3.0 2025-08-26T19:37:22.8354767Z * [new tag] v0.3.1 -> v0.3.1 2025-08-26T19:37:22.8355149Z * [new tag] v0.4.0 -> v0.4.0 2025-08-26T19:37:22.8355522Z * [new tag] v0.4.1 -> v0.4.1 2025-08-26T19:37:22.8355889Z * [new tag] v1.0.0 -> v1.0.0 2025-08-26T19:37:22.8356269Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-08-26T19:37:22.8356661Z * [new tag] v1.0.1 -> v1.0.1 2025-08-26T19:37:22.8357038Z * [new tag] v1.0rc0 -> v1.0rc0 2025-08-26T19:37:22.8357422Z * [new tag] v1.0rc1 -> v1.0rc1 2025-08-26T19:37:22.8357812Z * [new tag] v1.1.0 -> v1.1.0 2025-08-26T19:37:22.8358196Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-08-26T19:37:22.8358575Z * [new tag] v1.10.0 -> v1.10.0 2025-08-26T19:37:22.8359086Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-08-26T19:37:22.8359465Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-08-26T19:37:22.8359821Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-08-26T19:37:22.8360185Z * [new tag] v1.10.1 -> v1.10.1 2025-08-26T19:37:22.8360541Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-08-26T19:37:22.8360896Z * [new tag] v1.10.2 -> v1.10.2 2025-08-26T19:37:22.8361234Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-08-26T19:37:22.8361589Z * [new tag] v1.11.0 -> v1.11.0 2025-08-26T19:37:22.8361935Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-08-26T19:37:22.8362293Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-08-26T19:37:22.8362656Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-08-26T19:37:22.8363009Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-08-26T19:37:22.8363361Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-08-26T19:37:22.8363746Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-08-26T19:37:22.8364142Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-08-26T19:37:22.8364526Z * [new tag] v1.12.0 -> v1.12.0 2025-08-26T19:37:22.8364867Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-08-26T19:37:22.8365223Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-08-26T19:37:22.8365569Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-08-26T19:37:22.8366036Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-08-26T19:37:22.8366408Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-08-26T19:37:22.8366755Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-08-26T19:37:22.8367116Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-08-26T19:37:22.8367465Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-08-26T19:37:22.8367816Z * [new tag] v1.12.1 -> v1.12.1 2025-08-26T19:37:22.8368160Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-08-26T19:37:22.8368517Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-08-26T19:37:22.8368868Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-08-26T19:37:22.8369211Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-08-26T19:37:22.8369569Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-08-26T19:37:22.8369953Z * [new tag] v1.13.0 -> v1.13.0 2025-08-26T19:37:22.8370340Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-08-26T19:37:22.8370723Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-08-26T19:37:22.8371082Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-08-26T19:37:22.8371439Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-08-26T19:37:22.8371784Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-08-26T19:37:22.8372134Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-08-26T19:37:22.8372477Z * [new tag] v1.13.1 -> v1.13.1 2025-08-26T19:37:22.8372830Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-08-26T19:37:22.8373194Z * [new tag] v1.2.0 -> v1.2.0 2025-08-26T19:37:22.8373529Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-08-26T19:37:22.8373964Z * [new tag] v1.3.0 -> v1.3.0 2025-08-26T19:37:22.8374301Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-08-26T19:37:22.8374649Z * [new tag] v1.3.1 -> v1.3.1 2025-08-26T19:37:22.8374982Z * [new tag] v1.4.0 -> v1.4.0 2025-08-26T19:37:22.8723748Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-08-26T19:37:22.8724140Z * [new tag] v1.4.1 -> v1.4.1 2025-08-26T19:37:22.8724484Z * [new tag] v1.5.0 -> v1.5.0 2025-08-26T19:37:22.8724861Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-08-26T19:37:22.8725236Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-08-26T19:37:22.8725590Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-08-26T19:37:22.8725946Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-08-26T19:37:22.8726290Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-08-26T19:37:22.8726642Z * [new tag] v1.5.1 -> v1.5.1 2025-08-26T19:37:22.8726979Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-08-26T19:37:22.8727324Z * [new tag] v1.6.0 -> v1.6.0 2025-08-26T19:37:22.8727712Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-08-26T19:37:22.8728103Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-08-26T19:37:22.8728455Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-08-26T19:37:22.8728797Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-08-26T19:37:22.8729297Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-08-26T19:37:22.8729649Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-08-26T19:37:22.8730005Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-08-26T19:37:22.8730357Z * [new tag] v1.7.0 -> v1.7.0 2025-08-26T19:37:22.8730696Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-08-26T19:37:22.8731055Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-08-26T19:37:22.8731395Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-08-26T19:37:22.8731744Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-08-26T19:37:22.8732083Z * [new tag] v1.7.1 -> v1.7.1 2025-08-26T19:37:22.8732426Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-08-26T19:37:22.8732788Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-08-26T19:37:22.8733141Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-08-26T19:37:22.8733527Z * [new tag] v1.8.0 -> v1.8.0 2025-08-26T19:37:22.8733901Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-08-26T19:37:22.8734253Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-08-26T19:37:22.8734604Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-08-26T19:37:22.8734950Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-08-26T19:37:22.8735302Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-08-26T19:37:22.8735640Z * [new tag] v1.8.1 -> v1.8.1 2025-08-26T19:37:22.8735989Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-08-26T19:37:22.8736345Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-08-26T19:37:22.8736699Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-08-26T19:37:22.8737146Z * [new tag] v1.8.2 -> v1.8.2 2025-08-26T19:37:22.8737497Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-08-26T19:37:22.8737855Z * [new tag] v1.9.0 -> v1.9.0 2025-08-26T19:37:22.8738199Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-08-26T19:37:22.8738571Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-08-26T19:37:22.8738953Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-08-26T19:37:22.8739310Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-08-26T19:37:22.8739695Z * [new tag] v1.9.1 -> v1.9.1 2025-08-26T19:37:22.8740039Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-08-26T19:37:22.8740393Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-08-26T19:37:22.8740737Z * [new tag] v2.0.0 -> v2.0.0 2025-08-26T19:37:22.8741084Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-08-26T19:37:22.8741430Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-08-26T19:37:22.8741788Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-08-26T19:37:22.8742140Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-08-26T19:37:22.8742489Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-08-26T19:37:22.8742846Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-08-26T19:37:22.8743188Z * [new tag] v2.0.1 -> v2.0.1 2025-08-26T19:37:22.8743540Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-08-26T19:37:22.8743989Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-08-26T19:37:22.8744412Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-08-26T19:37:22.9112276Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-08-26T19:37:22.9112673Z * [new tag] v2.1.0 -> v2.1.0 2025-08-26T19:37:22.9113034Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-08-26T19:37:22.9113397Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-08-26T19:37:22.9113744Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-08-26T19:37:22.9114096Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-08-26T19:37:22.9114439Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-08-26T19:37:22.9114792Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-08-26T19:37:22.9115154Z * [new tag] v2.1.1 -> v2.1.1 2025-08-26T19:37:22.9115499Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-08-26T19:37:22.9115853Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-08-26T19:37:22.9116197Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-08-26T19:37:22.9116554Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-08-26T19:37:22.9116897Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-08-26T19:37:22.9117257Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-08-26T19:37:22.9117601Z * [new tag] v2.1.2 -> v2.1.2 2025-08-26T19:37:22.9117941Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-08-26T19:37:22.9118289Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-08-26T19:37:22.9118634Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-08-26T19:37:22.9119136Z * [new tag] v2.2.0 -> v2.2.0 2025-08-26T19:37:22.9119486Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-08-26T19:37:22.9119840Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-08-26T19:37:22.9120196Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-08-26T19:37:22.9120542Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-08-26T19:37:22.9120901Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-08-26T19:37:22.9121245Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-08-26T19:37:22.9121603Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-08-26T19:37:22.9121959Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-08-26T19:37:22.9122301Z * [new tag] v2.2.1 -> v2.2.1 2025-08-26T19:37:22.9122648Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-08-26T19:37:22.9122996Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-08-26T19:37:22.9123348Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-08-26T19:37:22.9123691Z * [new tag] v2.2.2 -> v2.2.2 2025-08-26T19:37:22.9124040Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-08-26T19:37:22.9124388Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-08-26T19:37:22.9124745Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-08-26T19:37:22.9125094Z * [new tag] v2.3.0 -> v2.3.0 2025-08-26T19:37:22.9125438Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-08-26T19:37:22.9125906Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-08-26T19:37:22.9126280Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-08-26T19:37:22.9126640Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-08-26T19:37:22.9127008Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-08-26T19:37:22.9127359Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-08-26T19:37:22.9127717Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-08-26T19:37:22.9128067Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-08-26T19:37:22.9128423Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-08-26T19:37:22.9128778Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-08-26T19:37:22.9129119Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-08-26T19:37:22.9129469Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-08-26T19:37:22.9129812Z * [new tag] v2.3.1 -> v2.3.1 2025-08-26T19:37:22.9130164Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-08-26T19:37:22.9130510Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-08-26T19:37:22.9130860Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-08-26T19:37:22.9131201Z * [new tag] v2.4.0 -> v2.4.0 2025-08-26T19:37:22.9131541Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-08-26T19:37:22.9131889Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-08-26T19:37:22.9132230Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-08-26T19:37:22.9132582Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-08-26T19:37:22.9489033Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-08-26T19:37:22.9489437Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-08-26T19:37:22.9489914Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-08-26T19:37:22.9490264Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-08-26T19:37:22.9490621Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-08-26T19:37:22.9490978Z * [new tag] v2.4.1 -> v2.4.1 2025-08-26T19:37:22.9491320Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-08-26T19:37:22.9491672Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-08-26T19:37:22.9492019Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-08-26T19:37:22.9492370Z * [new tag] v2.5.0 -> v2.5.0 2025-08-26T19:37:22.9492712Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-08-26T19:37:22.9493076Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-08-26T19:37:22.9493445Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-08-26T19:37:22.9493792Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-08-26T19:37:22.9494144Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-08-26T19:37:22.9494488Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-08-26T19:37:22.9494837Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-08-26T19:37:22.9495278Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-08-26T19:37:22.9495743Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-08-26T19:37:22.9496103Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-08-26T19:37:22.9496444Z * [new tag] v2.5.1 -> v2.5.1 2025-08-26T19:37:22.9496904Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-08-26T19:37:22.9497263Z * [new tag] v2.6.0 -> v2.6.0 2025-08-26T19:37:22.9497606Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-08-26T19:37:22.9497970Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-08-26T19:37:22.9498320Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-08-26T19:37:22.9498678Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-08-26T19:37:22.9499032Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-08-26T19:37:22.9499391Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-08-26T19:37:22.9499740Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-08-26T19:37:22.9500082Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-08-26T19:37:22.9500438Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-08-26T19:37:22.9500778Z * [new tag] v2.7.0 -> v2.7.0 2025-08-26T19:37:22.9501169Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-08-26T19:37:22.9501562Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-08-26T19:37:22.9501926Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-08-26T19:37:22.9502280Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-08-26T19:37:22.9502627Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-08-26T19:37:22.9502993Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-08-26T19:37:22.9503353Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-08-26T19:37:22.9503705Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-08-26T19:37:22.9504067Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-08-26T19:37:22.9504478Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-08-26T19:37:22.9504920Z * [new tag] v2.7.1 -> v2.7.1 2025-08-26T19:37:22.9505266Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-08-26T19:37:22.9505616Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-08-26T19:37:22.9505967Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-08-26T19:37:22.9506318Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-08-26T19:37:22.9506710Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-08-26T19:37:22.9507063Z * [new tag] v2.8.0 -> v2.8.0 2025-08-26T19:37:22.9507457Z * [new tag] v2.8.0-rc1 -> v2.8.0-rc1 2025-08-26T19:37:22.9507801Z * [new tag] v2.8.0-rc2 -> v2.8.0-rc2 2025-08-26T19:37:22.9508154Z * [new tag] v2.8.0-rc3 -> v2.8.0-rc3 2025-08-26T19:37:22.9508504Z * [new tag] v2.8.0-rc4 -> v2.8.0-rc4 2025-08-26T19:37:22.9508857Z * [new tag] v2.8.0-rc5 -> v2.8.0-rc5 2025-08-26T19:37:22.9509213Z * [new tag] v2.8.0-rc6 -> v2.8.0-rc6 2025-08-26T19:37:22.9509567Z * [new tag] v2.8.0-rc7 -> v2.8.0-rc7 2025-08-26T19:37:22.9509927Z * [new tag] v2.8.0-rc8 -> v2.8.0-rc8 2025-08-26T19:37:23.2289376Z * [new tag] whc_flight_1 -> whc_flight_1 2025-08-26T19:37:23.2290390Z * [new tag] whc_flight_2 -> whc_flight_2 2025-08-26T19:37:23.2291247Z * [new tag] whc_flight_4 -> whc_flight_4 2025-08-26T19:37:23.2495331Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet 262640fd220236042fbf4443cc163c8838c84c3d^{object} 2025-08-26T19:37:23.2705022Z 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:37:23.2738131Z ##[endgroup] 2025-08-26T19:37:23.2738555Z ##[group]Determining the checkout info 2025-08-26T19:37:23.2740400Z ##[endgroup] 2025-08-26T19:37:23.2751307Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-08-26T19:37:23.3015017Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-08-26T19:37:23.3239279Z ##[group]Checking out the ref 2025-08-26T19:37:23.3249821Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:37:24.3992602Z Updating files: 10% (2079/19395) 2025-08-26T19:37:24.4768034Z Updating files: 11% (2134/19395) 2025-08-26T19:37:24.5473972Z Updating files: 12% (2328/19395) 2025-08-26T19:37:24.6154526Z Updating files: 13% (2522/19395) 2025-08-26T19:37:24.7996872Z Updating files: 14% (2716/19395) 2025-08-26T19:37:24.9538651Z Updating files: 15% (2910/19395) 2025-08-26T19:37:25.0108025Z Updating files: 16% (3104/19395) 2025-08-26T19:37:25.0700975Z Updating files: 17% (3298/19395) 2025-08-26T19:37:25.1343403Z Updating files: 18% (3492/19395) 2025-08-26T19:37:25.1906612Z Updating files: 19% (3686/19395) 2025-08-26T19:37:25.2479466Z Updating files: 20% (3879/19395) 2025-08-26T19:37:25.2991695Z Updating files: 21% (4073/19395) 2025-08-26T19:37:25.3780690Z Updating files: 22% (4267/19395) 2025-08-26T19:37:25.4408312Z Updating files: 22% (4445/19395) 2025-08-26T19:37:25.5198536Z Updating files: 23% (4461/19395) 2025-08-26T19:37:25.5877534Z Updating files: 24% (4655/19395) 2025-08-26T19:37:25.6919986Z Updating files: 25% (4849/19395) 2025-08-26T19:37:25.7257835Z Updating files: 26% (5043/19395) 2025-08-26T19:37:25.7566663Z Updating files: 27% (5237/19395) 2025-08-26T19:37:25.7869468Z Updating files: 28% (5431/19395) 2025-08-26T19:37:25.8219235Z Updating files: 29% (5625/19395) 2025-08-26T19:37:25.9252564Z Updating files: 30% (5819/19395) 2025-08-26T19:37:25.9946685Z Updating files: 31% (6013/19395) 2025-08-26T19:37:26.4361538Z Updating files: 32% (6207/19395) 2025-08-26T19:37:26.4636880Z Updating files: 32% (6333/19395) 2025-08-26T19:37:26.5564642Z Updating files: 33% (6401/19395) 2025-08-26T19:37:26.7021432Z Updating files: 34% (6595/19395) 2025-08-26T19:37:27.4099139Z Updating files: 35% (6789/19395) 2025-08-26T19:37:28.1206852Z Updating files: 35% (6971/19395) 2025-08-26T19:37:28.1718093Z Updating files: 36% (6983/19395) 2025-08-26T19:37:28.2582260Z Updating files: 37% (7177/19395) 2025-08-26T19:37:28.2972038Z Updating files: 38% (7371/19395) 2025-08-26T19:37:28.3369280Z Updating files: 39% (7565/19395) 2025-08-26T19:37:28.4012815Z Updating files: 40% (7758/19395) 2025-08-26T19:37:28.4211642Z Updating files: 40% (7872/19395) 2025-08-26T19:37:28.4578073Z Updating files: 41% (7952/19395) 2025-08-26T19:37:28.6190572Z Updating files: 42% (8146/19395) 2025-08-26T19:37:28.6523665Z Updating files: 43% (8340/19395) 2025-08-26T19:37:28.6896130Z Updating files: 44% (8534/19395) 2025-08-26T19:37:28.7993289Z Updating files: 45% (8728/19395) 2025-08-26T19:37:28.8326238Z Updating files: 46% (8922/19395) 2025-08-26T19:37:28.9428537Z Updating files: 47% (9116/19395) 2025-08-26T19:37:29.4245336Z Updating files: 48% (9310/19395) 2025-08-26T19:37:29.4311239Z Updating files: 48% (9487/19395) 2025-08-26T19:37:29.4741459Z Updating files: 49% (9504/19395) 2025-08-26T19:37:29.5879368Z Updating files: 50% (9698/19395) 2025-08-26T19:37:29.6270522Z Updating files: 51% (9892/19395) 2025-08-26T19:37:29.6675119Z Updating files: 52% (10086/19395) 2025-08-26T19:37:29.7765371Z Updating files: 53% (10280/19395) 2025-08-26T19:37:29.8179479Z Updating files: 54% (10474/19395) 2025-08-26T19:37:29.9343400Z Updating files: 55% (10668/19395) 2025-08-26T19:37:29.9733005Z Updating files: 56% (10862/19395) 2025-08-26T19:37:30.0173878Z Updating files: 57% (11056/19395) 2025-08-26T19:37:30.1042647Z Updating files: 58% (11250/19395) 2025-08-26T19:37:30.1494747Z Updating files: 59% (11444/19395) 2025-08-26T19:37:30.1905560Z Updating files: 60% (11637/19395) 2025-08-26T19:37:30.3102801Z Updating files: 61% (11831/19395) 2025-08-26T19:37:30.3534103Z Updating files: 62% (12025/19395) 2025-08-26T19:37:30.4588489Z Updating files: 63% (12219/19395) 2025-08-26T19:37:30.4658195Z Updating files: 63% (12381/19395) 2025-08-26T19:37:30.5115807Z Updating files: 64% (12413/19395) 2025-08-26T19:37:30.5543830Z Updating files: 65% (12607/19395) 2025-08-26T19:37:30.6607294Z Updating files: 66% (12801/19395) 2025-08-26T19:37:30.7014668Z Updating files: 67% (12995/19395) 2025-08-26T19:37:30.7456383Z Updating files: 68% (13189/19395) 2025-08-26T19:37:30.9772827Z Updating files: 69% (13383/19395) 2025-08-26T19:37:31.2035805Z Updating files: 70% (13577/19395) 2025-08-26T19:37:31.3242988Z Updating files: 71% (13771/19395) 2025-08-26T19:37:31.3701063Z Updating files: 72% (13965/19395) 2025-08-26T19:37:31.4236580Z Updating files: 73% (14159/19395) 2025-08-26T19:37:31.4619304Z Updating files: 73% (14270/19395) 2025-08-26T19:37:31.6317751Z Updating files: 74% (14353/19395) 2025-08-26T19:37:31.7834584Z Updating files: 75% (14547/19395) 2025-08-26T19:37:31.9565598Z Updating files: 76% (14741/19395) 2025-08-26T19:37:32.0305309Z Updating files: 77% (14935/19395) 2025-08-26T19:37:32.1808582Z Updating files: 78% (15129/19395) 2025-08-26T19:37:32.2782360Z Updating files: 79% (15323/19395) 2025-08-26T19:37:32.3808134Z Updating files: 80% (15516/19395) 2025-08-26T19:37:32.5052589Z Updating files: 81% (15710/19395) 2025-08-26T19:37:32.6641291Z Updating files: 81% (15727/19395) 2025-08-26T19:37:32.7615108Z Updating files: 82% (15904/19395) 2025-08-26T19:37:32.8953903Z Updating files: 83% (16098/19395) 2025-08-26T19:37:32.9722631Z Updating files: 84% (16292/19395) 2025-08-26T19:37:33.0569724Z Updating files: 85% (16486/19395) 2025-08-26T19:37:33.1544633Z Updating files: 86% (16680/19395) 2025-08-26T19:37:33.2447069Z Updating files: 87% (16874/19395) 2025-08-26T19:37:33.3301331Z Updating files: 88% (17068/19395) 2025-08-26T19:37:33.4103868Z Updating files: 89% (17262/19395) 2025-08-26T19:37:33.4245190Z Updating files: 90% (17456/19395) 2025-08-26T19:37:33.5494854Z Updating files: 90% (17487/19395) 2025-08-26T19:37:33.6314447Z Updating files: 91% (17650/19395) 2025-08-26T19:37:33.7102934Z Updating files: 92% (17844/19395) 2025-08-26T19:37:33.9107682Z Updating files: 93% (18038/19395) 2025-08-26T19:37:34.0123486Z Updating files: 94% (18232/19395) 2025-08-26T19:37:34.1513566Z Updating files: 95% (18426/19395) 2025-08-26T19:37:34.2336846Z Updating files: 96% (18620/19395) 2025-08-26T19:37:34.3944124Z Updating files: 97% (18814/19395) 2025-08-26T19:37:34.4280847Z Updating files: 98% (19008/19395) 2025-08-26T19:37:34.5005205Z Updating files: 98% (19051/19395) 2025-08-26T19:37:34.5894553Z Updating files: 99% (19202/19395) 2025-08-26T19:37:34.5894947Z Updating files: 100% (19395/19395) 2025-08-26T19:37:34.5895216Z Updating files: 100% (19395/19395), done. 2025-08-26T19:37:34.6326573Z Note: switching to '262640fd220236042fbf4443cc163c8838c84c3d'. 2025-08-26T19:37:34.6326950Z 2025-08-26T19:37:34.6327151Z You are in 'detached HEAD' state. You can look around, make experimental 2025-08-26T19:37:34.6327730Z changes and commit them, and you can discard any commits you make in this 2025-08-26T19:37:34.6328239Z state without impacting any branches by switching back to a branch. 2025-08-26T19:37:34.6328534Z 2025-08-26T19:37:34.6328725Z If you want to create a new branch to retain commits you create, you may 2025-08-26T19:37:34.6329192Z do so (now or later) by using -c with the switch command. Example: 2025-08-26T19:37:34.6329457Z 2025-08-26T19:37:34.6329554Z git switch -c 2025-08-26T19:37:34.6329739Z 2025-08-26T19:37:34.6329828Z Or undo this operation with: 2025-08-26T19:37:34.6330210Z 2025-08-26T19:37:34.6330293Z git switch - 2025-08-26T19:37:34.6330409Z 2025-08-26T19:37:34.6330626Z Turn off this advice by setting config variable advice.detachedHead to false 2025-08-26T19:37:34.6330975Z 2025-08-26T19:37:34.6331197Z HEAD is now at 262640fd220 [ROCm][CI] restore test_flex_attention tests (#161519) 2025-08-26T19:37:34.6514569Z ##[endgroup] 2025-08-26T19:37:34.6514977Z ##[group]Setting up auth for fetching submodules 2025-08-26T19:37:34.6527006Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-26T19:37:34.6794542Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-08-26T19:37:34.7028728Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-08-26T19:37:34.7270257Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-08-26T19:37:34.7494397Z ##[endgroup] 2025-08-26T19:37:34.7494828Z ##[group]Fetching submodules 2025-08-26T19:37:34.7503971Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-08-26T19:37:35.1366216Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-08-26T19:37:35.6933426Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-08-26T19:37:35.6934419Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-08-26T19:37:35.6935354Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-08-26T19:37:35.6936284Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-08-26T19:37:35.6937107Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-08-26T19:37:35.6938471Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-08-26T19:37:35.6939655Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-08-26T19:37:35.6940492Z Submodule 'third_party/aiter' (https://github.com/ROCm/aiter.git) registered for path 'third_party/aiter' 2025-08-26T19:37:35.6941343Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-08-26T19:37:35.6942342Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-08-26T19:37:35.6943373Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-08-26T19:37:35.6944305Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-08-26T19:37:35.6945250Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-08-26T19:37:35.6946198Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-08-26T19:37:35.6947122Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-08-26T19:37:35.6948071Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-08-26T19:37:35.6949122Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-08-26T19:37:35.6949978Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-08-26T19:37:35.6951017Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:37:35.6951919Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-08-26T19:37:35.6952759Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-08-26T19:37:35.6953623Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-08-26T19:37:35.6954418Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-08-26T19:37:35.6955224Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-08-26T19:37:35.6956094Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-08-26T19:37:35.6957017Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-08-26T19:37:35.6957909Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-08-26T19:37:35.6958716Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-08-26T19:37:35.6959697Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-08-26T19:37:35.6960776Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-08-26T19:37:35.6961722Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-08-26T19:37:35.6962690Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-08-26T19:37:35.6963919Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-08-26T19:37:35.7004087Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-08-26T19:37:35.7005096Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-08-26T19:37:35.7005991Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-08-26T19:37:35.7006859Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-08-26T19:37:35.7981214Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-08-26T19:37:36.3532871Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-08-26T19:37:36.3533975Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-08-26T19:37:36.9230512Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-08-26T19:37:44.0194230Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-08-26T19:37:44.0195288Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-08-26T19:37:44.0196282Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-08-26T19:37:44.0197357Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-08-26T19:37:44.0198378Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-08-26T19:37:44.0199422Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-08-26T19:37:44.0200466Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-08-26T19:37:44.0201848Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-08-26T19:37:44.0202816Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-08-26T19:37:44.0203517Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-08-26T19:37:44.0204142Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-08-26T19:37:44.0204796Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-08-26T19:37:44.0205613Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-08-26T19:37:44.0206248Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-08-26T19:37:44.0378054Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-08-26T19:37:44.0378694Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-08-26T19:37:44.0884807Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-08-26T19:38:02.8967381Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-08-26T19:38:02.8968053Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter'... 2025-08-26T19:38:02.8968599Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-08-26T19:38:02.8969155Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-08-26T19:38:02.8969739Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-08-26T19:38:02.8970342Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-08-26T19:38:02.8970983Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-08-26T19:38:02.8971588Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-08-26T19:38:02.8972155Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-08-26T19:38:02.8972700Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-08-26T19:38:02.8973425Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-08-26T19:38:02.8974022Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-08-26T19:38:02.8974619Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-08-26T19:38:02.8975143Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-08-26T19:38:02.8975700Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-08-26T19:38:02.8976295Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-08-26T19:38:03.0080489Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-08-26T19:38:03.1048543Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-08-26T19:38:03.1755357Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-08-26T19:38:03.4555322Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-08-26T19:38:03.8923468Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-08-26T19:38:04.1446216Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-08-26T19:38:11.0086752Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-08-26T19:38:12.2623095Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-08-26T19:38:12.2733898Z Submodule '3rdparty/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:38:16.0787953Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter/3rdparty/composable_kernel'... 2025-08-26T19:38:18.9373507Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-08-26T19:38:19.1276799Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-08-26T19:38:22.8444198Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-08-26T19:38:23.0996122Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-08-26T19:38:23.5789667Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-08-26T19:38:23.8254811Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-08-26T19:38:31.1225956Z Submodule path 'third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-08-26T19:38:32.2950687Z Submodule path 'third_party/fbgemm': checked out '21c7d30c526c0f1ad873ecc632dca6cfa8a69067' 2025-08-26T19:38:32.3166246Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-08-26T19:38:32.3167372Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:38:32.3168475Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:38:32.3169527Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-08-26T19:38:32.3170506Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-08-26T19:38:32.3171624Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:38:32.3172703Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-08-26T19:38:41.5768814Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-08-26T19:38:41.5769630Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-08-26T19:38:41.5770345Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-08-26T19:38:41.5771048Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-08-26T19:38:41.5771797Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-08-26T19:38:41.5772517Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-08-26T19:38:41.5773185Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-08-26T19:38:41.8469953Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-08-26T19:38:44.7441268Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out 'b1281b8b08d973a7064f864f47eeb30f3e2596e9' 2025-08-26T19:38:45.2351911Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-08-26T19:38:49.8599299Z Submodule path 'third_party/fbgemm/external/cutlass': checked out 'b40777404c174b9694a870bff5c13ce6b7f656ad' 2025-08-26T19:38:50.1191215Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-26T19:38:50.1962079Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-08-26T19:38:50.9263397Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-08-26T19:38:51.8140662Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-08-26T19:38:51.8263358Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:38:51.8264505Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:38:57.3523124Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-08-26T19:38:57.3523956Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-08-26T19:39:00.0482343Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-08-26T19:39:04.0096657Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-08-26T19:39:05.4490751Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-08-26T19:39:05.6435713Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-08-26T19:39:05.8017916Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-08-26T19:39:06.1878808Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-08-26T19:39:06.4076319Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-26T19:39:06.4972728Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-08-26T19:39:06.5088263Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-08-26T19:39:18.7728244Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-08-26T19:39:21.8574793Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-08-26T19:39:21.9960499Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-08-26T19:39:22.4141767Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-08-26T19:39:22.4287835Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:39:22.4289047Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:39:22.4290210Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:39:24.7260293Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-08-26T19:39:24.7261168Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-08-26T19:39:24.7261972Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-08-26T19:39:25.1183641Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-08-26T19:39:25.1417464Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:39:25.1418645Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:39:25.1419777Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:39:25.1422080Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:39:25.1423267Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:39:25.1424513Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:39:25.1425770Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:39:25.1426926Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:39:25.2034843Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-08-26T19:39:33.5595083Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-08-26T19:39:33.5596107Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-08-26T19:39:33.5597065Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-08-26T19:39:33.5598000Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-08-26T19:39:33.5599059Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-08-26T19:39:33.5600341Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-08-26T19:39:33.5601636Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-08-26T19:39:34.2936640Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-08-26T19:39:34.4235916Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-08-26T19:39:34.6036468Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-08-26T19:39:34.6912880Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-08-26T19:39:34.7015432Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:39:35.2545567Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-08-26T19:39:35.3075983Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-08-26T19:39:35.4663242Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-08-26T19:39:35.6723590Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-08-26T19:39:36.2165182Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-08-26T19:39:36.3213580Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-08-26T19:39:36.5209098Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-08-26T19:39:36.7618068Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-08-26T19:39:37.1266585Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-08-26T19:39:37.3310454Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-08-26T19:39:38.0286286Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-08-26T19:39:41.9318548Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-08-26T19:39:41.9453331Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-08-26T19:39:43.0431618Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-08-26T19:39:43.2144693Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-26T19:39:43.7034741Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-08-26T19:39:43.7267564Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:39:43.7268781Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:39:43.7269869Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:39:43.7270954Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:39:43.7272312Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:39:43.7274507Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:39:43.7275871Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:39:43.7276999Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:39:43.7770745Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-08-26T19:39:56.2093424Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-08-26T19:39:56.2094506Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-08-26T19:39:56.2095442Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-08-26T19:39:56.2096306Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-08-26T19:39:56.2097167Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-08-26T19:39:56.2098014Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-08-26T19:39:56.2098847Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-08-26T19:39:56.3282845Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-08-26T19:39:56.5196849Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-08-26T19:39:56.6136768Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-08-26T19:39:57.1076100Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-08-26T19:39:57.2063227Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-08-26T19:39:57.3262123Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-08-26T19:39:57.4599930Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-08-26T19:39:57.4721645Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:39:57.4723010Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:39:59.5610161Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-08-26T19:39:59.5611263Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-08-26T19:40:00.2391105Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-08-26T19:40:00.4474038Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-08-26T19:40:05.7634979Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-08-26T19:40:05.8570101Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-08-26T19:40:07.1946752Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-08-26T19:40:07.2079888Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:40:07.2081199Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-08-26T19:40:08.3993238Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-08-26T19:40:08.3994049Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-08-26T19:40:08.4769707Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-08-26T19:40:08.7103208Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-08-26T19:40:08.7912782Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-08-26T19:40:08.8705680Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-08-26T19:40:09.0711265Z Submodule path 'third_party/pybind11': checked out 'f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8' 2025-08-26T19:40:09.2091949Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-08-26T19:40:09.3782103Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-08-26T19:40:09.6906211Z Submodule path 'third_party/tensorpipe': checked out 'af0118d13e52f5a08841464a768e01a0bf3e3075' 2025-08-26T19:40:09.7073827Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:40:09.7076276Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:40:09.7077267Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:40:09.7078289Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:40:11.9426539Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-08-26T19:40:11.9427359Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-08-26T19:40:11.9428107Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-08-26T19:40:11.9428899Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-08-26T19:40:12.1490439Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-08-26T19:40:12.2539072Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-08-26T19:40:12.7278083Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-08-26T19:40:12.8687448Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-08-26T19:40:12.8795951Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:40:13.1841999Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-08-26T19:40:13.2407635Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-08-26T19:40:13.2643757Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-08-26T19:40:13.6732192Z Entering 'android/libs/fbjni' 2025-08-26T19:40:13.7119077Z Entering 'third_party/FP16' 2025-08-26T19:40:13.7485238Z Entering 'third_party/FXdiv' 2025-08-26T19:40:13.7843670Z Entering 'third_party/NNPACK' 2025-08-26T19:40:13.8208418Z Entering 'third_party/NVTX' 2025-08-26T19:40:13.8580759Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:40:13.8950373Z Entering 'third_party/XNNPACK' 2025-08-26T19:40:13.9339626Z Entering 'third_party/aiter' 2025-08-26T19:40:13.9701617Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:40:14.0099090Z Entering 'third_party/benchmark' 2025-08-26T19:40:14.0469657Z Entering 'third_party/composable_kernel' 2025-08-26T19:40:14.0849104Z Entering 'third_party/cpp-httplib' 2025-08-26T19:40:14.1232358Z Entering 'third_party/cpuinfo' 2025-08-26T19:40:14.1604667Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:40:14.1967401Z Entering 'third_party/cutlass' 2025-08-26T19:40:14.2353781Z Entering 'third_party/fbgemm' 2025-08-26T19:40:14.2745594Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:40:14.3118146Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:40:14.3530558Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:40:14.3887387Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:40:14.4264410Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:40:14.4658847Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:40:14.5022315Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:40:14.5414227Z Entering 'third_party/flash-attention' 2025-08-26T19:40:14.5789427Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:40:14.6161309Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:40:14.6574425Z Entering 'third_party/flatbuffers' 2025-08-26T19:40:14.6956133Z Entering 'third_party/fmt' 2025-08-26T19:40:14.7330042Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:40:14.7737938Z Entering 'third_party/gloo' 2025-08-26T19:40:14.8110617Z Entering 'third_party/googletest' 2025-08-26T19:40:14.8474739Z Entering 'third_party/ideep' 2025-08-26T19:40:14.8871073Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:40:14.9261342Z Entering 'third_party/ittapi' 2025-08-26T19:40:14.9632247Z Entering 'third_party/kineto' 2025-08-26T19:40:14.9977329Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:40:15.0345494Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:40:15.0715336Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:40:15.1083668Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:40:15.1445570Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:40:15.1851749Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:40:15.2228176Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:40:15.2591995Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:40:15.2952264Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:40:15.3323457Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:40:15.3751165Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:40:15.4135405Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:40:15.4519057Z Entering 'third_party/kleidiai' 2025-08-26T19:40:15.4879176Z Entering 'third_party/mimalloc' 2025-08-26T19:40:15.5240787Z Entering 'third_party/nlohmann' 2025-08-26T19:40:15.5605518Z Entering 'third_party/onnx' 2025-08-26T19:40:15.5978878Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:40:15.6363612Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:40:15.6729787Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:40:15.7102561Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:40:15.7466106Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:40:15.7866594Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:40:15.8236939Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:40:15.8614732Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:40:15.8975843Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:40:15.9338360Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:40:15.9746028Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:40:16.0136055Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:40:16.0543332Z Entering 'third_party/pocketfft' 2025-08-26T19:40:16.0960544Z Entering 'third_party/protobuf' 2025-08-26T19:40:16.1316909Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:40:16.1683148Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:40:16.2058350Z Entering 'third_party/psimd' 2025-08-26T19:40:16.2420871Z Entering 'third_party/pthreadpool' 2025-08-26T19:40:16.2807754Z Entering 'third_party/pybind11' 2025-08-26T19:40:16.3184065Z Entering 'third_party/python-peachpy' 2025-08-26T19:40:16.3571650Z Entering 'third_party/sleef' 2025-08-26T19:40:16.3907231Z Entering 'third_party/tensorpipe' 2025-08-26T19:40:16.4258250Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:40:16.4629204Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:40:16.4998772Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:40:16.5360905Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:40:16.5718078Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:40:16.6200021Z ##[endgroup] 2025-08-26T19:40:16.6200449Z ##[group]Persisting credentials for submodules 2025-08-26T19:40:16.6214332Z [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-08-26T19:40:16.9810671Z Entering 'android/libs/fbjni' 2025-08-26T19:40:17.0377907Z Entering 'third_party/FP16' 2025-08-26T19:40:17.0938940Z Entering 'third_party/FXdiv' 2025-08-26T19:40:17.1484901Z Entering 'third_party/NNPACK' 2025-08-26T19:40:17.2063434Z Entering 'third_party/NVTX' 2025-08-26T19:40:17.2623201Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:40:17.3167557Z Entering 'third_party/XNNPACK' 2025-08-26T19:40:17.3759244Z Entering 'third_party/aiter' 2025-08-26T19:40:17.4297274Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:40:17.4890894Z Entering 'third_party/benchmark' 2025-08-26T19:40:17.5449254Z Entering 'third_party/composable_kernel' 2025-08-26T19:40:17.6012357Z Entering 'third_party/cpp-httplib' 2025-08-26T19:40:17.6565032Z Entering 'third_party/cpuinfo' 2025-08-26T19:40:17.7125918Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:40:17.7698248Z Entering 'third_party/cutlass' 2025-08-26T19:40:17.8253254Z Entering 'third_party/fbgemm' 2025-08-26T19:40:17.8817038Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:40:17.9393845Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:40:17.9959955Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:40:18.0509524Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:40:18.1125086Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:40:18.1685384Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:40:18.2239686Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:40:18.2824025Z Entering 'third_party/flash-attention' 2025-08-26T19:40:18.3370889Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:40:18.3946484Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:40:18.4574993Z Entering 'third_party/flatbuffers' 2025-08-26T19:40:18.5151874Z Entering 'third_party/fmt' 2025-08-26T19:40:18.5709047Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:40:18.6273317Z Entering 'third_party/gloo' 2025-08-26T19:40:18.6832583Z Entering 'third_party/googletest' 2025-08-26T19:40:18.7378419Z Entering 'third_party/ideep' 2025-08-26T19:40:18.7910882Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:40:18.8488637Z Entering 'third_party/ittapi' 2025-08-26T19:40:18.9034791Z Entering 'third_party/kineto' 2025-08-26T19:40:18.9568049Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:40:19.0140776Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:40:19.0699716Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:40:19.1251859Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:40:19.1816296Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:40:19.2359798Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:40:19.2950845Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:40:19.3567041Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:40:19.4125131Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:40:19.4683126Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:40:19.5314487Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:40:19.5866374Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:40:19.6467825Z Entering 'third_party/kleidiai' 2025-08-26T19:40:19.7018421Z Entering 'third_party/mimalloc' 2025-08-26T19:40:19.7559044Z Entering 'third_party/nlohmann' 2025-08-26T19:40:19.8096716Z Entering 'third_party/onnx' 2025-08-26T19:40:19.8650012Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:40:19.9284556Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:40:19.9852081Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:40:20.0437213Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:40:20.0999980Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:40:20.1570491Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:40:20.2149587Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:40:20.2734380Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:40:20.3328836Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:40:20.3863830Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:40:20.4456829Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:40:20.5023008Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:40:20.5652876Z Entering 'third_party/pocketfft' 2025-08-26T19:40:20.6222923Z Entering 'third_party/protobuf' 2025-08-26T19:40:20.6764952Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:40:20.7305830Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:40:20.7920809Z Entering 'third_party/psimd' 2025-08-26T19:40:20.8480732Z Entering 'third_party/pthreadpool' 2025-08-26T19:40:20.9042119Z Entering 'third_party/pybind11' 2025-08-26T19:40:20.9591174Z Entering 'third_party/python-peachpy' 2025-08-26T19:40:21.0154880Z Entering 'third_party/sleef' 2025-08-26T19:40:21.0699488Z Entering 'third_party/tensorpipe' 2025-08-26T19:40:21.1233847Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:40:21.1793458Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:40:21.2368310Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:40:21.2920169Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:40:21.3490627Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:40:21.4174997Z [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-08-26T19:40:21.8096985Z Entering 'android/libs/fbjni' 2025-08-26T19:40:21.8631266Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-08-26T19:40:21.8765257Z Entering 'third_party/FP16' 2025-08-26T19:40:21.9287806Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-08-26T19:40:21.9428798Z Entering 'third_party/FXdiv' 2025-08-26T19:40:21.9972698Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-08-26T19:40:22.0109910Z Entering 'third_party/NNPACK' 2025-08-26T19:40:22.0645029Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-08-26T19:40:22.0783691Z Entering 'third_party/NVTX' 2025-08-26T19:40:22.1339153Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-08-26T19:40:22.1482150Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:40:22.1997534Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-08-26T19:40:22.2134457Z Entering 'third_party/XNNPACK' 2025-08-26T19:40:22.2665869Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-08-26T19:40:22.2822669Z Entering 'third_party/aiter' 2025-08-26T19:40:22.3350969Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-08-26T19:40:22.3478657Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:40:22.4009715Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-08-26T19:40:22.4171260Z Entering 'third_party/benchmark' 2025-08-26T19:40:22.4688453Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-08-26T19:40:22.4826527Z Entering 'third_party/composable_kernel' 2025-08-26T19:40:22.5378361Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-08-26T19:40:22.5531598Z Entering 'third_party/cpp-httplib' 2025-08-26T19:40:22.6067227Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-08-26T19:40:22.6204164Z Entering 'third_party/cpuinfo' 2025-08-26T19:40:22.6731430Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-08-26T19:40:22.6868944Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:40:22.7400053Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-08-26T19:40:22.7540630Z Entering 'third_party/cutlass' 2025-08-26T19:40:22.8066657Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-08-26T19:40:22.8215614Z Entering 'third_party/fbgemm' 2025-08-26T19:40:22.8763957Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-08-26T19:40:22.8897656Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:40:22.9429336Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-08-26T19:40:22.9567108Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:40:23.0103087Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-08-26T19:40:23.0262670Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:40:23.0793862Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-08-26T19:40:23.0936631Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:40:23.1450633Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-08-26T19:40:23.1602596Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:40:23.2133744Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-08-26T19:40:23.2270027Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:40:23.2840174Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-08-26T19:40:23.2977500Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:40:23.3530825Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-08-26T19:40:23.3687345Z Entering 'third_party/flash-attention' 2025-08-26T19:40:23.4221433Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-08-26T19:40:23.4345674Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:40:23.4896074Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-08-26T19:40:23.5041295Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:40:23.5576126Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-08-26T19:40:23.5739527Z Entering 'third_party/flatbuffers' 2025-08-26T19:40:23.6242233Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-08-26T19:40:23.6377618Z Entering 'third_party/fmt' 2025-08-26T19:40:23.6890534Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-08-26T19:40:23.7028366Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:40:23.7547822Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-08-26T19:40:23.7684649Z Entering 'third_party/gloo' 2025-08-26T19:40:23.8210617Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-08-26T19:40:23.8349280Z Entering 'third_party/googletest' 2025-08-26T19:40:23.8888399Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-08-26T19:40:23.9035215Z Entering 'third_party/ideep' 2025-08-26T19:40:23.9579373Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-08-26T19:40:23.9698597Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:40:24.0206938Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-08-26T19:40:24.0368417Z Entering 'third_party/ittapi' 2025-08-26T19:40:24.0888242Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-08-26T19:40:24.1023594Z Entering 'third_party/kineto' 2025-08-26T19:40:24.1563810Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-08-26T19:40:24.1684377Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:40:24.2196134Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-08-26T19:40:24.2318013Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:40:24.2848153Z 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-08-26T19:40:24.2982918Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:40:24.3491764Z 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-08-26T19:40:24.3630159Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:40:24.4137046Z 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-08-26T19:40:24.4269888Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:40:24.4787400Z 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-08-26T19:40:24.4905197Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:40:24.5421716Z 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-08-26T19:40:24.5574512Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:40:24.6093810Z 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-08-26T19:40:24.6227194Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:40:24.6744400Z 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-08-26T19:40:24.6877744Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:40:24.7388136Z 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-08-26T19:40:24.7524362Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:40:24.8042028Z 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-08-26T19:40:24.8191750Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:40:24.8703378Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-08-26T19:40:24.8836156Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:40:24.9344693Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-08-26T19:40:24.9495423Z Entering 'third_party/kleidiai' 2025-08-26T19:40:24.9997483Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-08-26T19:40:25.0138009Z Entering 'third_party/mimalloc' 2025-08-26T19:40:25.0637740Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-08-26T19:40:25.0769510Z Entering 'third_party/nlohmann' 2025-08-26T19:40:25.1279372Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-08-26T19:40:25.1413096Z Entering 'third_party/onnx' 2025-08-26T19:40:25.1909951Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-08-26T19:40:25.2049712Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:40:25.2563908Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-08-26T19:40:25.2715144Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:40:25.3228814Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-08-26T19:40:25.3350138Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:40:25.3858582Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-08-26T19:40:25.4007172Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:40:25.4517832Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-08-26T19:40:25.4651081Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:40:25.5185891Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-08-26T19:40:25.5318571Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:40:25.5822904Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-08-26T19:40:25.5960281Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:40:25.6472522Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-08-26T19:40:25.6605549Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:40:25.7139746Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-08-26T19:40:25.7275928Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:40:25.7800398Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-08-26T19:40:25.7921443Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:40:25.8474949Z 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-08-26T19:40:25.8617107Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:40:25.9167592Z 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-08-26T19:40:25.9335657Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:40:25.9910220Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-08-26T19:40:26.0094257Z Entering 'third_party/pocketfft' 2025-08-26T19:40:26.0638465Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-08-26T19:40:26.0798577Z Entering 'third_party/protobuf' 2025-08-26T19:40:26.1337018Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-08-26T19:40:26.1464930Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:40:26.2004959Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-08-26T19:40:26.2146163Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:40:26.2695719Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-08-26T19:40:26.2851340Z Entering 'third_party/psimd' 2025-08-26T19:40:26.3372084Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-08-26T19:40:26.3506955Z Entering 'third_party/pthreadpool' 2025-08-26T19:40:26.4033236Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-08-26T19:40:26.4174252Z Entering 'third_party/pybind11' 2025-08-26T19:40:26.4705547Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-08-26T19:40:26.4841400Z Entering 'third_party/python-peachpy' 2025-08-26T19:40:26.5366223Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-08-26T19:40:26.5503117Z Entering 'third_party/sleef' 2025-08-26T19:40:26.6046269Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-08-26T19:40:26.6187890Z Entering 'third_party/tensorpipe' 2025-08-26T19:40:26.6713133Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-08-26T19:40:26.6835707Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:40:26.7367411Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-08-26T19:40:26.7505286Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:40:26.8034182Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-08-26T19:40:26.8176284Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:40:26.8715023Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-08-26T19:40:26.8857323Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:40:26.9386087Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-08-26T19:40:26.9513185Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:40:27.0068291Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-08-26T19:40:27.0751353Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-08-26T19:40:27.7605013Z Entering 'android/libs/fbjni' 2025-08-26T19:40:27.7987035Z Entering 'third_party/FP16' 2025-08-26T19:40:27.8358003Z Entering 'third_party/FXdiv' 2025-08-26T19:40:27.8723249Z Entering 'third_party/NNPACK' 2025-08-26T19:40:27.9091050Z Entering 'third_party/NVTX' 2025-08-26T19:40:27.9458317Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:40:27.9829981Z Entering 'third_party/XNNPACK' 2025-08-26T19:40:28.0212475Z Entering 'third_party/aiter' 2025-08-26T19:40:28.0580063Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:40:28.0978958Z Entering 'third_party/benchmark' 2025-08-26T19:40:28.1365260Z Entering 'third_party/composable_kernel' 2025-08-26T19:40:28.1794688Z Entering 'third_party/cpp-httplib' 2025-08-26T19:40:28.2165440Z Entering 'third_party/cpuinfo' 2025-08-26T19:40:28.2541362Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:40:28.2924018Z Entering 'third_party/cutlass' 2025-08-26T19:40:28.3301764Z Entering 'third_party/fbgemm' 2025-08-26T19:40:28.3678263Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:40:28.4075507Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:40:28.4460240Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:40:28.4835616Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:40:28.5222899Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:40:28.5593562Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:40:28.5984186Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:40:28.6375354Z Entering 'third_party/flash-attention' 2025-08-26T19:40:28.6758995Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:40:28.7138663Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:40:28.7535312Z Entering 'third_party/flatbuffers' 2025-08-26T19:40:28.7925503Z Entering 'third_party/fmt' 2025-08-26T19:40:28.8285768Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:40:28.8705364Z Entering 'third_party/gloo' 2025-08-26T19:40:28.9083853Z Entering 'third_party/googletest' 2025-08-26T19:40:28.9463396Z Entering 'third_party/ideep' 2025-08-26T19:40:28.9865696Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:40:29.0286127Z Entering 'third_party/ittapi' 2025-08-26T19:40:29.0668000Z Entering 'third_party/kineto' 2025-08-26T19:40:29.1017745Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:40:29.1381298Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:40:29.1766126Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:40:29.2138072Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:40:29.2514988Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:40:29.2877880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:40:29.3283652Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:40:29.3677933Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:40:29.4136847Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:40:29.4514581Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:40:29.4901308Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:40:29.5266259Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:40:29.5666817Z Entering 'third_party/kleidiai' 2025-08-26T19:40:29.6036382Z Entering 'third_party/mimalloc' 2025-08-26T19:40:29.6401120Z Entering 'third_party/nlohmann' 2025-08-26T19:40:29.6769546Z Entering 'third_party/onnx' 2025-08-26T19:40:29.7181496Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:40:29.7567591Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:40:29.7917466Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:40:29.8288498Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:40:29.8663198Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:40:29.9033825Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:40:29.9414326Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:40:29.9795614Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:40:30.0211082Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:40:30.0578287Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:40:30.0966671Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:40:30.1369155Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:40:30.1781887Z Entering 'third_party/pocketfft' 2025-08-26T19:40:30.2150956Z Entering 'third_party/protobuf' 2025-08-26T19:40:30.2513874Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:40:30.2893625Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:40:30.3289407Z Entering 'third_party/psimd' 2025-08-26T19:40:30.3663263Z Entering 'third_party/pthreadpool' 2025-08-26T19:40:30.4192250Z Entering 'third_party/pybind11' 2025-08-26T19:40:30.4562006Z Entering 'third_party/python-peachpy' 2025-08-26T19:40:30.4926257Z Entering 'third_party/sleef' 2025-08-26T19:40:30.5288875Z Entering 'third_party/tensorpipe' 2025-08-26T19:40:30.5647630Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:40:30.6015742Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:40:30.6384866Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:40:30.6757694Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:40:30.7120731Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:40:30.7618196Z [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-08-26T19:40:31.1366269Z Entering 'android/libs/fbjni' 2025-08-26T19:40:31.1738863Z Entering 'third_party/FP16' 2025-08-26T19:40:31.2110044Z Entering 'third_party/FXdiv' 2025-08-26T19:40:31.2474048Z Entering 'third_party/NNPACK' 2025-08-26T19:40:31.2838051Z Entering 'third_party/NVTX' 2025-08-26T19:40:31.3244137Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:40:31.3618995Z Entering 'third_party/XNNPACK' 2025-08-26T19:40:31.4055805Z Entering 'third_party/aiter' 2025-08-26T19:40:31.4411419Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:40:31.4813149Z Entering 'third_party/benchmark' 2025-08-26T19:40:31.5185313Z Entering 'third_party/composable_kernel' 2025-08-26T19:40:31.5564267Z Entering 'third_party/cpp-httplib' 2025-08-26T19:40:31.5937811Z Entering 'third_party/cpuinfo' 2025-08-26T19:40:31.6324610Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:40:31.6685045Z Entering 'third_party/cutlass' 2025-08-26T19:40:31.7100251Z Entering 'third_party/fbgemm' 2025-08-26T19:40:31.7459602Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:40:31.7830644Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:40:31.8212803Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:40:31.8588779Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:40:31.8961057Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:40:31.9378817Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:40:31.9985707Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:40:32.0411065Z Entering 'third_party/flash-attention' 2025-08-26T19:40:32.0805251Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:40:32.1202462Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:40:32.1626084Z Entering 'third_party/flatbuffers' 2025-08-26T19:40:32.2017990Z Entering 'third_party/fmt' 2025-08-26T19:40:32.2387093Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:40:32.2773273Z Entering 'third_party/gloo' 2025-08-26T19:40:32.3138505Z Entering 'third_party/googletest' 2025-08-26T19:40:32.3524814Z Entering 'third_party/ideep' 2025-08-26T19:40:32.3873487Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:40:32.4266318Z Entering 'third_party/ittapi' 2025-08-26T19:40:32.4654574Z Entering 'third_party/kineto' 2025-08-26T19:40:32.5010305Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:40:32.5394664Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:40:32.5811082Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:40:32.6203114Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:40:32.6571313Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:40:32.6978442Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:40:32.7370970Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:40:32.7739887Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:40:32.8109960Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:40:32.8484366Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:40:32.8940981Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:40:32.9314749Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:40:32.9710263Z Entering 'third_party/kleidiai' 2025-08-26T19:40:33.0079070Z Entering 'third_party/mimalloc' 2025-08-26T19:40:33.0463652Z Entering 'third_party/nlohmann' 2025-08-26T19:40:33.0845686Z Entering 'third_party/onnx' 2025-08-26T19:40:33.1222421Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:40:33.1609120Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:40:33.1964535Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:40:33.2338355Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:40:33.2733109Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:40:33.3101680Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:40:33.3477296Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:40:33.3850420Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:40:33.4226918Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:40:33.4576003Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:40:33.4972659Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:40:33.5362933Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:40:33.5758927Z Entering 'third_party/pocketfft' 2025-08-26T19:40:33.6145734Z Entering 'third_party/protobuf' 2025-08-26T19:40:33.6512853Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:40:33.6894060Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:40:33.7281543Z Entering 'third_party/psimd' 2025-08-26T19:40:33.7644036Z Entering 'third_party/pthreadpool' 2025-08-26T19:40:33.8020753Z Entering 'third_party/pybind11' 2025-08-26T19:40:33.8387411Z Entering 'third_party/python-peachpy' 2025-08-26T19:40:33.8758004Z Entering 'third_party/sleef' 2025-08-26T19:40:33.9114989Z Entering 'third_party/tensorpipe' 2025-08-26T19:40:33.9468602Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:40:33.9845593Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:40:34.0217808Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:40:34.0581222Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:40:34.0957369Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:40:34.1444522Z ##[endgroup] 2025-08-26T19:40:34.1712393Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-08-26T19:40:34.1912332Z 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:40:34.2202071Z Prepare all required actions 2025-08-26T19:40:34.2266607Z ##[group]Run ./.github/actions/setup-win 2025-08-26T19:40:34.2266874Z with: 2025-08-26T19:40:34.2267067Z cuda-version: 12.6 2025-08-26T19:40:34.2267258Z env: 2025-08-26T19:40:34.2267439Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:34.2267654Z ##[endgroup] 2025-08-26T19:40:34.2341799Z ##[group]Run set -euo pipefail 2025-08-26T19:40:34.2342111Z set -euo pipefail 2025-08-26T19:40:34.2342494Z function get_ec2_metadata() { 2025-08-26T19:40:34.2342823Z  # Pulled from instance metadata endpoint for EC2 2025-08-26T19:40:34.2343422Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-08-26T19:40:34.2343950Z  category=$1 2025-08-26T19:40:34.2344819Z  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-08-26T19:40:34.2345667Z } 2025-08-26T19:40:34.2345891Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-08-26T19:40:34.2346282Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-08-26T19:40:34.2346713Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-08-26T19:40:34.2347092Z echo "system info $(uname -a)" 2025-08-26T19:40:34.2365803Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:40:34.2366221Z env: 2025-08-26T19:40:34.2366405Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:34.2366631Z ##[endgroup] 2025-08-26T19:40:34.3003018Z ami-id: ami-0eb22074cad29e297 2025-08-26T19:40:34.3450896Z instance-id: i-0a45ba5f94c98ec01 2025-08-26T19:40:34.3845271Z instance-type: c5d.4xlarge 2025-08-26T19:40:34.4023032Z system info MSYS_NT-10.0-17763 EC2AMAZ-TE6SPGV 3.6.3-7674c51e.x86_64 2025-07-01 09:13 UTC x86_64 Msys 2025-08-26T19:40:34.4113032Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-26T19:40:34.4114032Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-26T19:40:34.4130281Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T19:40:34.4130731Z env: 2025-08-26T19:40:34.4130911Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:34.4131139Z ##[endgroup] 2025-08-26T19:40:34.7653067Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T19:40:34.7713061Z Finished 2025-08-26T19:40:34.8011540Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-08-26T19:40:34.8012185Z # Windows conda is baked into the AMI at this location 2025-08-26T19:40:34.8012589Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-08-26T19:40:34.8012910Z  2025-08-26T19:40:34.8013087Z { 2025-08-26T19:40:34.8013350Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-08-26T19:40:34.8013738Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-08-26T19:40:34.8014070Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-08-26T19:40:34.8014369Z } >> "${GITHUB_ENV}" 2025-08-26T19:40:34.8032978Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:40:34.8033426Z env: 2025-08-26T19:40:34.8033613Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:34.8033856Z ##[endgroup] 2025-08-26T19:40:34.8310268Z ##[group]Run set +e 2025-08-26T19:40:34.8310521Z set +e 2025-08-26T19:40:34.8310760Z set -x 2025-08-26T19:40:34.8310948Z  2025-08-26T19:40:34.8311178Z PYTHON3=$(${CONDA_RUN} which python3) 2025-08-26T19:40:34.8311475Z EXIT_CODE=$? 2025-08-26T19:40:34.8311689Z  2025-08-26T19:40:34.8313225Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-26T19:40:34.8313645Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-08-26T19:40:34.8314033Z  2025-08-26T19:40:34.8314254Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-08-26T19:40:34.8314604Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-26T19:40:34.8314904Z else 2025-08-26T19:40:34.8315375Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-08-26T19:40:34.8316092Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-08-26T19:40:34.8316771Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-08-26T19:40:34.8317358Z  # needed. In both cases, Python binary is just called python 2025-08-26T19:40:34.8317840Z  PYTHON=$(${CONDA_RUN} which python) 2025-08-26T19:40:34.8318208Z  EXIT_CODE=$? 2025-08-26T19:40:34.8318426Z  2025-08-26T19:40:34.8318637Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-26T19:40:34.8319096Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-08-26T19:40:34.8319513Z  2025-08-26T19:40:34.8319784Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-08-26T19:40:34.8320385Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-08-26T19:40:34.8320872Z  # here pointing to Python 2025-08-26T19:40:34.8321181Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-08-26T19:40:34.8321454Z  2025-08-26T19:40:34.8321689Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-08-26T19:40:34.8322018Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-26T19:40:34.8322322Z  else 2025-08-26T19:40:34.8322570Z  echo "Found no Python using ${CONDA_RUN}" 2025-08-26T19:40:34.8322884Z  fi 2025-08-26T19:40:34.8323064Z fi 2025-08-26T19:40:34.8341190Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:40:34.8341616Z env: 2025-08-26T19:40:34.8341823Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:34.8342199Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:40:34.8342735Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:40:34.8343207Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:40:34.8343576Z ##[endgroup] 2025-08-26T19:40:34.8615898Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-08-26T19:40:42.8891376Z 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-08-26T19:40:42.8918013Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-08-26T19:40:42.9725519Z + PYTHON3= 2025-08-26T19:40:42.9725753Z + EXIT_CODE=1 2025-08-26T19:40:42.9726055Z + [[ 1 == \0 ]] 2025-08-26T19:40:42.9813942Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-08-26T19:40:44.6695468Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-08-26T19:40:44.6695807Z + EXIT_CODE=0 2025-08-26T19:40:44.6696006Z + [[ 0 == \0 ]] 2025-08-26T19:40:44.6696442Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-08-26T19:40:44.6697987Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-08-26T19:40:44.6809968Z ++ echo /c/Jenkins/Miniconda3/python 2025-08-26T19:40:44.6862570Z ++ sed s/python/python3/ 2025-08-26T19:40:44.6931266Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-08-26T19:40:44.6931714Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-08-26T19:40:44.7111105Z ++ dirname /c/Jenkins/Miniconda3/python 2025-08-26T19:40:44.7178827Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-08-26T19:40:44.7179156Z + echo /c/Jenkins/Miniconda3 2025-08-26T19:40:44.7298617Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-26T19:40:44.7299244Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-26T19:40:44.7299698Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-08-26T19:40:44.7321417Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:40:44.7321887Z env: 2025-08-26T19:40:44.7322074Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:44.7322465Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:40:44.7322988Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:40:44.7323475Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:40:44.7323836Z ##[endgroup] 2025-08-26T19:40:44.8301730Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-26T19:40:44.8302700Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-26T19:40:44.8303509Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-08-26T19:40:44.8303981Z # that it doesn't interfere 2025-08-26T19:40:44.8304459Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-08-26T19:40:44.8320478Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T19:40:44.8320944Z env: 2025-08-26T19:40:44.8321131Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:44.8321518Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:40:44.8322041Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:40:44.8322596Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:40:44.8323063Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:40:44.8335113Z ##[endgroup] 2025-08-26T19:40:45.1815839Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T19:40:45.1868670Z Finished 2025-08-26T19:40:45.9812190Z ##[group]Run choco install handle -y 2025-08-26T19:40:45.9812672Z choco install handle -y 2025-08-26T19:40:45.9813131Z handle C:\actions-runner\_work\ 2025-08-26T19:40:45.9830244Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T19:40:45.9830690Z env: 2025-08-26T19:40:45.9830891Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:45.9831257Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:40:45.9831783Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:40:45.9832255Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:40:45.9832641Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:40:45.9832930Z ##[endgroup] 2025-08-26T19:40:46.3225949Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T19:40:46.3295805Z Finished 2025-08-26T19:40:48.7597814Z Chocolatey v2.5.0 2025-08-26T19:40:48.9224393Z Installing the following packages: 2025-08-26T19:40:48.9229089Z handle 2025-08-26T19:40:48.9232999Z By installing, you accept licenses for the packages. 2025-08-26T19:40:50.3943789Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-08-26T19:40:50.6345518Z 2025-08-26T19:40:50.6345990Z Progress: Downloading Handle 5.0... 15% 2025-08-26T19:40:50.6346332Z Progress: Downloading Handle 5.0... 45% 2025-08-26T19:40:50.6346640Z Progress: Downloading Handle 5.0... 75% 2025-08-26T19:40:50.6346932Z Progress: Downloading Handle 5.0... 100% 2025-08-26T19:40:50.8511167Z 2025-08-26T19:40:50.8511522Z handle v5.0.0 [Approved] 2025-08-26T19:40:50.8710435Z handle package files install completed. Performing other installation steps. 2025-08-26T19:40:51.8832814Z Downloading Handle 2025-08-26T19:40:51.8833208Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-08-26T19:40:51.9740020Z 2025-08-26T19:40:51.9757003Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-08-26T19:40:51.9771053Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-08-26T19:40:51.9786197Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-08-26T19:40:51.9804108Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-08-26T19:40:51.9807194Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-08-26T19:40:51.9813301Z Download of Handle.zip (729.82 KB) completed. 2025-08-26T19:40:55.0985661Z Hashes match. 2025-08-26T19:40:55.1241456Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-08-26T19:40:55.4723324Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-08-26T19:40:55.4771537Z HKEY_CURRENT_USER\Software\Sysinternals 2025-08-26T19:40:55.4800898Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-08-26T19:40:55.8606362Z ShimGen has successfully created a shim for handle.exe 2025-08-26T19:40:56.0566374Z ShimGen has successfully created a shim for handle64.exe 2025-08-26T19:40:56.2265704Z ShimGen has successfully created a shim for handle64a.exe 2025-08-26T19:40:56.2520863Z The install of handle was successful. 2025-08-26T19:40:56.2524079Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-08-26T19:40:56.2656041Z 2025-08-26T19:40:56.2656251Z Chocolatey installed 1/1 packages. 2025-08-26T19:40:56.2656706Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-08-26T19:40:56.3765844Z 2025-08-26T19:40:56.3766238Z Nthandle v5.0 - Handle viewer 2025-08-26T19:40:56.3766563Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-26T19:40:56.3766871Z Sysinternals - www.sysinternals.com 2025-08-26T19:40:56.3767066Z 2025-08-26T19:40:56.5310601Z powershell.exe pid: 5788 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T19:40:56.5311470Z handle.exe pid: 2896 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T19:40:56.5312024Z handle.exe pid: 5528 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T19:40:56.5312584Z handle64.exe pid: 3620 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T19:40:56.5646387Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-08-26T19:40:56.5646786Z python3 .github/scripts/parse_ref.py 2025-08-26T19:40:56.5666558Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:40:56.5666980Z env: 2025-08-26T19:40:56.5667174Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:56.5667541Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:40:56.5668122Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:40:56.5668677Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:40:56.5669090Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:40:56.5669392Z ##[endgroup] 2025-08-26T19:40:56.6305746Z Setting output branch=main 2025-08-26T19:40:56.6450591Z Prepare all required actions 2025-08-26T19:40:56.6485158Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-08-26T19:40:56.6485493Z with: 2025-08-26T19:40:56.6486100Z github-token: *** 2025-08-26T19:40:56.6486321Z env: 2025-08-26T19:40:56.6486510Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:56.6486906Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:40:56.6487446Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:40:56.6487920Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:40:56.6488337Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:40:56.6488621Z ##[endgroup] 2025-08-26T19:40:56.6554922Z ##[group]Run set -eux 2025-08-26T19:40:56.6555171Z set -eux 2025-08-26T19:40:56.6555593Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-08-26T19:40:56.6574855Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:40:56.6575296Z env: 2025-08-26T19:40:56.6575499Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:56.6575880Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:40:56.6576486Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:40:56.6577020Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:40:56.6577409Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:40:56.6577880Z GITHUB_TOKEN: *** 2025-08-26T19:40:56.6578096Z ##[endgroup] 2025-08-26T19:40:56.6803755Z + python3 .github/scripts/get_workflow_job_id.py 17248463647 i-0a45ba5f94c98ec01 2025-08-26T19:40:57.2930264Z Setting output job-id=48944202603 2025-08-26T19:40:57.2930664Z Setting output job-name=win-vs2022-cuda12.6-py3 / build 2025-08-26T19:40:57.3241347Z Prepare all required actions 2025-08-26T19:40:57.3241727Z Getting action download info 2025-08-26T19:40:57.5370438Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-26T19:40:57.8064914Z ##[group]Run ./.github/actions/filter-test-configs 2025-08-26T19:40:57.8065234Z with: 2025-08-26T19:40:57.8065600Z github-token: *** 2025-08-26T19:40:57.8065838Z job-name: win-vs2022-cuda12.6-py3 / build 2025-08-26T19:40:57.8066181Z env: 2025-08-26T19:40:57.8066355Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:57.8066767Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:40:57.8067276Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:40:57.8067754Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:40:57.8068144Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:40:57.8068585Z ##[endgroup] 2025-08-26T19:40:57.8165384Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-26T19:40:57.8165661Z with: 2025-08-26T19:40:57.8165832Z shell: bash 2025-08-26T19:40:57.8166010Z timeout_minutes: 10 2025-08-26T19:40:57.8166215Z max_attempts: 5 2025-08-26T19:40:57.8166406Z retry_wait_seconds: 30 2025-08-26T19:40:57.8167136Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-26T19:40:57.8167915Z polling_interval_seconds: 1 2025-08-26T19:40:57.8168152Z warning_on_retry: true 2025-08-26T19:40:57.8168382Z continue_on_error: false 2025-08-26T19:40:57.8168664Z env: 2025-08-26T19:40:57.8169010Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:40:57.8169611Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:40:57.8170317Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:40:57.8170812Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:40:57.8171201Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:40:57.8171682Z GITHUB_TOKEN: *** 2025-08-26T19:40:57.8171881Z ##[endgroup] 2025-08-26T19:40:57.9368774Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-26T19:41:01.7138586Z Collecting requests==2.27.1 2025-08-26T19:41:01.9275203Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-08-26T19:41:01.9346167Z Requirement already satisfied: pyyaml==6.0.2 in c:\jenkins\miniconda3\lib\site-packages (6.0.2) 2025-08-26T19:41:01.9475328Z 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-08-26T19:41:01.9482424Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.8.3) 2025-08-26T19:41:01.9494552Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-08-26T19:41:01.9508604Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-08-26T19:41:02.0629933Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-08-26T19:41:02.1637105Z ---------------------------------------- 63.1/63.1 kB 568.7 kB/s eta 0:00:00 2025-08-26T19:41:03.5346241Z Installing collected packages: requests 2025-08-26T19:41:03.5346751Z Attempting uninstall: requests 2025-08-26T19:41:03.5358096Z Found existing installation: requests 2.32.4 2025-08-26T19:41:03.5431835Z Uninstalling requests-2.32.4: 2025-08-26T19:41:03.5455521Z Successfully uninstalled requests-2.32.4 2025-08-26T19:41:03.6363438Z Successfully installed requests-2.27.1 2025-08-26T19:41:04.9477578Z Command completed after 1 attempt(s). 2025-08-26T19:41:04.9642936Z ##[group]Run set -x 2025-08-26T19:41:04.9643185Z set -x 2025-08-26T19:41:04.9645046Z  2025-08-26T19:41:04.9645434Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-26T19:41:04.9645891Z # in runner workspace 2025-08-26T19:41:04.9646308Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-08-26T19:41:04.9665483Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:41:04.9665959Z env: 2025-08-26T19:41:04.9666165Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:41:04.9666626Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:41:04.9667201Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:41:04.9667744Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:41:04.9668214Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:41:04.9668550Z ##[endgroup] 2025-08-26T19:41:04.9861546Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-08-26T19:41:05.0283772Z Setting output branch=main 2025-08-26T19:41:05.0443334Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-26T19:41:05.0443687Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-26T19:41:05.0443998Z echo "Job name: ${JOB_NAME}" 2025-08-26T19:41:05.0444274Z  2025-08-26T19:41:05.0444623Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-26T19:41:05.0445090Z # in runner workspace 2025-08-26T19:41:05.0445478Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-08-26T19:41:05.0445937Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-08-26T19:41:05.0446234Z  --job-name "${JOB_NAME}" \ 2025-08-26T19:41:05.0446519Z  --test-matrix "" \ 2025-08-26T19:41:05.0446797Z  --selected-test-configs "" \ 2025-08-26T19:41:05.0447108Z  --pr-number "${PR_NUMBER}" \ 2025-08-26T19:41:05.0447405Z  --tag "${TAG}" \ 2025-08-26T19:41:05.0447656Z  --event-name "${EVENT_NAME}" \ 2025-08-26T19:41:05.0447951Z  --schedule "${SCHEDULE}" \ 2025-08-26T19:41:05.0448228Z  --branch "${HEAD_BRANCH}" 2025-08-26T19:41:05.0466566Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:41:05.0466997Z env: 2025-08-26T19:41:05.0467197Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:41:05.0467580Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:41:05.0468125Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:41:05.0468616Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:41:05.0469008Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:41:05.0469557Z GITHUB_TOKEN: *** 2025-08-26T19:41:05.0469793Z JOB_NAME: win-vs2022-cuda12.6-py3 / build 2025-08-26T19:41:05.0470104Z PR_NUMBER: 2025-08-26T19:41:05.0470300Z TAG: 2025-08-26T19:41:05.0470487Z EVENT_NAME: push 2025-08-26T19:41:05.0470692Z SCHEDULE: 2025-08-26T19:41:05.0470883Z HEAD_BRANCH: main 2025-08-26T19:41:05.0471110Z ##[endgroup] 2025-08-26T19:41:05.0658163Z Workflow: trunk 2025-08-26T19:41:05.0658437Z Job name: win-vs2022-cuda12.6-py3 / build 2025-08-26T19:41:05.4171584Z C:\actions-runner\_work\pytorch\pytorch\.github\scripts\filter_test_configs.py:565: UserWarning: Invalid test matrix input '', exiting 2025-08-26T19:41:05.4172386Z warnings.warn(f"Invalid test matrix input '{args.test_matrix}', exiting") 2025-08-26T19:41:05.4174598Z Setting output is-test-matrix-empty=True 2025-08-26T19:41:05.4393162Z ##[group]Run echo "Filtered matrix:" 2025-08-26T19:41:05.4393458Z echo "Filtered matrix:" 2025-08-26T19:41:05.4393706Z echo "" 2025-08-26T19:41:05.4393927Z  2025-08-26T19:41:05.4394198Z echo 2025-08-26T19:41:05.4395350Z echo "Is the current job unstable? " 2025-08-26T19:41:05.4395665Z  2025-08-26T19:41:05.4395836Z echo 2025-08-26T19:41:05.4396036Z echo "Is keep-going label set? " 2025-08-26T19:41:05.4396308Z  2025-08-26T19:41:05.4396464Z echo 2025-08-26T19:41:05.4396660Z echo "Reenabled issues? " 2025-08-26T19:41:05.4417135Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:41:05.4417564Z env: 2025-08-26T19:41:05.4417746Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:41:05.4418143Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:41:05.4419050Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:41:05.4419784Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:41:05.4420196Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:41:05.4420482Z ##[endgroup] 2025-08-26T19:41:05.4633113Z Filtered matrix: 2025-08-26T19:41:05.4633312Z 2025-08-26T19:41:05.4633318Z 2025-08-26T19:41:05.4633411Z Is the current job unstable? 2025-08-26T19:41:05.4633589Z 2025-08-26T19:41:05.4633692Z Is keep-going label set? 2025-08-26T19:41:05.4633864Z 2025-08-26T19:41:05.4633986Z Reenabled issues? 2025-08-26T19:41:05.4754307Z Prepare all required actions 2025-08-26T19:41:05.4754722Z Getting action download info 2025-08-26T19:41:05.6012852Z ##[group]Run ./.github/actions/pytest-cache-download 2025-08-26T19:41:05.6013165Z with: 2025-08-26T19:41:05.6013355Z cache_dir: .pytest_cache 2025-08-26T19:41:05.6013626Z job_identifier: trunk_win-vs2022-cuda12.6-py3 2025-08-26T19:41:05.6013928Z s3_bucket: gha-artifacts 2025-08-26T19:41:05.6014190Z env: 2025-08-26T19:41:05.6014383Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:41:05.6014743Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:41:05.6015275Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:41:05.6015775Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:41:05.6016166Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:41:05.6016461Z ##[endgroup] 2025-08-26T19:41:05.6108149Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-26T19:41:05.6108652Z with: 2025-08-26T19:41:05.6108938Z shell: bash 2025-08-26T19:41:05.6109214Z timeout_minutes: 5 2025-08-26T19:41:05.6109424Z max_attempts: 5 2025-08-26T19:41:05.6109806Z retry_wait_seconds: 30 2025-08-26T19:41:05.6110151Z command: set -eu python3 -m pip install boto3==1.35.42 2025-08-26T19:41:05.6110494Z polling_interval_seconds: 1 2025-08-26T19:41:05.6110738Z warning_on_retry: true 2025-08-26T19:41:05.6110955Z continue_on_error: false 2025-08-26T19:41:05.6111179Z env: 2025-08-26T19:41:05.6111352Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:41:05.6111720Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:41:05.6112249Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:41:05.6112721Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:41:05.6113115Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:41:05.6113396Z ##[endgroup] 2025-08-26T19:41:07.1217914Z Collecting boto3==1.35.42 2025-08-26T19:41:07.3204224Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-08-26T19:41:08.0491899Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-08-26T19:41:08.0542268Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-08-26T19:41:08.0613291Z 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-08-26T19:41:08.0866636Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-08-26T19:41:08.0913168Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-08-26T19:41:08.1039302Z 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-08-26T19:41:08.1053452Z 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-08-26T19:41:08.3334076Z 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-08-26T19:41:08.3571945Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-08-26T19:41:08.4549141Z ---------------------------------------- 139.2/139.2 kB 2.0 MB/s eta 0:00:00 2025-08-26T19:41:08.4590193Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-08-26T19:41:08.5671092Z ---------------------------------------- 13.3/13.3 MB 129.4 MB/s eta 0:00:00 2025-08-26T19:41:08.5716893Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-08-26T19:41:08.5799425Z ---------------------------------------- 83.2/83.2 kB 4.9 MB/s eta 0:00:00 2025-08-26T19:41:09.4138811Z Installing collected packages: botocore, s3transfer, boto3 2025-08-26T19:41:09.4139751Z Attempting uninstall: botocore 2025-08-26T19:41:09.4149873Z Found existing installation: botocore 1.37.10 2025-08-26T19:41:09.6540448Z Uninstalling botocore-1.37.10: 2025-08-26T19:41:09.7333509Z Successfully uninstalled botocore-1.37.10 2025-08-26T19:41:12.8194103Z Attempting uninstall: s3transfer 2025-08-26T19:41:12.8204464Z Found existing installation: s3transfer 0.11.2 2025-08-26T19:41:12.8816249Z Uninstalling s3transfer-0.11.2: 2025-08-26T19:41:12.8838190Z Successfully uninstalled s3transfer-0.11.2 2025-08-26T19:41:12.9618894Z Attempting uninstall: boto3 2025-08-26T19:41:12.9626830Z Found existing installation: boto3 1.37.10 2025-08-26T19:41:12.9800519Z Uninstalling boto3-1.37.10: 2025-08-26T19:41:12.9851972Z Successfully uninstalled boto3-1.37.10 2025-08-26T19:41:13.1463556Z Successfully installed boto3-1.35.42 botocore-1.35.99 s3transfer-0.10.4 2025-08-26T19:41:13.7382199Z Command completed after 1 attempt(s). 2025-08-26T19:41:13.7529780Z ##[group]Run python3 .github/scripts/pytest_cache.py \ 2025-08-26T19:41:13.7530199Z python3 .github/scripts/pytest_cache.py \ 2025-08-26T19:41:13.7530513Z  --download \ 2025-08-26T19:41:13.7530794Z  --cache_dir $GITHUB_WORKSPACE/$CACHE_DIR \ 2025-08-26T19:41:13.7531126Z  --pr_identifier $GITHUB_REF \ 2025-08-26T19:41:13.7531440Z  --job_identifier $JOB_IDENTIFIER \ 2025-08-26T19:41:13.7531739Z  --temp_dir $RUNNER_TEMP \ 2025-08-26T19:41:13.7532011Z  --repo $REPO \ 2025-08-26T19:41:13.7532241Z  --bucket $BUCKET \ 2025-08-26T19:41:13.7551198Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:41:13.7551633Z env: 2025-08-26T19:41:13.7551816Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:41:13.7552212Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:41:13.7552722Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:41:13.7553199Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:41:13.7553615Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:41:13.7553907Z CACHE_DIR: .pytest_cache 2025-08-26T19:41:13.7554180Z JOB_IDENTIFIER: trunk_win-vs2022-cuda12.6-py3 2025-08-26T19:41:13.7554487Z REPO: pytorch/pytorch 2025-08-26T19:41:13.7554706Z BUCKET: gha-artifacts 2025-08-26T19:41:13.7554905Z ##[endgroup] 2025-08-26T19:41:14.5969699Z PR identifier for `refs/heads/main` is `96e092540d6b3c4076e3d2bc6f1f9013` 2025-08-26T19:41:14.5971287Z 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-08-26T19:41:14.5973237Z There were no files matching the prefix `pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cuda12_6-py3` in bucket `gha-artifacts` 2025-08-26T19:41:14.6592799Z ##[group]Run .ci/pytorch/win-build.sh 2025-08-26T19:41:14.6593128Z .ci/pytorch/win-build.sh 2025-08-26T19:41:14.6612195Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T19:41:14.6612631Z env: 2025-08-26T19:41:14.6612811Z GIT_DEFAULT_BRANCH: main 2025-08-26T19:41:14.6613196Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:41:14.6613708Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:41:14.6614241Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:41:14.6614684Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:41:14.6615195Z PYTORCH_FINAL_PACKAGE_DIR: /c/17248463647/build-results/ 2025-08-26T19:41:14.6615538Z BRANCH: main 2025-08-26T19:41:14.6615757Z BUILD_ENVIRONMENT: win-vs2022-cuda12.6-py3 2025-08-26T19:41:14.6616043Z BUILD_WHEEL: 1 2025-08-26T19:41:14.6616221Z MAX_JOBS: 8 2025-08-26T19:41:14.6616439Z CUDA_VERSION: 12.6 2025-08-26T19:41:14.6616643Z PYTHON_VERSION: 3.9 2025-08-26T19:41:14.6616881Z SCCACHE_BUCKET: ossci-compiler-cache 2025-08-26T19:41:14.6617159Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:41:14.6617419Z SCCACHE_REGION: us-east-1 2025-08-26T19:41:14.6617643Z VC_PRODUCT: BuildTools 2025-08-26T19:41:14.6617857Z VC_VERSION: 2025-08-26T19:41:14.6618029Z VC_YEAR: 2022 2025-08-26T19:41:14.6618353Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-26T19:41:14.6618759Z AWS_DEFAULT_REGION: us-east-1 2025-08-26T19:41:14.6618988Z PR_NUMBER: 2025-08-26T19:41:14.6619211Z SHA1: 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:41:14.6619487Z DEBUG: 0 2025-08-26T19:41:14.6619706Z TORCH_CUDA_ARCH_LIST: 8.6 2025-08-26T19:41:14.6619928Z USE_CUDA: 1 2025-08-26T19:41:14.6620141Z USE_XPU: 0 2025-08-26T19:41:14.6620315Z XPU_VERSION: 2025-08-26T19:41:14.6620515Z OUR_GITHUB_JOB_ID: 48944202603 2025-08-26T19:41:14.6620750Z ##[endgroup] 2025-08-26T19:41:14.7296729Z ++ [[ win-vs2022-cuda12.6-py3 == *rocm* ]] 2025-08-26T19:41:14.7297084Z ++ BUILD_TEST_LIBTORCH=0 2025-08-26T19:41:14.7297470Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common-build.sh 2025-08-26T19:41:14.7299667Z ++ [[ win-vs2022-cuda12.6-py3 != *win-* ]] 2025-08-26T19:41:14.7300216Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T19:41:14.7300768Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T19:41:14.7367431Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T19:41:14.7460211Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-08-26T19:41:14.7460646Z + export TMP_DIR_WIN 2025-08-26T19:41:14.7460955Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/17248463647/build-results/ 2025-08-26T19:41:14.7461374Z + PYTORCH_FINAL_PACKAGE_DIR=/c/17248463647/build-results/ 2025-08-26T19:41:14.7461739Z + [[ -n /c/17248463647/build-results/ ]] 2025-08-26T19:41:14.7462021Z + mkdir -p /c/17248463647/build-results/ 2025-08-26T19:41:14.7591368Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T19:41:14.7592098Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T19:41:14.7592555Z + set +ex 2025-08-26T19:41:15.7324191Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-08-26T19:41:15.7472552Z 2025-08-26T19:41:15.7473205Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" (set BUILD_TYPE=debug ) ELSE (set BUILD_TYPE=release ) 2025-08-26T19:41:15.7476403Z 2025-08-26T19:41:15.7480829Z 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-08-26T19:41:15.7483421Z 2025-08-26T19:41:15.7483951Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T19:41:15.7484594Z 2025-08-26T19:41:15.7485137Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_magma.bat 2025-08-26T19:41:15.7494629Z 2025-08-26T19:41:15.7495040Z C:\actions-runner\_work\pytorch\pytorch>if "12.6" == "cpu" ( 2025-08-26T19:41:15.7495458Z echo skip magma installation for cpu builds 2025-08-26T19:41:15.7495782Z exit /b 0 2025-08-26T19:41:15.7495954Z ) 2025-08-26T19:41:15.7496433Z 2025-08-26T19:41:15.7496798Z C:\actions-runner\_work\pytorch\pytorch>rem remove dot in cuda_version, fox example 11.1 to 111 2025-08-26T19:41:15.7498214Z 2025-08-26T19:41:15.7498561Z C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" (exit /b 0 ) 2025-08-26T19:41:15.7500314Z 2025-08-26T19:41:15.7500726Z C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-08-26T19:41:15.7501223Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-08-26T19:41:15.7501601Z exit /b 1 2025-08-26T19:41:15.7501785Z ) 2025-08-26T19:41:15.7502186Z 2025-08-26T19:41:15.7502403Z C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=126 2025-08-26T19:41:15.7504899Z 2025-08-26T19:41:15.7505256Z C:\actions-runner\_work\pytorch\pytorch>set CUDA_SUFFIX=cuda126 2025-08-26T19:41:15.7507813Z 2025-08-26T19:41:15.7508172Z C:\actions-runner\_work\pytorch\pytorch>if "cuda126" == "" ( 2025-08-26T19:41:15.7508686Z echo unknown CUDA version, please set `CUDA_VERSION` higher than 10.2 2025-08-26T19:41:15.7509076Z exit /b 1 2025-08-26T19:41:15.7509252Z ) 2025-08-26T19:41:15.7510925Z 2025-08-26T19:41:15.7511138Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-08-26T19:41:15.7512868Z 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-08-26T19:41:15.7514502Z if errorlevel 1 exit /b 2025-08-26T19:41:15.7514746Z if not errorlevel 0 exit /b 2025-08-26T19:41:15.7515436Z 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-08-26T19:41:15.7516114Z if errorlevel 1 exit /b 2025-08-26T19:41:15.7516366Z if not errorlevel 0 exit /b 2025-08-26T19:41:15.7516589Z ) 2025-08-26T19:41:17.8792507Z 2025-08-26T19:41:17.8792985Z 7-Zip 25.01 (x64) : Copyright (c) 1999-2025 Igor Pavlov : 2025-08-03 2025-08-26T19:41:17.8793292Z 2025-08-26T19:41:17.8793388Z Scanning the drive for archives: 2025-08-26T19:41:17.8793667Z 1 file, 62070579 bytes (60 MiB) 2025-08-26T19:41:17.8793833Z 2025-08-26T19:41:17.8794170Z Extracting archive: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-08-26T19:41:19.1331661Z -- 2025-08-26T19:41:19.1332196Z Path = C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-08-26T19:41:19.1332711Z Type = 7z 2025-08-26T19:41:19.1332897Z Physical Size = 62070579 2025-08-26T19:41:19.1333132Z Headers Size = 931 2025-08-26T19:41:19.1333372Z Method = LZMA2:24 2025-08-26T19:41:19.1333560Z Solid = + 2025-08-26T19:41:19.1334556Z Blocks = 1 2025-08-26T19:41:19.1334672Z 2025-08-26T19:41:19.1334760Z Everything is Ok 2025-08-26T19:41:19.1334891Z 2025-08-26T19:41:19.1334966Z Folders: 2 2025-08-26T19:41:19.1335136Z Files: 68 2025-08-26T19:41:19.1335319Z Size: 144236024 2025-08-26T19:41:19.1335527Z Compressed: 62070579 2025-08-26T19:41:19.1355728Z 2025-08-26T19:41:19.1356385Z C:\actions-runner\_work\pytorch\pytorch>set MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-08-26T19:41:19.1360549Z 2025-08-26T19:41:19.1361174Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-08-26T19:41:19.1361484Z 2025-08-26T19:41:19.1361997Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-08-26T19:41:19.1362699Z 2025-08-26T19:41:19.1363483Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_sccache.bat 2025-08-26T19:41:19.1373733Z 2025-08-26T19:41:19.1374257Z C:\actions-runner\_work\pytorch\pytorch>mkdir C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin 2025-08-26T19:41:19.1378884Z 2025-08-26T19:41:19.1379132Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-08-26T19:41:19.1379622Z IF EXIST C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ( 2025-08-26T19:41:19.1380105Z taskkill /im sccache.exe /f /t || ver 1>nul 2025-08-26T19:41:19.1380593Z del C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe || ver 1>nul 2025-08-26T19:41:19.1381050Z ) 2025-08-26T19:41:19.1382316Z 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-08-26T19:41:19.1383768Z ) 2025-08-26T19:41:20.3377285Z Completed 256.0 KiB/18.8 MiB (814.7 KiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3383773Z Completed 512.0 KiB/18.8 MiB (1.6 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3390982Z Completed 768.0 KiB/18.8 MiB (2.4 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3398741Z Completed 1.0 MiB/18.8 MiB (3.2 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3405233Z Completed 1.2 MiB/18.8 MiB (3.9 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3415790Z Completed 1.5 MiB/18.8 MiB (4.7 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3436534Z Completed 1.8 MiB/18.8 MiB (5.5 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3442238Z Completed 2.0 MiB/18.8 MiB (6.2 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3446169Z Completed 2.2 MiB/18.8 MiB (7.0 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3452012Z Completed 2.5 MiB/18.8 MiB (7.8 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3459838Z Completed 2.8 MiB/18.8 MiB (8.5 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3497269Z Completed 3.0 MiB/18.8 MiB (9.3 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3512040Z Completed 3.2 MiB/18.8 MiB (9.9 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3513685Z Completed 3.5 MiB/18.8 MiB (10.6 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3518837Z Completed 3.8 MiB/18.8 MiB (11.4 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3547053Z Completed 4.0 MiB/18.8 MiB (12.1 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3557135Z Completed 4.2 MiB/18.8 MiB (12.8 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3563265Z Completed 4.5 MiB/18.8 MiB (13.5 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3570565Z Completed 4.8 MiB/18.8 MiB (14.2 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3574870Z Completed 5.0 MiB/18.8 MiB (14.9 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3584489Z Completed 5.2 MiB/18.8 MiB (15.7 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3592050Z Completed 5.5 MiB/18.8 MiB (16.4 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3599104Z Completed 5.8 MiB/18.8 MiB (17.1 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3604647Z Completed 6.0 MiB/18.8 MiB (17.8 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3626710Z Completed 6.2 MiB/18.8 MiB (18.5 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3646129Z Completed 6.5 MiB/18.8 MiB (19.1 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3670493Z Completed 6.8 MiB/18.8 MiB (19.7 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3687205Z Completed 7.0 MiB/18.8 MiB (20.3 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3693759Z Completed 7.2 MiB/18.8 MiB (20.9 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3700398Z Completed 7.5 MiB/18.8 MiB (21.6 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3703476Z Completed 7.8 MiB/18.8 MiB (22.3 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3706296Z Completed 8.0 MiB/18.8 MiB (23.0 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3712176Z Completed 8.2 MiB/18.8 MiB (23.7 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3717709Z Completed 8.5 MiB/18.8 MiB (24.4 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3720903Z Completed 8.8 MiB/18.8 MiB (25.0 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3724939Z Completed 8.8 MiB/18.8 MiB (25.2 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3735351Z Completed 9.1 MiB/18.8 MiB (25.9 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3749378Z Completed 9.3 MiB/18.8 MiB (26.5 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3766347Z Completed 9.6 MiB/18.8 MiB (27.1 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3775742Z Completed 9.8 MiB/18.8 MiB (27.7 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3795515Z Completed 10.1 MiB/18.8 MiB (28.3 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3802504Z Completed 10.3 MiB/18.8 MiB (28.9 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3815906Z Completed 10.6 MiB/18.8 MiB (29.5 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3829908Z Completed 10.8 MiB/18.8 MiB (30.1 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3844243Z Completed 11.1 MiB/18.8 MiB (30.7 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3856648Z Completed 11.3 MiB/18.8 MiB (31.3 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3864818Z Completed 11.6 MiB/18.8 MiB (31.8 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3876052Z Completed 11.8 MiB/18.8 MiB (32.5 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3883031Z Completed 12.1 MiB/18.8 MiB (33.0 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3896173Z Completed 12.3 MiB/18.8 MiB (33.7 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3910638Z Completed 12.6 MiB/18.8 MiB (34.2 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3916947Z Completed 12.8 MiB/18.8 MiB (34.8 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3929245Z Completed 13.1 MiB/18.8 MiB (35.4 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3935460Z Completed 13.3 MiB/18.8 MiB (35.9 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3941653Z Completed 13.6 MiB/18.8 MiB (36.6 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3958269Z Completed 13.8 MiB/18.8 MiB (37.2 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3964548Z Completed 14.1 MiB/18.8 MiB (37.7 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3969551Z Completed 14.3 MiB/18.8 MiB (38.3 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3980012Z Completed 14.6 MiB/18.8 MiB (38.9 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.3990475Z Completed 14.8 MiB/18.8 MiB (39.5 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4001884Z Completed 15.1 MiB/18.8 MiB (40.0 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4004439Z Completed 15.3 MiB/18.8 MiB (40.5 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4013491Z Completed 15.6 MiB/18.8 MiB (41.2 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4024885Z Completed 15.8 MiB/18.8 MiB (41.7 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4035648Z Completed 16.1 MiB/18.8 MiB (42.3 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4044321Z Completed 16.3 MiB/18.8 MiB (42.8 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4053510Z Completed 16.6 MiB/18.8 MiB (43.4 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4060233Z Completed 16.8 MiB/18.8 MiB (43.9 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4067266Z Completed 17.1 MiB/18.8 MiB (44.5 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4076707Z Completed 17.3 MiB/18.8 MiB (45.1 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4083533Z Completed 17.6 MiB/18.8 MiB (45.6 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4090321Z Completed 17.8 MiB/18.8 MiB (46.2 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4096710Z Completed 18.1 MiB/18.8 MiB (46.7 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4104882Z Completed 18.3 MiB/18.8 MiB (47.3 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4111130Z Completed 18.6 MiB/18.8 MiB (47.8 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4119208Z Completed 18.8 MiB/18.8 MiB (48.4 MiB/s) with 1 file(s) remaining 2025-08-26T19:41:20.4120822Z download: s3://ossci-windows/sccache-v0.7.4.exe to build\win_tmp\bin\sccache.exe 2025-08-26T19:41:20.5077816Z 2025-08-26T19:41:20.5078479Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-08-26T19:41:20.5078820Z 2025-08-26T19:41:20.5079270Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-08-26T19:41:20.5081361Z 2025-08-26T19:41:20.5081852Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-08-26T19:41:20.5082215Z set CUDA_VERSION=xpu 2025-08-26T19:41:20.5082755Z call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\..\windows\internal\xpu_install.bat 2025-08-26T19:41:20.5083334Z if errorlevel 1 exit /b 1 2025-08-26T19:41:20.5083567Z ) 2025-08-26T19:41:20.5083673Z 2025-08-26T19:41:20.5084241Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-08-26T19:41:20.5094570Z 2025-08-26T19:41:20.5095267Z 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-08-26T19:41:20.5098422Z 2025-08-26T19:41:20.5098886Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-26T19:41:20.5101363Z 2025-08-26T19:41:20.5101742Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-26T19:41:20.5102828Z 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-08-26T19:41:20.5103872Z if errorlevel 1 exit /b 2025-08-26T19:41:20.5104165Z if not errorlevel 0 exit /b 2025-08-26T19:41:20.5104965Z 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-08-26T19:41:20.5105779Z if errorlevel 1 exit /b 2025-08-26T19:41:20.5106014Z if not errorlevel 0 exit /b 2025-08-26T19:41:20.5106243Z ) 2025-08-26T19:41:20.5106336Z 2025-08-26T19:41:20.5106686Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-26T19:41:21.8383110Z Chocolatey v2.5.0 2025-08-26T19:41:21.9782625Z Upgrading the following packages: 2025-08-26T19:41:21.9787750Z cmake 2025-08-26T19:41:21.9791597Z By upgrading, you accept licenses for the packages. 2025-08-26T19:41:22.3206489Z cmake is not installed. Installing... 2025-08-26T19:41:23.2248224Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-08-26T19:41:24.2968339Z 2025-08-26T19:41:24.2968739Z cmake.install v3.27.9 [Approved] 2025-08-26T19:41:24.3154185Z cmake.install package files upgrade completed. Performing other installation steps. 2025-08-26T19:41:24.9376956Z Installing 64-bit cmake.install... 2025-08-26T19:41:38.1839680Z cmake.install has been installed. 2025-08-26T19:41:38.2576631Z cmake.install may be able to be automatically uninstalled. 2025-08-26T19:41:38.2622092Z Environment Vars (like PATH) have changed. Close/reopen your shell to 2025-08-26T19:41:38.2622736Z see the changes (or in powershell/cmd.exe just type `refreshenv`). 2025-08-26T19:41:38.4791723Z The upgrade of cmake.install was successful. 2025-08-26T19:41:38.4795415Z Deployed to 'C:\Program Files\CMake\' 2025-08-26T19:41:38.4830132Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-08-26T19:41:38.5721656Z 2025-08-26T19:41:38.5721964Z cmake v3.27.9 [Approved] 2025-08-26T19:41:38.5735801Z cmake package files upgrade completed. Performing other installation steps. 2025-08-26T19:41:38.6458894Z The upgrade of cmake was successful. 2025-08-26T19:41:38.6461873Z Deployed to 'C:\ProgramData\chocolatey\lib\cmake' 2025-08-26T19:41:38.6540122Z 2025-08-26T19:41:38.6540269Z Chocolatey upgraded 2/2 packages. 2025-08-26T19:41:38.6540686Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-08-26T19:41:39.4416194Z Collecting mkl==2024.2.0 2025-08-26T19:41:39.6347776Z Downloading mkl-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-08-26T19:41:39.6606864Z Collecting mkl-static==2024.2.0 2025-08-26T19:41:39.6663719Z Downloading mkl_static-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.5 kB) 2025-08-26T19:41:39.6971461Z Collecting mkl-include==2024.2.0 2025-08-26T19:41:39.7023197Z Downloading mkl_include-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-08-26T19:41:39.7353029Z Collecting intel-openmp>=2023 (from mkl==2024.2.0) 2025-08-26T19:41:39.7411999Z Downloading intel_openmp-2025.2.1-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-08-26T19:41:39.7642729Z Collecting tbb==2021.* (from mkl==2024.2.0) 2025-08-26T19:41:39.7700672Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl.metadata (1.1 kB) 2025-08-26T19:41:39.7961842Z Collecting tbb-devel==2021.* (from mkl-static==2024.2.0) 2025-08-26T19:41:39.8016068Z Downloading tbb_devel-2021.13.1-py3-none-win_amd64.whl.metadata (1.2 kB) 2025-08-26T19:41:39.8269561Z Collecting intel-cmplr-lib-ur==2025.2.1 (from intel-openmp>=2023->mkl==2024.2.0) 2025-08-26T19:41:39.8327280Z Downloading intel_cmplr_lib_ur-2025.2.1-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-08-26T19:41:39.8517237Z Collecting umf==0.11.* (from intel-cmplr-lib-ur==2025.2.1->intel-openmp>=2023->mkl==2024.2.0) 2025-08-26T19:41:39.8566951Z Downloading umf-0.11.0-py2.py3-none-win_amd64.whl.metadata (1.1 kB) 2025-08-26T19:41:39.8747657Z Collecting tcmlib>=1.4 (from umf==0.11.*->intel-cmplr-lib-ur==2025.2.1->intel-openmp>=2023->mkl==2024.2.0) 2025-08-26T19:41:39.8796697Z Downloading tcmlib-1.4.0-py2.py3-none-win_amd64.whl.metadata (1.0 kB) 2025-08-26T19:41:39.8939906Z Downloading mkl-2024.2.0-py2.py3-none-win_amd64.whl (161.5 MB) 2025-08-26T19:41:42.8327421Z ---------------------------------------- 161.5/161.5 MB 4.8 MB/s eta 0:00:00 2025-08-26T19:41:42.8423096Z Downloading mkl_static-2024.2.0-py2.py3-none-win_amd64.whl (207.3 MB) 2025-08-26T19:41:46.6138410Z ---------------------------------------- 207.3/207.3 MB 3.7 MB/s eta 0:00:00 2025-08-26T19:41:46.6228627Z Downloading mkl_include-2024.2.0-py2.py3-none-win_amd64.whl (1.3 MB) 2025-08-26T19:41:46.6402224Z ---------------------------------------- 1.3/1.3 MB ? eta 0:00:00 2025-08-26T19:41:46.6465556Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl (286 kB) 2025-08-26T19:41:46.6561217Z ---------------------------------------- 286.9/286.9 kB ? eta 0:00:00 2025-08-26T19:41:46.6687909Z Downloading tbb_devel-2021.13.1-py3-none-win_amd64.whl (5.7 MB) 2025-08-26T19:41:46.7799811Z ---------------------------------------- 5.7/5.7 MB 60.1 MB/s eta 0:00:00 2025-08-26T19:41:46.7887280Z Downloading intel_openmp-2025.2.1-py2.py3-none-win_amd64.whl (34.0 MB) 2025-08-26T19:41:47.2410653Z ---------------------------------------- 34.0/34.0 MB 34.5 MB/s eta 0:00:00 2025-08-26T19:41:47.2493115Z Downloading intel_cmplr_lib_ur-2025.2.1-py2.py3-none-win_amd64.whl (1.2 MB) 2025-08-26T19:41:47.2655276Z ---------------------------------------- 1.2/1.2 MB 72.4 MB/s eta 0:00:00 2025-08-26T19:41:47.2714187Z Downloading umf-0.11.0-py2.py3-none-win_amd64.whl (231 kB) 2025-08-26T19:41:47.2802634Z ---------------------------------------- 231.7/231.7 kB ? eta 0:00:00 2025-08-26T19:41:47.3002336Z Downloading tcmlib-1.4.0-py2.py3-none-win_amd64.whl (370 kB) 2025-08-26T19:41:47.3107210Z ---------------------------------------- 370.3/370.3 kB ? eta 0:00:00 2025-08-26T19:41:49.2253180Z Installing collected packages: tcmlib, tbb, mkl-include, umf, tbb-devel, intel-cmplr-lib-ur, intel-openmp, mkl-static, mkl 2025-08-26T19:41:57.1017087Z Successfully installed intel-cmplr-lib-ur-2025.2.1 intel-openmp-2025.2.1 mkl-2024.2.0 mkl-include-2024.2.0 mkl-static-2024.2.0 tbb-2021.13.1 tbb-devel-2021.13.1 tcmlib-1.4.0 umf-0.11.0 2025-08-26T19:41:57.6578654Z ********************************************************************** 2025-08-26T19:41:57.6579078Z ** Visual Studio 2022 Developer Command Prompt v17.12.10 2025-08-26T19:41:57.6579550Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-26T19:41:57.6580285Z ********************************************************************** 2025-08-26T19:41:58.1323035Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-26T19:41:58.1360927Z 2025-08-26T19:41:58.1361474Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-26T19:41:58.1365451Z 2025-08-26T19:41:58.1365943Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" goto cuda_build_end 2025-08-26T19:41:58.1367622Z 2025-08-26T19:41:58.1368090Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T19:41:58.1370778Z 2025-08-26T19:41:58.1371135Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-08-26T19:41:58.1371633Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-08-26T19:41:58.1372056Z goto fail 2025-08-26T19:41:58.1372228Z ) 2025-08-26T19:41:58.1372325Z 2025-08-26T19:41:58.1372909Z (base) C:\actions-runner\_work\pytorch\pytorch>rem version transformer, for example 10.1 to 10_1. 2025-08-26T19:41:58.1373367Z 2025-08-26T19:41:58.1373675Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-08-26T19:41:58.1374196Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-08-26T19:41:58.1374591Z goto fail 2025-08-26T19:41:58.1374766Z ) 2025-08-26T19:41:58.1374858Z 2025-08-26T19:41:58.1375054Z (base) C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=12_6 2025-08-26T19:41:58.1377156Z 2025-08-26T19:41:58.1377683Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T19:41:58.1379954Z 2025-08-26T19:41:58.1380466Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-08-26T19:41:58.1382695Z 2025-08-26T19:41:58.1383144Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T19:41:58.1385166Z 2025-08-26T19:41:58.1385779Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T19:41:58.1388054Z 2025-08-26T19:41:58.1396617Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\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\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-26T19:41:58.1405115Z 2025-08-26T19:41:58.1405322Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-26T19:41:58.1405634Z 2025-08-26T19:41:58.1413922Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\CMake\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\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\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-26T19:41:58.1423053Z 2025-08-26T19:41:58.1423316Z (base) C:\actions-runner\_work\pytorch\pytorch>if "8.6" == "" set TORCH_CUDA_ARCH_LIST=8.6 2025-08-26T19:41:58.1423695Z 2025-08-26T19:41:58.1423909Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IDLE_TIMEOUT=0 2025-08-26T19:41:58.1424421Z 2025-08-26T19:41:58.1424668Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-08-26T19:41:58.1425033Z 2025-08-26T19:41:58.1425229Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-08-26T19:41:58.1545063Z Stopping sccache server... 2025-08-26T19:41:59.1563335Z sccache: error: couldn't connect to server 2025-08-26T19:41:59.1565545Z sccache: caused by: No connection could be made because the target machine actively refused it. (os error 10061) 2025-08-26T19:41:59.1589768Z 2025-08-26T19:41:59.1590065Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --start-server 2025-08-26T19:41:59.1685081Z sccache: Starting the server... 2025-08-26T19:41:59.2758991Z 2025-08-26T19:41:59.2759636Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --zero-stats 2025-08-26T19:41:59.2865400Z Compile requests 0 2025-08-26T19:41:59.2865734Z Compile requests executed 0 2025-08-26T19:41:59.2866051Z Cache hits 0 2025-08-26T19:41:59.2866349Z Cache misses 0 2025-08-26T19:41:59.2866613Z Cache timeouts 0 2025-08-26T19:41:59.2866878Z Cache read errors 0 2025-08-26T19:41:59.2867132Z Forced recaches 0 2025-08-26T19:41:59.2867408Z Cache write errors 0 2025-08-26T19:41:59.2867668Z Compilation failures 0 2025-08-26T19:41:59.2867940Z Cache errors 0 2025-08-26T19:41:59.2868205Z Non-cacheable compilations 0 2025-08-26T19:41:59.2868495Z Non-cacheable calls 0 2025-08-26T19:41:59.2868775Z Non-compilation calls 0 2025-08-26T19:41:59.2869045Z Unsupported compiler calls 0 2025-08-26T19:41:59.2869328Z Average cache write 0.000 s 2025-08-26T19:41:59.2869603Z Average compiler 0.000 s 2025-08-26T19:41:59.2869887Z Average cache read hit 0.000 s 2025-08-26T19:41:59.2870171Z Failed distributed compilations 0 2025-08-26T19:41:59.2870549Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-08-26T19:41:59.2870933Z Version (client) 0.7.4 2025-08-26T19:41:59.2884860Z 2025-08-26T19:41:59.2885458Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_C_COMPILER_LAUNCHER=sccache 2025-08-26T19:41:59.2887713Z 2025-08-26T19:41:59.2888038Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-08-26T19:41:59.2890177Z 2025-08-26T19:41:59.2890414Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_GENERATOR=Ninja 2025-08-26T19:41:59.2894460Z 2025-08-26T19:41:59.2894773Z (base) C:\actions-runner\_work\pytorch\pytorch>if "1" == "1" ( 2025-08-26T19:41:59.2895105Z 2025-08-26T19:41:59.2895268Z 2025-08-26T19:41:59.2895424Z 2025-08-26T19:41:59.2896202Z 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-08-26T19:41:59.2897068Z if errorlevel 1 goto fail 2025-08-26T19:41:59.2897335Z if not errorlevel 0 goto fail 2025-08-26T19:41:59.2899275Z 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-08-26T19:41:59.2900618Z cat C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-08-26T19:41:59.2901234Z set CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-08-26T19:41:59.2901746Z The system cannot find the drive specified. 2025-08-26T19:41:59.2902066Z The system cannot find the drive specified. 2025-08-26T19:41:59.2902374Z The system cannot find the drive specified. 2025-08-26T19:41:59.2903023Z 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-08-26T19:41:59.2904775Z 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-08-26T19:41:59.2905580Z ) 2025-08-26T19:41:59.9871115Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-08-26T19:41:59.9871616Z Dload Upload Total Spent Left Speed 2025-08-26T19:41:59.9871864Z 2025-08-26T19:42:00.0996666Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-08-26T19:42:00.0997059Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-08-26T19:42:00.1168356Z 2025-08-26T19:42:00.1168744Z 100 303k 100 303k 0 0 2248k 0 --:--:-- --:--:-- --:--:-- 2248k 2025-08-26T19:42:00.1338311Z @"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-08-26T19:42:00.1547558Z 2025-08-26T19:42:00.1548256Z (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-08-26T19:42:00.1552522Z 2025-08-26T19:42:00.1552710Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-26T19:42:00.1737751Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-26T19:42:00.1738800Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-1-azure-eastus.actions.githubusercontent.com/119//idtoken/403c8e96-de86-4002-bfa2-f61cede70191/01fdc277-c6c2-5378-84dc-968ae768d7b4?api-version=2.0 2025-08-26T19:42:00.1739896Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-26T19:42:00.1740298Z ALLUSERSPROFILE=C:\ProgramData 2025-08-26T19:42:00.1740676Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-26T19:42:00.1741114Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-26T19:42:00.1741431Z AWS_DEFAULT_REGION=us-east-1 2025-08-26T19:42:00.1741670Z AWS_EXECUTION_ENV=EC2 2025-08-26T19:42:00.1741872Z BRANCH=main 2025-08-26T19:42:00.1742099Z BUILD_ENVIRONMENT=win-vs2022-cuda12.6-py3 2025-08-26T19:42:00.1742375Z BUILD_TYPE=release 2025-08-26T19:42:00.1742567Z BUILD_WHEEL=1 2025-08-26T19:42:00.1742741Z CI=true 2025-08-26T19:42:00.1743154Z CMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-08-26T19:42:00.1744249Z 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-08-26T19:42:00.1745080Z CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-08-26T19:42:00.1745349Z CMAKE_C_COMPILER_LAUNCHER=sccache 2025-08-26T19:42:00.1745613Z CMAKE_GENERATOR=Ninja 2025-08-26T19:42:00.1745848Z CommandPromptType=Native 2025-08-26T19:42:00.1746125Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-26T19:42:00.1746460Z COMPUTERNAME=EC2AMAZ-TE6SPGV 2025-08-26T19:42:00.1746704Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-26T19:42:00.1747264Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T19:42:00.1747637Z CONDA_DEFAULT_ENV=base 2025-08-26T19:42:00.1747900Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-26T19:42:00.1748294Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T19:42:00.1748663Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-26T19:42:00.1748907Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-26T19:42:00.1749173Z CONDA_PROMPT_MODIFIER=(base) 2025-08-26T19:42:00.1749464Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-26T19:42:00.1749903Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T19:42:00.1750301Z CONDA_SHLVL=1 2025-08-26T19:42:00.1750667Z CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-08-26T19:42:00.1751336Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T19:42:00.1751809Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T19:42:00.1752305Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-26T19:42:00.1752796Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-26T19:42:00.1753162Z CUDA_SUFFIX=cuda126 2025-08-26T19:42:00.1753505Z CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T19:42:00.1753903Z CUDA_VERSION=12.6 2025-08-26T19:42:00.1754141Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-26T19:42:00.1754516Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-26T19:42:00.1754915Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-26T19:42:00.1755354Z CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-08-26T19:42:00.1755877Z CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T19:42:00.1756246Z DEBUG=0 2025-08-26T19:42:00.1756581Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-26T19:42:00.1757017Z DISTUTILS_USE_SDK=1 2025-08-26T19:42:00.1757262Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-26T19:42:00.1757572Z EC2LAUNCH_TELEMETRY=1 2025-08-26T19:42:00.1757941Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-26T19:42:00.1760262Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T19:42:00.1762370Z Framework40Version=v4.0 2025-08-26T19:42:00.1762642Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T19:42:00.1763033Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T19:42:00.1763371Z FrameworkVersion=v4.0.30319 2025-08-26T19:42:00.1763612Z FrameworkVersion64=v4.0.30319 2025-08-26T19:42:00.1763856Z GITHUB_ACTION=build 2025-08-26T19:42:00.1764047Z GITHUB_ACTIONS=true 2025-08-26T19:42:00.1764248Z GITHUB_ACTION_REF= 2025-08-26T19:42:00.1764452Z GITHUB_ACTION_REPOSITORY= 2025-08-26T19:42:00.1764687Z GITHUB_ACTOR=pytorchmergebot 2025-08-26T19:42:00.1764922Z GITHUB_ACTOR_ID=97764156 2025-08-26T19:42:00.1765168Z GITHUB_API_URL=https://api.github.com 2025-08-26T19:42:00.1765435Z GITHUB_BASE_REF= 2025-08-26T19:42:00.1765882Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_c3d3c898-ef59-41aa-8a90-e4dcf03eaf78 2025-08-26T19:42:00.1766417Z GITHUB_EVENT_NAME=push 2025-08-26T19:42:00.1766757Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-26T19:42:00.1767219Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-26T19:42:00.1767639Z GITHUB_HEAD_REF= 2025-08-26T19:42:00.1767843Z GITHUB_JOB=build 2025-08-26T19:42:00.1768302Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_c3d3c898-ef59-41aa-8a90-e4dcf03eaf78 2025-08-26T19:42:00.1769101Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_c3d3c898-ef59-41aa-8a90-e4dcf03eaf78 2025-08-26T19:42:00.1769629Z GITHUB_REF=refs/heads/main 2025-08-26T19:42:00.1769851Z GITHUB_REF_NAME=main 2025-08-26T19:42:00.1770074Z GITHUB_REF_PROTECTED=true 2025-08-26T19:42:00.1770292Z GITHUB_REF_TYPE=branch 2025-08-26T19:42:00.1770525Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-26T19:42:00.1770785Z GITHUB_REPOSITORY_ID=65600975 2025-08-26T19:42:00.1771139Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-26T19:42:00.1771391Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-26T19:42:00.1771675Z GITHUB_RETENTION_DAYS=90 2025-08-26T19:42:00.1771892Z GITHUB_RUN_ATTEMPT=1 2025-08-26T19:42:00.1772107Z GITHUB_RUN_ID=17248463647 2025-08-26T19:42:00.1772331Z GITHUB_RUN_NUMBER=141812 2025-08-26T19:42:00.1772578Z GITHUB_SERVER_URL=https://github.com 2025-08-26T19:42:00.1772886Z GITHUB_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:42:00.1773453Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_c3d3c898-ef59-41aa-8a90-e4dcf03eaf78 2025-08-26T19:42:00.1774297Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_c3d3c898-ef59-41aa-8a90-e4dcf03eaf78 2025-08-26T19:42:00.1774887Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-26T19:42:00.1775171Z GITHUB_WORKFLOW=trunk 2025-08-26T19:42:00.1775545Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-26T19:42:00.1776061Z GITHUB_WORKFLOW_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:42:00.1776484Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T19:42:00.1776813Z GIT_DEFAULT_BRANCH=main 2025-08-26T19:42:00.1777038Z HOME=C:\Users\runneruser 2025-08-26T19:42:00.1779038Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T19:42:00.1781338Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T19:42:00.1781882Z is_x64_arch=true 2025-08-26T19:42:00.1782867Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-08-26T19:42:00.1785116Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-08-26T19:42:00.1786609Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-26T19:42:00.1787034Z MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-08-26T19:42:00.1787416Z MAX_JOBS=8 2025-08-26T19:42:00.1787702Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-26T19:42:00.1788056Z NUMBER_OF_PROCESSORS=16 2025-08-26T19:42:00.1788273Z OS=Windows_NT 2025-08-26T19:42:00.1788470Z OUR_GITHUB_JOB_ID=48944202603 2025-08-26T19:42:00.1796681Z PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\CMake\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\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\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-26T19:42:00.1805829Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-26T19:42:00.1806220Z Platform=x64 2025-08-26T19:42:00.1806426Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-26T19:42:00.1806856Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-08-26T19:42:00.1807308Z PROCESSOR_LEVEL=6 2025-08-26T19:42:00.1807509Z PROCESSOR_REVISION=5507 2025-08-26T19:42:00.1807791Z PROGRAMFILES=C:\Program Files 2025-08-26T19:42:00.1808045Z PROMPT=(base) $P$G 2025-08-26T19:42:00.1808289Z PR_NUMBER= 2025-08-26T19:42:00.1808795Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-26T19:42:00.1809381Z PUBLIC=C:\Users\Public 2025-08-26T19:42:00.1810342Z *** 2025-08-26T19:42:00.1810536Z PYTHON_VERSION=3.9 2025-08-26T19:42:00.1810867Z PYTORCH_FINAL_PACKAGE_DIR=C:/17248463647/build-results/ 2025-08-26T19:42:00.1811197Z ProgramData=C:\ProgramData 2025-08-26T19:42:00.1811454Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-26T19:42:00.1811737Z ProgramW6432=C:\Program Files 2025-08-26T19:42:00.1811978Z RUNNER_ARCH=X64 2025-08-26T19:42:00.1812181Z RUNNER_ENVIRONMENT=self-hosted 2025-08-26T19:42:00.1812434Z RUNNER_NAME=i-0a45ba5f94c98ec01 2025-08-26T19:42:00.1812665Z RUNNER_OS=Windows 2025-08-26T19:42:00.1812891Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-26T19:42:00.1813213Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-26T19:42:00.1813599Z RUNNER_TRACKING_ID=github_d51e5dd7-f63d-4c76-ad00-4bbd747ce0d8 2025-08-26T19:42:00.1814013Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-26T19:42:00.1814328Z SCCACHE_BUCKET=ossci-compiler-cache 2025-08-26T19:42:00.1814603Z SCCACHE_IDLE_TIMEOUT=0 2025-08-26T19:42:00.1814825Z SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-08-26T19:42:00.1815077Z SCCACHE_REGION=us-east-1 2025-08-26T19:42:00.1815430Z SCCACHE_S3_KEY_PREFIX=trunk 2025-08-26T19:42:00.1815855Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T19:42:00.1816391Z SHA1=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:42:00.1816721Z SHLVL=2 2025-08-26T19:42:00.1816961Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-26T19:42:00.1817337Z SYSTEMDRIVE=C: 2025-08-26T19:42:00.1817531Z SYSTEMROOT=C:\Windows 2025-08-26T19:42:00.1817800Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:42:00.1818076Z TERM=xterm-256color 2025-08-26T19:42:00.1818342Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:42:00.1818685Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T19:42:00.1819190Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T19:42:00.1819682Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-26T19:42:00.1820046Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-26T19:42:00.1820317Z UCRTVersion=10.0.19041.0 2025-08-26T19:42:00.1820628Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T19:42:00.1821027Z UPDATEFILE=update.finished 2025-08-26T19:42:00.1821312Z USERDOMAIN=EC2AMAZ-TE6SPGV 2025-08-26T19:42:00.1821541Z USERNAME=runneruser 2025-08-26T19:42:00.1821800Z USERPROFILE=C:\Users\runneruser 2025-08-26T19:42:00.1822028Z USE_CUDA=1 2025-08-26T19:42:00.1822242Z USE_XPU=0 2025-08-26T19:42:00.1822621Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-26T19:42:00.1823382Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-26T19:42:00.1824071Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\ 2025-08-26T19:42:00.1824840Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.42.34433\ 2025-08-26T19:42:00.1825360Z VCToolsVersion=14.42.34433 2025-08-26T19:42:00.1825591Z VC_PRODUCT=BuildTools 2025-08-26T19:42:00.1825808Z VC_VERSION= 2025-08-26T19:42:00.1825972Z VC_YEAR=2022 2025-08-26T19:42:00.1826181Z VERBOSE_ARG='SilentlyContinue' 2025-08-26T19:42:00.1826418Z VERSION_SUFFIX=12_6 2025-08-26T19:42:00.1826627Z VisualStudioVersion=17.0 2025-08-26T19:42:00.1827050Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-26T19:42:00.1827530Z VSCMD_ARG_app_plat=Desktop 2025-08-26T19:42:00.1827762Z VSCMD_ARG_HOST_ARCH=x64 2025-08-26T19:42:00.1827964Z VSCMD_ARG_TGT_ARCH=x64 2025-08-26T19:42:00.1828172Z VSCMD_VER=17.12.10 2025-08-26T19:42:00.1828561Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-26T19:42:00.1828964Z WINDIR=C:\Windows 2025-08-26T19:42:00.1829567Z 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-08-26T19:42:00.1830294Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-26T19:42:00.1830726Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T19:42:00.1831059Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-26T19:42:00.1831468Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-26T19:42:00.1831890Z WindowsSDKVersion=10.0.19041.0\ 2025-08-26T19:42:00.1832393Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-26T19:42:00.1833156Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-26T19:42:00.1833652Z XPU_VERSION= 2025-08-26T19:42:00.1834042Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-08-26T19:42:00.1834524Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-26T19:42:00.1834834Z __DOTNET_ADD_64BIT=1 2025-08-26T19:42:00.1835045Z __DOTNET_PREFERRED_BITNESS=64 2025-08-26T19:42:00.1838449Z __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-08-26T19:42:00.1841868Z 2025-08-26T19:42:00.1842089Z (base) C:\actions-runner\_work\pytorch\pytorch>python setup.py bdist_wheel 2025-08-26T19:42:00.4186325Z Building wheel torch-2.9.0a0+git262640f 2025-08-26T19:42:00.4967263Z -- Building version 2.9.0a0+git262640f 2025-08-26T19:42:00.5498534Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\_msvccompiler.py:12: UserWarning: _get_vc_env is private; find an alternative (pypa/distutils#340) 2025-08-26T19:42:00.5499287Z warnings.warn( 2025-08-26T19:42:00.5822075Z Cloning into 'nccl'... 2025-08-26T19:42:00.9920044Z Note: switching to '3ea7eedf3b9b94f1d9f99f4e55536dfcbd23c1ca'. 2025-08-26T19:42:00.9920377Z 2025-08-26T19:42:00.9920579Z You are in 'detached HEAD' state. You can look around, make experimental 2025-08-26T19:42:00.9921092Z changes and commit them, and you can discard any commits you make in this 2025-08-26T19:42:00.9921599Z state without impacting any branches by switching back to a branch. 2025-08-26T19:42:00.9921927Z 2025-08-26T19:42:00.9922115Z If you want to create a new branch to retain commits you create, you may 2025-08-26T19:42:00.9922578Z do so (now or later) by using -c with the switch command. Example: 2025-08-26T19:42:00.9922843Z 2025-08-26T19:42:00.9922952Z git switch -c 2025-08-26T19:42:00.9923135Z 2025-08-26T19:42:00.9923223Z Or undo this operation with: 2025-08-26T19:42:00.9923383Z 2025-08-26T19:42:00.9923461Z git switch - 2025-08-26T19:42:00.9923580Z 2025-08-26T19:42:00.9923792Z Turn off this advice by setting config variable advice.detachedHead to false 2025-08-26T19:42:00.9924111Z 2025-08-26T19:42:04.7174446Z cmake -GNinja -DBUILD_ENVIRONMENT=win-vs2022-cuda12.6-py3 -DBUILD_PYTHON=True -DBUILD_TEST=True -DBUILD_TYPE=release -DBUILD_WHEEL=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe -DCMAKE_CUDA_COMPILER_LAUNCHER=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/randomtemp.exe;C:/actions-runner/_work/pytorch/pytorch/build/win_tmp\bin\sccache.exe -DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_GENERATOR=Ninja -DCMAKE_INSTALL_PREFIX=C:\actions-runner\_work\pytorch\pytorch\torch -DCMAKE_PREFIX_PATH=C:\Jenkins\Miniconda3\Lib\site-packages -DCUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat -DCUDNN_LIBRARY=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 -DPython_EXECUTABLE=C:\Jenkins\Miniconda3\python.exe -DPython_NumPy_INCLUDE_DIR=C:\Jenkins\Miniconda3\lib\site-packages\numpy\core\include -DTORCH_BUILD_VERSION=2.9.0a0+git262640f -DTORCH_CUDA_ARCH_LIST=8.6 -DUSE_CUDA=1 -DUSE_NUMPY=True -DUSE_XPU=0 C:\actions-runner\_work\pytorch\pytorch 2025-08-26T19:42:10.4466260Z -- The CXX compiler identification is MSVC 19.42.34444.0 2025-08-26T19:42:10.5960941Z -- The C compiler identification is MSVC 19.42.34444.0 2025-08-26T19:42:10.6174415Z -- Detecting CXX compiler ABI info 2025-08-26T19:42:16.7974995Z -- Detecting CXX compiler ABI info - done 2025-08-26T19:42:16.7999336Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-08-26T19:42:16.8003466Z -- Detecting CXX compile features 2025-08-26T19:42:16.8017294Z -- Detecting CXX compile features - done 2025-08-26T19:42:16.8120140Z -- Detecting C compiler ABI info 2025-08-26T19:42:17.1205437Z -- Detecting C compiler ABI info - done 2025-08-26T19:42:17.1230905Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-08-26T19:42:17.1235191Z -- Detecting C compile features 2025-08-26T19:42:17.1247113Z -- Detecting C compile features - done 2025-08-26T19:42:17.1295524Z -- Not forcing any particular BLAS to be found 2025-08-26T19:42:17.1395762Z CMake Warning at CMakeLists.txt:421 (message): 2025-08-26T19:42:17.1396384Z TensorPipe cannot be used on Windows. Set it to OFF 2025-08-26T19:42:17.1396641Z 2025-08-26T19:42:17.1396645Z 2025-08-26T19:42:17.1396765Z CMake Warning at CMakeLists.txt:423 (message): 2025-08-26T19:42:17.1397133Z KleidiAI cannot be used on Windows. Set it to OFF 2025-08-26T19:42:17.1397378Z 2025-08-26T19:42:17.1397383Z 2025-08-26T19:42:17.1456890Z -- Performing Test C_HAS_AVX_1 2025-08-26T19:42:17.9155164Z -- Performing Test C_HAS_AVX_1 - Success 2025-08-26T19:42:17.9159905Z -- Performing Test C_HAS_AVX2_1 2025-08-26T19:42:18.2812026Z -- Performing Test C_HAS_AVX2_1 - Success 2025-08-26T19:42:18.2817178Z -- Performing Test C_HAS_AVX512_1 2025-08-26T19:42:18.6466773Z -- Performing Test C_HAS_AVX512_1 - Success 2025-08-26T19:42:18.6471236Z -- Performing Test CXX_HAS_AVX_1 2025-08-26T19:42:19.0068644Z -- Performing Test CXX_HAS_AVX_1 - Success 2025-08-26T19:42:19.0073104Z -- Performing Test CXX_HAS_AVX2_1 2025-08-26T19:42:19.4856507Z -- Performing Test CXX_HAS_AVX2_1 - Success 2025-08-26T19:42:19.4861573Z -- Performing Test CXX_HAS_AVX512_1 2025-08-26T19:42:19.8424237Z -- Performing Test CXX_HAS_AVX512_1 - Success 2025-08-26T19:42:19.8424717Z -- Current compiler supports avx2 extension. Will build perfkernels. 2025-08-26T19:42:19.8425854Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-08-26T19:42:20.1673389Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Failed 2025-08-26T19:42:20.1696488Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-08-26T19:42:20.4813249Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Failed 2025-08-26T19:42:20.4820479Z -- Could not find hardware support for NEON on this machine. 2025-08-26T19:42:20.4820877Z -- No OMAP3 processor on this machine. 2025-08-26T19:42:20.4821191Z -- No OMAP4 processor on this machine. 2025-08-26T19:42:20.4821769Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-08-26T19:42:20.4878084Z CMake Warning at CMakeLists.txt:841 (message): 2025-08-26T19:42:20.4878658Z x64 operating system is required for FBGEMM. Not compiling with FBGEMM. 2025-08-26T19:42:20.4879085Z Turn this warning off by USE_FBGEMM=OFF. 2025-08-26T19:42:20.4879293Z 2025-08-26T19:42:20.4879298Z 2025-08-26T19:42:20.4901023Z -- Performing Test HAS/UTF_8 2025-08-26T19:42:20.7958485Z -- Performing Test HAS/UTF_8 - Success 2025-08-26T19:42:21.5797627Z -- Found CUDA: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 (found version "12.6") 2025-08-26T19:42:27.1058943Z -- The CUDA compiler identification is NVIDIA 12.6.85 2025-08-26T19:42:27.1283656Z -- Detecting CUDA compiler ABI info 2025-08-26T19:42:33.5299106Z -- Detecting CUDA compiler ABI info - done 2025-08-26T19:42:33.5603231Z -- Check for working CUDA compiler: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe - skipped 2025-08-26T19:42:35.6792479Z -- Detecting CUDA compile features 2025-08-26T19:42:35.6804755Z -- Detecting CUDA compile features - done 2025-08-26T19:42:35.6868649Z -- Found CUDAToolkit: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include (found version "12.6.85") 2025-08-26T19:42:36.8118331Z -- PyTorch: CUDA detected: 12.6 2025-08-26T19:42:36.8119092Z -- PyTorch: CUDA nvcc is: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-08-26T19:42:36.8119758Z -- PyTorch: CUDA toolkit directory: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-08-26T19:42:38.7661921Z -- PyTorch: Header version is: 12.6 2025-08-26T19:42:39.3496970Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-08-26T19:42:39.3539149Z CMake Warning at cmake/public/cuda.cmake:140 (message): 2025-08-26T19:42:39.3539562Z Failed to compute shorthash for libnvrtc.so 2025-08-26T19:42:39.3539872Z Call Stack (most recent call first): 2025-08-26T19:42:39.3540166Z cmake/Dependencies.cmake:44 (include) 2025-08-26T19:42:39.3540447Z CMakeLists.txt:869 (include) 2025-08-26T19:42:39.3541063Z 2025-08-26T19:42:39.3541071Z 2025-08-26T19:42:39.3588649Z -- Found CUDNN: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-08-26T19:42:39.4710340Z -- Could NOT find CUSPARSELT (missing: CUSPARSELT_LIBRARY_PATH CUSPARSELT_INCLUDE_PATH) 2025-08-26T19:42:39.4711408Z CMake Warning at cmake/public/cuda.cmake:226 (message): 2025-08-26T19:42:39.4711865Z Cannot find cuSPARSELt library. Turning the option off 2025-08-26T19:42:39.4712214Z Call Stack (most recent call first): 2025-08-26T19:42:39.4712508Z cmake/Dependencies.cmake:44 (include) 2025-08-26T19:42:39.4712790Z CMakeLists.txt:869 (include) 2025-08-26T19:42:39.4712954Z 2025-08-26T19:42:39.4712965Z 2025-08-26T19:42:39.5023911Z -- Could NOT find CUDSS (missing: CUDSS_LIBRARY_PATH CUDSS_INCLUDE_PATH) 2025-08-26T19:42:39.5024878Z CMake Warning at cmake/public/cuda.cmake:242 (message): 2025-08-26T19:42:39.5025310Z Cannot find CUDSS library. Turning the option off 2025-08-26T19:42:39.5025659Z Call Stack (most recent call first): 2025-08-26T19:42:39.5025932Z cmake/Dependencies.cmake:44 (include) 2025-08-26T19:42:39.5026221Z CMakeLists.txt:869 (include) 2025-08-26T19:42:39.5026390Z 2025-08-26T19:42:39.5026541Z -- USE_CUFILE is set to 0. Compiling without cuFile support 2025-08-26T19:42:39.5026820Z 2025-08-26T19:42:39.5032553Z CMake Warning at cmake/public/cuda.cmake:317 (message): 2025-08-26T19:42:39.5033025Z pytorch is not compatible with `CMAKE_CUDA_ARCHITECTURES` and will ignore 2025-08-26T19:42:39.5033503Z its value. Please configure `TORCH_CUDA_ARCH_LIST` instead. 2025-08-26T19:42:39.5033866Z Call Stack (most recent call first): 2025-08-26T19:42:39.5034141Z cmake/Dependencies.cmake:44 (include) 2025-08-26T19:42:39.5034431Z CMakeLists.txt:869 (include) 2025-08-26T19:42:39.5034594Z 2025-08-26T19:42:39.5034597Z 2025-08-26T19:42:39.5034776Z -- Added CUDA NVCC flags for: -gencode;arch=compute_86,code=sm_86 2025-08-26T19:42:39.5057657Z -- Building using own protobuf under third_party per request. 2025-08-26T19:42:39.5058072Z -- Use custom protobuf build. 2025-08-26T19:42:39.6981727Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-08-26T19:42:39.6982441Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-08-26T19:42:39.6982830Z CMake. 2025-08-26T19:42:39.6982936Z 2025-08-26T19:42:39.6983136Z Update the VERSION argument value or use a ... suffix to tell 2025-08-26T19:42:39.6983645Z CMake that the project does not need compatibility with older versions. 2025-08-26T19:42:39.6983954Z 2025-08-26T19:42:39.6983958Z 2025-08-26T19:42:39.6997275Z -- 2025-08-26T19:42:39.6997811Z -- 3.13.0.0 2025-08-26T19:42:39.7015466Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-08-26T19:42:40.5321665Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2025-08-26T19:42:40.5323958Z -- Looking for pthread_create in pthreads 2025-08-26T19:42:40.7316675Z -- Looking for pthread_create in pthreads - not found 2025-08-26T19:42:40.7317743Z -- Looking for pthread_create in pthread 2025-08-26T19:42:40.9765497Z -- Looking for pthread_create in pthread - not found 2025-08-26T19:42:40.9782457Z -- Found Threads: TRUE 2025-08-26T19:42:41.1239243Z -- Caffe2 protobuf include directory: $$ 2025-08-26T19:42:41.1274982Z -- Trying to find preferred BLAS backend of choice: MKL 2025-08-26T19:42:41.1298503Z -- MKL_THREADING = OMP 2025-08-26T19:42:41.1301762Z -- Looking for sys/types.h 2025-08-26T19:42:42.0716041Z -- Looking for sys/types.h - found 2025-08-26T19:42:42.0717968Z -- Looking for stdint.h 2025-08-26T19:42:42.6653798Z -- Looking for stdint.h - found 2025-08-26T19:42:42.6655683Z -- Looking for stddef.h 2025-08-26T19:42:43.1357764Z -- Looking for stddef.h - found 2025-08-26T19:42:43.1358867Z -- Check size of void* 2025-08-26T19:42:43.7176497Z -- Check size of void* - done 2025-08-26T19:42:43.7397980Z -- Looking for cblas_sgemm 2025-08-26T19:42:45.0510031Z -- Looking for cblas_sgemm - found 2025-08-26T19:42:45.0514786Z -- Looking for cblas_gemm_bf16bf16f32 2025-08-26T19:42:45.6202692Z -- Looking for cblas_gemm_bf16bf16f32 - found 2025-08-26T19:42:45.6203261Z -- Looking for cblas_gemm_f16f16f32 2025-08-26T19:42:46.6038147Z -- Looking for cblas_gemm_f16f16f32 - found 2025-08-26T19:42:46.6379879Z -- 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-08-26T19:42:46.6381023Z -- MKL include directory: C:/Jenkins/Miniconda3/Library/include 2025-08-26T19:42:46.6381388Z -- MKL OpenMP type: Intel 2025-08-26T19:42:46.6381745Z -- MKL OpenMP library: C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-08-26T19:42:46.8171807Z -- The ASM compiler identification is MSVC 2025-08-26T19:42:46.8188038Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe 2025-08-26T19:42:46.8314368Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-08-26T19:42:46.8371196Z -- Generating microkernels.cmake 2025-08-26T19:42:51.6491815Z 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-08-26T19:42:51.6493188Z 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-08-26T19:42:51.6494058Z No microkernel found in src\reference\binary-elementwise.cc 2025-08-26T19:42:51.6494464Z No microkernel found in src\reference\packing.cc 2025-08-26T19:42:51.6494856Z No microkernel found in src\reference\unary-elementwise.cc 2025-08-26T19:42:51.7769875Z -- Found Git: C:/Program Files/Git/cmd/git.exe (found version "2.50.1.windows.1") 2025-08-26T19:42:51.8231011Z -- Google Benchmark version: v1.9.3, normalized to 1.9.3 2025-08-26T19:42:51.8246141Z -- Looking for shm_open in rt 2025-08-26T19:42:57.0334820Z -- Looking for shm_open in rt - not found 2025-08-26T19:42:57.0360605Z -- Performing Test HAVE_CXX_FLAG_WX 2025-08-26T19:42:57.4352842Z -- Performing Test HAVE_CXX_FLAG_WX - Success 2025-08-26T19:42:57.4356703Z -- Compiling and running to test HAVE_STD_REGEX 2025-08-26T19:43:00.7992793Z -- Performing Test HAVE_STD_REGEX -- success 2025-08-26T19:43:00.7994207Z -- Compiling and running to test HAVE_GNU_POSIX_REGEX 2025-08-26T19:43:00.8994313Z -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile 2025-08-26T19:43:00.8995104Z -- Compiling and running to test HAVE_POSIX_REGEX 2025-08-26T19:43:00.9865699Z -- Performing Test HAVE_POSIX_REGEX -- failed to compile 2025-08-26T19:43:00.9867034Z -- Compiling and running to test HAVE_STEADY_CLOCK 2025-08-26T19:43:01.8424054Z -- Performing Test HAVE_STEADY_CLOCK -- success 2025-08-26T19:43:01.8459969Z -- Compiling and running to test HAVE_PTHREAD_AFFINITY 2025-08-26T19:43:01.9439134Z -- Performing Test HAVE_PTHREAD_AFFINITY -- failed to compile 2025-08-26T19:43:01.9840972Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-08-26T19:43:01.9841779Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-08-26T19:43:01.9842162Z CMake. 2025-08-26T19:43:01.9842268Z 2025-08-26T19:43:01.9842480Z Update the VERSION argument value or use a ... suffix to tell 2025-08-26T19:43:01.9842977Z CMake that the project does not need compatibility with older versions. 2025-08-26T19:43:01.9843339Z 2025-08-26T19:43:01.9843345Z 2025-08-26T19:43:01.9918126Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-08-26T19:43:01.9918835Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-08-26T19:43:01.9919207Z CMake. 2025-08-26T19:43:01.9919458Z 2025-08-26T19:43:01.9919655Z Update the VERSION argument value or use a ... suffix to tell 2025-08-26T19:43:01.9920150Z CMake that the project does not need compatibility with older versions. 2025-08-26T19:43:01.9920467Z 2025-08-26T19:43:01.9920472Z 2025-08-26T19:43:01.9970498Z -- Using third party subdirectory Eigen. 2025-08-26T19:43:03.3165249Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter Development.Module NumPy 2025-08-26T19:43:03.3167753Z -- Using third_party/pybind11. 2025-08-26T19:43:03.3169039Z -- pybind11 include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-08-26T19:43:03.3220268Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-08-26T19:43:03.3221055Z -- Using third_party/opentelemetry-cpp. 2025-08-26T19:43:03.3221769Z -- opentelemetry api include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-08-26T19:43:03.8775407Z -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) 2025-08-26T19:43:04.2907102Z -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) 2025-08-26T19:43:04.2915785Z -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) 2025-08-26T19:43:04.2920102Z CMake Warning at cmake/Dependencies.cmake:894 (message): 2025-08-26T19:43:04.2920551Z Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF 2025-08-26T19:43:04.2920944Z Call Stack (most recent call first): 2025-08-26T19:43:04.2921218Z CMakeLists.txt:869 (include) 2025-08-26T19:43:04.2921389Z 2025-08-26T19:43:04.2921393Z 2025-08-26T19:43:04.2955282Z -- Check OMP with lib C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib and flags -openmp:experimental 2025-08-26T19:43:05.9736760Z -- Check OMP with lib C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib and flags -openmp:experimental 2025-08-26T19:43:07.9803231Z -- Found OpenMP_C: -openmp:experimental 2025-08-26T19:43:08.4018431Z -- Found OpenMP_CXX: -openmp:experimental 2025-08-26T19:43:08.4028462Z -- Found OpenMP: TRUE 2025-08-26T19:43:08.4030677Z -- Adding OpenMP CXX_FLAGS: -openmp:experimental 2025-08-26T19:43:08.4031577Z -- Will link against OpenMP libraries: C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-08-26T19:43:08.4041321Z -- Found nvtx3: C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-08-26T19:43:08.4047159Z -- ROCM_PATH environment variable is not set and C:/opt/rocm does not exist. 2025-08-26T19:43:08.4047594Z Building without ROCm support. 2025-08-26T19:43:08.4077115Z -- Found CUB: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-08-26T19:43:08.4100650Z -- MSVC detected 2025-08-26T19:43:08.4100894Z -- Set USE_REDIS OFF 2025-08-26T19:43:08.4101128Z -- Set USE_IBVERBS OFF 2025-08-26T19:43:08.4101382Z -- Set USE_NCCL OFF 2025-08-26T19:43:08.4101571Z -- Set USE_RCCL OFF 2025-08-26T19:43:08.4101820Z -- Set USE_LIBUV OFF 2025-08-26T19:43:08.4104189Z -- Gloo build as SHARED library 2025-08-26T19:43:08.4152152Z -- 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-08-26T19:43:09.4685019Z -- CUDA detected: 12.6.85 2025-08-26T19:43:09.4875841Z -- GLOO_USE_TORCH_DTYPES : 1 C:/actions-runner/_work/pytorch/pytorch;C:/actions-runner/_work/pytorch/pytorch/build 2025-08-26T19:43:09.9380386Z -- Found Python3: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-08-26T19:43:09.9403424Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-08-26T19:43:09.9403854Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-08-26T19:43:09.9407359Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-08-26T19:43:09.9414963Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-08-26T19:43:09.9422162Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-08-26T19:43:10.1566833Z -- 2025-08-26T19:43:10.1567094Z -- ******** Summary ******** 2025-08-26T19:43:10.1567397Z -- CMake version : 3.27.9 2025-08-26T19:43:10.1567784Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-08-26T19:43:10.1568166Z -- System : Windows 2025-08-26T19:43:10.1568807Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe 2025-08-26T19:43:10.1569438Z -- C++ compiler version : 19.42.34444.0 2025-08-26T19:43:10.1569986Z -- CXX flags : /DWIN32 /D_WINDOWS /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL /EHsc /wd26812 2025-08-26T19:43:10.1570504Z -- Build type : Release 2025-08-26T19:43:10.1570897Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-08-26T19:43:10.1572426Z -- 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-08-26T19:43:10.1574578Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-08-26T19:43:10.1575689Z -- CMAKE_MODULE_PATH : C:/actions-runner/_work/pytorch/pytorch/cmake/Modules;C:/actions-runner/_work/pytorch/pytorch/cmake/public/../Modules_CUDA_fix 2025-08-26T19:43:10.1576384Z -- 2025-08-26T19:43:10.1576577Z -- ONNX version : 1.18.0 2025-08-26T19:43:10.1576898Z -- ONNX NAMESPACE : onnx_torch 2025-08-26T19:43:10.1577219Z -- ONNX_USE_LITE_PROTO : OFF 2025-08-26T19:43:10.1577523Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-08-26T19:43:10.1577826Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-08-26T19:43:10.1578121Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-08-26T19:43:10.1578428Z -- ONNX_WERROR : OFF 2025-08-26T19:43:10.1578702Z -- ONNX_BUILD_TESTS : OFF 2025-08-26T19:43:10.1579002Z -- BUILD_SHARED_LIBS : OFF 2025-08-26T19:43:10.1579255Z -- 2025-08-26T19:43:10.1579580Z -- Protobuf compiler : $ 2025-08-26T19:43:10.1579967Z -- Protobuf includes : 2025-08-26T19:43:10.1580266Z -- Protobuf libraries : 2025-08-26T19:43:10.1580557Z -- ONNX_BUILD_PYTHON : OFF 2025-08-26T19:43:10.1580933Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-08-26T19:43:10.1581343Z -- Adding -DNDEBUG to compile flags 2025-08-26T19:43:10.1617496Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 2025-08-26T19:43:10.2586319Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 - False 2025-08-26T19:43:10.2586753Z -- Compiling with MAGMA support 2025-08-26T19:43:10.2587436Z -- MAGMA INCLUDE DIRECTORIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/include 2025-08-26T19:43:10.2588152Z -- MAGMA LIBRARIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/lib/magma.lib 2025-08-26T19:43:10.2588614Z -- MAGMA V2 check: 0 2025-08-26T19:43:10.2592191Z -- Could not find hardware support for NEON on this machine. 2025-08-26T19:43:10.2592559Z -- No OMAP3 processor on this machine. 2025-08-26T19:43:10.2592855Z -- No OMAP4 processor on this machine. 2025-08-26T19:43:10.2607811Z -- Looking for sbgemm_ 2025-08-26T19:43:10.5899764Z -- Looking for sbgemm_ - not found 2025-08-26T19:43:10.5909676Z -- Found a library with LAPACK API (mkl). 2025-08-26T19:43:10.5911129Z disabling ROCM because NOT USE_ROCM is set 2025-08-26T19:43:10.5911696Z -- MIOpen not found. Compiling without MIOpen support 2025-08-26T19:43:10.5920321Z -- Will build oneDNN UKERNEL 2025-08-26T19:43:10.6017872Z -- MKLDNN_CPU_RUNTIME = OMP 2025-08-26T19:43:10.6037607Z -- DNNL_TARGET_ARCH: X64 2025-08-26T19:43:10.6067371Z -- DNNL_LIBRARY_NAME: dnnl 2025-08-26T19:43:10.6167119Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-08-26T19:43:10.6167885Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-08-26T19:43:10.6168400Z does not match the name of the calling package (OpenMP). This can lead to 2025-08-26T19:43:10.6168909Z problems in calling code that expects `find_package` result variables 2025-08-26T19:43:10.6180199Z (e.g., `_FOUND`) to follow a certain pattern. 2025-08-26T19:43:10.6180559Z Call Stack (most recent call first): 2025-08-26T19:43:10.6180972Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-08-26T19:43:10.6181500Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-08-26T19:43:10.6181938Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-08-26T19:43:10.6182385Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-08-26T19:43:10.6182691Z 2025-08-26T19:43:10.6183139Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-08-26T19:43:10.6183888Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-08-26T19:43:10.6184406Z does not match the name of the calling package (OpenMP). This can lead to 2025-08-26T19:43:10.6184918Z problems in calling code that expects `find_package` result variables 2025-08-26T19:43:10.6185339Z (e.g., `_FOUND`) to follow a certain pattern. 2025-08-26T19:43:10.6185647Z Call Stack (most recent call first): 2025-08-26T19:43:10.6186050Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-08-26T19:43:10.6186562Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-08-26T19:43:10.6186995Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-08-26T19:43:10.6187427Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-08-26T19:43:10.6187737Z 2025-08-26T19:43:10.6187849Z -- Found OpenMP_C: -openmp:experimental 2025-08-26T19:43:10.6188175Z -- Found OpenMP_CXX: -openmp:experimental 2025-08-26T19:43:10.6605458Z -- Enabled testing coverage: CI 2025-08-26T19:43:10.6618310Z -- Enabled workload: TRAINING 2025-08-26T19:43:10.6618607Z -- Enabled primitives: ALL 2025-08-26T19:43:10.6618980Z -- Enabled primitive CPU ISA: ALL 2025-08-26T19:43:10.6619358Z -- Enabled primitive GPU ISA: ALL 2025-08-26T19:43:10.6619851Z -- Enabled GeMM kernels ISA: ALL 2025-08-26T19:43:10.6728443Z -- Primitive cache is enabled 2025-08-26T19:43:10.6729392Z -- Experimental functionality for ukernels is enabled 2025-08-26T19:43:10.7359831Z -- The ASM_MASM compiler identification is MSVC 2025-08-26T19:43:10.7866078Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/ml64.exe 2025-08-26T19:43:10.8105083Z -- Graph component is enabled 2025-08-26T19:43:10.8216484Z -- Graph compiler backend is disabled. 2025-08-26T19:43:10.8347607Z -- Found MKL-DNN: TRUE 2025-08-26T19:43:10.8437851Z -- {fmt} version: 11.2.0 2025-08-26T19:43:10.8438191Z -- Build type: Release 2025-08-26T19:43:10.8521400Z -- Using Kineto with CUPTI support 2025-08-26T19:43:10.8522716Z -- Configuring Kineto dependency: 2025-08-26T19:43:10.8523559Z -- KINETO_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-08-26T19:43:10.8524162Z -- KINETO_BUILD_TESTS = OFF 2025-08-26T19:43:10.8524408Z -- KINETO_LIBRARY_TYPE = static 2025-08-26T19:43:10.8524799Z -- CUDA_SOURCE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-08-26T19:43:10.8525566Z -- CUDA_INCLUDE_DIRS = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-08-26T19:43:10.8527806Z -- CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-08-26T19:43:10.8528648Z -- CUDA_cupti_LIBRARY = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/lib64/cupti.lib 2025-08-26T19:43:10.8529604Z -- Found CUPTI 2025-08-26T19:43:10.8592071Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-08-26T19:43:10.8593181Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-08-26T19:43:10.8594161Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-08-26T19:43:10.8594672Z the cmake_policy command to set the policy and suppress this warning. 2025-08-26T19:43:10.8594976Z 2025-08-26T19:43:10.8595167Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-08-26T19:43:10.8595470Z 2025-08-26T19:43:10.9070625Z -- Found PythonInterp: C:/Jenkins/Miniconda3/python.exe (found version "3.9.19") 2025-08-26T19:43:10.9074824Z -- ROCM_SOURCE_DIR = 2025-08-26T19:43:11.0318772Z -- Kineto: FMT_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt 2025-08-26T19:43:11.0319473Z -- Kineto: FMT_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt/include 2025-08-26T19:43:11.0320146Z -- CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-08-26T19:43:11.0320670Z -- ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-08-26T19:43:11.0321265Z -- DYNOLOG_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-08-26T19:43:11.0322210Z -- IPCFABRIC_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-08-26T19:43:11.0349206Z -- Configured Kineto 2025-08-26T19:43:11.0404923Z -- Performing Test HAS/WD4624 2025-08-26T19:43:11.4045126Z -- Performing Test HAS/WD4624 - Success 2025-08-26T19:43:11.4070045Z -- Performing Test HAS/WD4068 2025-08-26T19:43:11.7549668Z -- Performing Test HAS/WD4068 - Success 2025-08-26T19:43:11.7574726Z -- Performing Test HAS/WD4067 2025-08-26T19:43:12.0869326Z -- Performing Test HAS/WD4067 - Success 2025-08-26T19:43:12.0893933Z -- Performing Test HAS/WD4267 2025-08-26T19:43:12.4240176Z -- Performing Test HAS/WD4267 - Success 2025-08-26T19:43:12.4265247Z -- Performing Test HAS/WD4661 2025-08-26T19:43:12.7608649Z -- Performing Test HAS/WD4661 - Success 2025-08-26T19:43:12.7633450Z -- Performing Test HAS/WD4717 2025-08-26T19:43:13.0930817Z -- Performing Test HAS/WD4717 - Success 2025-08-26T19:43:13.0955301Z -- Performing Test HAS/WD4244 2025-08-26T19:43:13.4192509Z -- Performing Test HAS/WD4244 - Success 2025-08-26T19:43:13.4217414Z -- Performing Test HAS/WD4804 2025-08-26T19:43:13.7469588Z -- Performing Test HAS/WD4804 - Success 2025-08-26T19:43:13.7493987Z -- Performing Test HAS/WD4273 2025-08-26T19:43:14.0737689Z -- Performing Test HAS/WD4273 - Success 2025-08-26T19:43:14.0763228Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-08-26T19:43:14.1579936Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-08-26T19:43:15.2546793Z -- 2025-08-26T19:43:15.2547989Z -- Architecture: x64 2025-08-26T19:43:15.2551355Z -- Use the C++ compiler to compile (MI_USE_CXX=ON) 2025-08-26T19:43:15.2557980Z -- 2025-08-26T19:43:15.2558184Z -- Library name : mimalloc 2025-08-26T19:43:15.2558425Z -- Version : 2.2.4 2025-08-26T19:43:15.2558663Z -- Build type : release 2025-08-26T19:43:15.2559247Z -- C++ Compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe 2025-08-26T19:43:15.2559868Z -- Compiler flags : /Zc:__cplusplus 2025-08-26T19:43:15.2560224Z -- Compiler defines : MI_CMAKE_BUILD_TYPE=release;MI_BUILD_RELEASE 2025-08-26T19:43:15.2560665Z -- Link libraries : psapi;shell32;user32;advapi32;bcrypt 2025-08-26T19:43:15.2561189Z -- Build targets : static 2025-08-26T19:43:15.2561405Z -- 2025-08-26T19:43:15.2670180Z -- don't use NUMA 2025-08-26T19:43:15.2725632Z -- Looking for backtrace 2025-08-26T19:43:15.3945420Z -- Looking for backtrace - not found 2025-08-26T19:43:15.4036789Z -- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR) 2025-08-26T19:43:19.8588938Z -- headers outputs: 2025-08-26T19:43:21.8909874Z -- sources outputs: 2025-08-26T19:43:23.3978840Z -- declarations_yaml outputs: 2025-08-26T19:43:23.4057791Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT 2025-08-26T19:43:28.8026572Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Failed 2025-08-26T19:43:29.0257366Z -- Using ATen parallel backend: OMP 2025-08-26T19:43:29.5851598Z -- Found OpenSSL: C:/Jenkins/Miniconda3/Library/lib/libcrypto.lib (found version "3.0.17") 2025-08-26T19:43:29.6130735Z -- Check size of long double 2025-08-26T19:43:29.9870609Z -- Check size of long double - done 2025-08-26T19:43:29.9875585Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-08-26T19:43:30.1184322Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-08-26T19:43:30.1187865Z -- Performing Test COMPILER_SUPPORTS_SSE2 2025-08-26T19:43:30.4895794Z -- Performing Test COMPILER_SUPPORTS_SSE2 - Success 2025-08-26T19:43:30.4899158Z -- Performing Test COMPILER_SUPPORTS_SSE4 2025-08-26T19:43:30.8464832Z -- Performing Test COMPILER_SUPPORTS_SSE4 - Success 2025-08-26T19:43:30.8468040Z -- Performing Test COMPILER_SUPPORTS_AVX 2025-08-26T19:43:31.3013593Z -- Performing Test COMPILER_SUPPORTS_AVX - Success 2025-08-26T19:43:31.3016884Z -- Performing Test COMPILER_SUPPORTS_FMA4 2025-08-26T19:43:31.6618377Z -- Performing Test COMPILER_SUPPORTS_FMA4 - Success 2025-08-26T19:43:31.6621585Z -- Performing Test COMPILER_SUPPORTS_AVX2 2025-08-26T19:43:32.0271097Z -- Performing Test COMPILER_SUPPORTS_AVX2 - Success 2025-08-26T19:43:32.0274520Z -- Performing Test COMPILER_SUPPORTS_AVX512F 2025-08-26T19:43:32.3897219Z -- Performing Test COMPILER_SUPPORTS_AVX512F - Success 2025-08-26T19:43:32.3941626Z -- Found OpenMP_C: -openmp:experimental (found version "2.0") 2025-08-26T19:43:32.3954272Z -- Found OpenMP_CXX: -openmp:experimental (found version "2.0") 2025-08-26T19:43:32.3964321Z -- Found OpenMP: TRUE (found version "2.0") 2025-08-26T19:43:32.3969943Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-08-26T19:43:32.7436617Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Success 2025-08-26T19:43:32.7439180Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-08-26T19:43:32.8700158Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-08-26T19:43:32.8703020Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-08-26T19:43:33.0072244Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-08-26T19:43:33.0075341Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-08-26T19:43:33.2081747Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Failed 2025-08-26T19:43:33.2084847Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-08-26T19:43:33.2943054Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-08-26T19:43:33.3843324Z Target system: Windows-10.0.17763 2025-08-26T19:43:33.3843699Z -- Configuring build for SLEEF-v3.8.0 2025-08-26T19:43:33.3844240Z Target processor: AMD64 2025-08-26T19:43:33.3844502Z Host system: Windows-10.0.17763 2025-08-26T19:43:33.3844783Z Host processor: AMD64 2025-08-26T19:43:33.3846443Z Detected C compiler: MSVC @ C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe 2025-08-26T19:43:33.3847119Z CMake: 3.27.9 2025-08-26T19:43:33.3847420Z Make program: C:/Jenkins/Miniconda3/Library/bin/ninja.exe 2025-08-26T19:43:33.3847947Z -- Using option `/D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE ` to compile libsleef 2025-08-26T19:43:33.3848434Z -- Building shared libs : OFF 2025-08-26T19:43:33.3848704Z -- Building static test bins: OFF 2025-08-26T19:43:33.3849149Z -- MPFR : LIB_MPFR-NOTFOUND 2025-08-26T19:43:33.3849397Z -- GMP : LIBGMP-NOTFOUND 2025-08-26T19:43:33.3849626Z -- RT : 2025-08-26T19:43:33.3849821Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-08-26T19:43:33.3850078Z -- OPENSSL : 3.0.17 2025-08-26T19:43:33.3850317Z -- SDE : SDE_COMMAND-NOTFOUND 2025-08-26T19:43:33.3850576Z -- COMPILER_SUPPORTS_OPENMP : FALSE 2025-08-26T19:43:33.4398414Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-08-26T19:43:33.4399059Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-08-26T19:43:33.4399867Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-08-26T19:43:33.4401592Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-08-26T19:43:34.0962031Z -- NVSHMEM not found, not building with NVSHMEM support. 2025-08-26T19:43:34.3067981Z CMake Warning at CMakeLists.txt:1281 (message): 2025-08-26T19:43:34.3068957Z Generated cmake files are only fully tested if one builds with system glog, 2025-08-26T19:43:34.3070011Z gflags, and protobuf. Other settings may generate files that are not well 2025-08-26T19:43:34.3070754Z tested. 2025-08-26T19:43:34.3070955Z 2025-08-26T19:43:34.3070964Z 2025-08-26T19:43:34.3091492Z -- 2025-08-26T19:43:34.3091740Z -- ******** Summary ******** 2025-08-26T19:43:34.3092076Z -- General: 2025-08-26T19:43:34.3092339Z -- CMake version : 3.27.9 2025-08-26T19:43:34.3092739Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-08-26T19:43:34.3093153Z -- System : Windows 2025-08-26T19:43:34.3093850Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe 2025-08-26T19:43:34.3094537Z -- C++ compiler id : MSVC 2025-08-26T19:43:34.3094858Z -- C++ compiler version : 19.42.34444.0 2025-08-26T19:43:34.3095233Z -- Using ccache if found : OFF 2025-08-26T19:43:34.3096582Z -- CXX flags : /DWIN32 /D_WINDOWS /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOROCTRACER -DLIBKINETO_NOXPUPTI=ON -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE /wd4624 /wd4068 /wd4067 /wd4267 /wd4661 /wd4717 /wd4244 /wd4804 /wd4273 2025-08-26T19:43:34.3098164Z -- Shared LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-08-26T19:43:34.3098694Z -- Static LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-08-26T19:43:34.3099282Z -- Module LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-08-26T19:43:34.3099711Z -- Build type : Release 2025-08-26T19:43:34.3100934Z -- 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-08-26T19:43:34.3103677Z -- 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-08-26T19:43:34.3105223Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-08-26T19:43:34.3105650Z -- USE_GOLD_LINKER : OFF 2025-08-26T19:43:34.3105895Z -- 2025-08-26T19:43:34.3106098Z -- TORCH_VERSION : 2.9.0 2025-08-26T19:43:34.3106388Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-08-26T19:43:34.3106677Z -- BUILD_BINARY : OFF 2025-08-26T19:43:34.3106963Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-08-26T19:43:34.3107232Z -- Link local protobuf : ON 2025-08-26T19:43:34.3107498Z -- BUILD_PYTHON : True 2025-08-26T19:43:34.3107875Z -- Python version : 3.9.19 2025-08-26T19:43:34.3108237Z -- Python executable : C:\Jenkins\Miniconda3\python.exe 2025-08-26T19:43:34.3108725Z -- Python library : C:/Jenkins/Miniconda3/libs/python39.lib 2025-08-26T19:43:34.3109201Z -- Python includes : C:/Jenkins/Miniconda3/include 2025-08-26T19:43:34.3109692Z -- Python site-package : C:\Jenkins\Miniconda3\Lib\site-packages 2025-08-26T19:43:34.3110071Z -- BUILD_SHARED_LIBS : ON 2025-08-26T19:43:34.3110368Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-08-26T19:43:34.3110674Z -- BUILD_TEST : True 2025-08-26T19:43:34.3110950Z -- BUILD_JNI : OFF 2025-08-26T19:43:34.3111204Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-08-26T19:43:34.3111479Z -- BUILD_LITE_INTERPRETER: OFF 2025-08-26T19:43:34.3111754Z -- INTERN_BUILD_MOBILE : 2025-08-26T19:43:34.3112000Z -- TRACING_BASED : OFF 2025-08-26T19:43:34.3112271Z -- USE_BLAS : 1 2025-08-26T19:43:34.3112514Z -- BLAS : mkl 2025-08-26T19:43:34.3112775Z -- BLAS_HAS_SBGEMM : 2025-08-26T19:43:34.3113016Z -- USE_LAPACK : 1 2025-08-26T19:43:34.3113277Z -- LAPACK : mkl 2025-08-26T19:43:34.3113516Z -- USE_ASAN : OFF 2025-08-26T19:43:34.3113781Z -- USE_TSAN : OFF 2025-08-26T19:43:34.3114032Z -- USE_CPP_CODE_COVERAGE : OFF 2025-08-26T19:43:34.3114298Z -- USE_CUDA : 1 2025-08-26T19:43:34.3114553Z -- CUDA static link : OFF 2025-08-26T19:43:34.3114913Z -- USE_CUDNN : ON 2025-08-26T19:43:34.3115180Z -- USE_CUSPARSELT : OFF 2025-08-26T19:43:34.3115491Z -- USE_CUDSS : OFF 2025-08-26T19:43:34.3115790Z -- USE_CUFILE : OFF 2025-08-26T19:43:34.3116035Z -- CUDA version : 12.6 2025-08-26T19:43:34.3116302Z -- USE_FLASH_ATTENTION : OFF 2025-08-26T19:43:34.3116553Z -- USE_MEM_EFF_ATTENTION : ON 2025-08-26T19:43:34.3116822Z -- cuDNN version : 9.10.2 2025-08-26T19:43:34.3117233Z -- CUDA root directory : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-08-26T19:43:34.3117873Z -- CUDA library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cuda.lib 2025-08-26T19:43:34.3118558Z -- cudart library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudart.lib 2025-08-26T19:43:34.3119240Z -- cublas library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cublas.lib 2025-08-26T19:43:34.3119917Z -- cufft library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cufft.lib 2025-08-26T19:43:34.3120580Z -- curand library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/curand.lib 2025-08-26T19:43:34.3121388Z -- cusparse library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cusparse.lib 2025-08-26T19:43:34.3122134Z -- cuDNN library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-08-26T19:43:34.3122769Z -- nvrtc : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/nvrtc.lib 2025-08-26T19:43:34.3123388Z -- CUDA include path : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-08-26T19:43:34.3124158Z -- NVCC executable : C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-08-26T19:43:34.3124800Z -- CUDA compiler : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-08-26T19:43:34.3128787Z -- 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-08-26T19:43:34.3133072Z -- CUDA host compiler : 2025-08-26T19:43:34.3133349Z -- CUDA --device-c : OFF 2025-08-26T19:43:34.3133607Z -- USE_TENSORRT : 2025-08-26T19:43:34.3133870Z -- USE_XPU : 0 2025-08-26T19:43:34.3134119Z -- USE_ROCM : OFF 2025-08-26T19:43:34.3134373Z -- BUILD_NVFUSER : 2025-08-26T19:43:34.3134616Z -- USE_EIGEN_FOR_BLAS : 2025-08-26T19:43:34.3134875Z -- USE_EIGEN_FOR_SPARSE : OFF 2025-08-26T19:43:34.3135145Z -- USE_FBGEMM : OFF 2025-08-26T19:43:34.3135431Z -- USE_KINETO : ON 2025-08-26T19:43:34.3135668Z -- USE_GFLAGS : OFF 2025-08-26T19:43:34.3135928Z -- USE_GLOG : OFF 2025-08-26T19:43:34.3136177Z -- USE_LITE_PROTO : OFF 2025-08-26T19:43:34.3136450Z -- USE_PYTORCH_METAL : OFF 2025-08-26T19:43:34.3136729Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-08-26T19:43:34.3137014Z -- USE_MPS : OFF 2025-08-26T19:43:34.3137272Z -- CAN_COMPILE_METAL : 2025-08-26T19:43:34.3137510Z -- USE_MKL : ON 2025-08-26T19:43:34.3137762Z -- USE_STATIC_MKL : OFF 2025-08-26T19:43:34.3138073Z -- USE_MKLDNN : ON 2025-08-26T19:43:34.3138377Z -- USE_MKLDNN_ACL : OFF 2025-08-26T19:43:34.3138627Z -- USE_MKLDNN_CBLAS : OFF 2025-08-26T19:43:34.3138893Z -- USE_UCC : OFF 2025-08-26T19:43:34.3139129Z -- USE_ITT : ON 2025-08-26T19:43:34.3139380Z -- USE_XCCL : OFF 2025-08-26T19:43:34.3139636Z -- USE_NCCL : OFF 2025-08-26T19:43:34.3139887Z -- Found NVSHMEM : 2025-08-26T19:43:34.3140139Z -- USE_NNPACK : OFF 2025-08-26T19:43:34.3140381Z -- USE_NUMPY : ON 2025-08-26T19:43:34.3140644Z -- USE_OBSERVERS : ON 2025-08-26T19:43:34.3140885Z -- USE_OPENCL : OFF 2025-08-26T19:43:34.3141138Z -- USE_OPENMP : ON 2025-08-26T19:43:34.3141386Z -- USE_MIMALLOC : ON 2025-08-26T19:43:34.3141646Z -- USE_MIMALLOC_ON_MKL : OFF 2025-08-26T19:43:34.3141901Z -- USE_VULKAN : OFF 2025-08-26T19:43:34.3142157Z -- USE_PROF : OFF 2025-08-26T19:43:34.3142418Z -- USE_PYTORCH_QNNPACK : OFF 2025-08-26T19:43:34.3142667Z -- USE_XNNPACK : ON 2025-08-26T19:43:34.3142931Z -- USE_DISTRIBUTED : ON 2025-08-26T19:43:34.3143173Z -- USE_MPI : OFF 2025-08-26T19:43:34.3143436Z -- USE_GLOO : ON 2025-08-26T19:43:34.3143750Z -- USE_GLOO_WITH_OPENSSL : OFF 2025-08-26T19:43:34.3144110Z -- USE_GLOO_IBVERBS : OFF 2025-08-26T19:43:34.3144370Z -- USE_TENSORPIPE : OFF 2025-08-26T19:43:34.3144695Z -- Public Dependencies : caffe2::mkl 2025-08-26T19:43:34.3145598Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;XNNPACK;microkernels-prod;ittnotify;fp16;caffe2::openmp;gloo;fmt::fmt-header-only;kineto 2025-08-26T19:43:34.3146339Z -- Public CUDA Deps. : 2025-08-26T19:43:34.3148556Z -- 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-08-26T19:43:34.3150868Z -- USE_COREML_DELEGATE : OFF 2025-08-26T19:43:34.3151148Z -- BUILD_LAZY_TS_BACKEND : ON 2025-08-26T19:43:34.3151436Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-08-26T19:43:34.3212141Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-08-26T19:43:34.3999884Z -- Performing Test HAS_WMISSING_PROTOTYPES - Failed 2025-08-26T19:43:34.4025547Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-08-26T19:43:34.4794558Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Failed 2025-08-26T19:43:34.4873101Z -- Configuring done (89.8s) 2025-08-26T19:43:41.7830038Z -- Generating done (6.2s) 2025-08-26T19:43:42.0247012Z CMake Warning: 2025-08-26T19:43:42.0247386Z Manually-specified variables were not used by the project: 2025-08-26T19:43:42.0247692Z 2025-08-26T19:43:42.0247777Z BUILD_ENVIRONMENT 2025-08-26T19:43:42.0247987Z BUILD_TYPE 2025-08-26T19:43:42.0248186Z BUILD_WHEEL 2025-08-26T19:43:42.0248340Z 2025-08-26T19:43:42.0248345Z 2025-08-26T19:43:42.0275084Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/build 2025-08-26T19:43:42.1206872Z cmake --build . --target install --config Release -j 8 2025-08-26T19:43:47.8721823Z [1/4] Generating ATen declarations_yaml 2025-08-26T19:43:55.1585296Z [2/4] Generating ATen headers 2025-08-26T19:43:56.4087600Z [3/4] Generating ATen sources 2025-08-26T19:44:01.8477969Z [1/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\arena.cc.obj 2025-08-26T19:44:01.8645968Z [2/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-08-26T19:44:01.8715879Z [3/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any_lite.cc.obj 2025-08-26T19:44:01.8731934Z [4/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-08-26T19:44:01.8798629Z [5/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-08-26T19:44:01.8881368Z [6/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-08-26T19:44:01.8956721Z [7/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-08-26T19:44:01.9758392Z [8/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set.cc.obj 2025-08-26T19:44:02.1551469Z [9/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-08-26T19:44:02.1760954Z [10/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\parse_context.cc.obj 2025-08-26T19:44:02.1775701Z [11/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-08-26T19:44:02.1838198Z [12/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-08-26T19:44:02.1904977Z [13/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-08-26T19:44:02.1981489Z [14/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message_lite.cc.obj 2025-08-26T19:44:02.2472067Z [15/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-08-26T19:44:02.4248450Z [16/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-08-26T19:44:02.4326839Z [17/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-08-26T19:44:02.4527943Z [18/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-08-26T19:44:02.4541541Z [19/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-08-26T19:44:02.4853793Z [20/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-08-26T19:44:02.5378728Z [21/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-08-26T19:44:02.6308813Z [22/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-08-26T19:44:02.6936112Z [23/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-08-26T19:44:02.7139598Z [24/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-08-26T19:44:02.7406022Z [25/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.cc.obj 2025-08-26T19:44:02.8004882Z [26/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.pb.cc.obj 2025-08-26T19:44:02.8525350Z [27/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-08-26T19:44:02.9528605Z [28/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\api.pb.cc.obj 2025-08-26T19:44:03.0106023Z [29/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\importer.cc.obj 2025-08-26T19:44:03.0779274Z [30/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\parser.cc.obj 2025-08-26T19:44:03.1392840Z [31/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.cc.obj 2025-08-26T19:44:03.1481917Z [32/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.pb.cc.obj 2025-08-26T19:44:03.2942425Z [33/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\duration.pb.cc.obj 2025-08-26T19:44:03.2973879Z [34/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor_database.cc.obj 2025-08-26T19:44:03.3108705Z [35/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\dynamic_message.cc.obj 2025-08-26T19:44:03.3663504Z [36/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\empty.pb.cc.obj 2025-08-26T19:44:03.3678819Z [37/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\gzip_stream.cc.obj 2025-08-26T19:44:03.4572519Z [38/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set_heavy.cc.obj 2025-08-26T19:44:03.4652101Z [39/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\field_mask.pb.cc.obj 2025-08-26T19:44:03.5446992Z [40/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-08-26T19:44:03.5765578Z [41/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-08-26T19:44:03.6252331Z [42/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\tokenizer.cc.obj 2025-08-26T19:44:03.6444558Z [43/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven.cc.obj 2025-08-26T19:44:03.6554066Z [44/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\printer.cc.obj 2025-08-26T19:44:03.6775426Z [45/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_reflection.cc.obj 2025-08-26T19:44:03.7890716Z [46/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\map_field.cc.obj 2025-08-26T19:44:03.8459944Z [47/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\service.cc.obj 2025-08-26T19:44:03.8976850Z [48/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\substitute.cc.obj 2025-08-26T19:44:03.9099034Z [49/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\reflection_ops.cc.obj 2025-08-26T19:44:03.9116740Z [50/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message.cc.obj 2025-08-26T19:44:03.9590046Z [51/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\source_context.pb.cc.obj 2025-08-26T19:44:04.0096024Z [52/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\struct.pb.cc.obj 2025-08-26T19:44:04.0628466Z [53/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\text_format.cc.obj 2025-08-26T19:44:04.1192815Z [54/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\timestamp.pb.cc.obj 2025-08-26T19:44:04.1967635Z [55/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\delimited_message_util.cc.obj 2025-08-26T19:44:04.2159874Z [56/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\unknown_field_set.cc.obj 2025-08-26T19:44:04.2249822Z [57/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\type.pb.cc.obj 2025-08-26T19:44:04.2309899Z [58/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_comparator.cc.obj 2025-08-26T19:44:04.3205503Z [59/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_mask_util.cc.obj 2025-08-26T19:44:04.3815618Z [60/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\error_listener.cc.obj 2025-08-26T19:44:04.3905473Z [61/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\datapiece.cc.obj 2025-08-26T19:44:04.4585688Z [62/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\default_value_objectwriter.cc.obj 2025-08-26T19:44:04.4954453Z [63/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_escaping.cc.obj 2025-08-26T19:44:04.5163932Z [64/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_stream_parser.cc.obj 2025-08-26T19:44:04.5541757Z [65/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\field_mask_utility.cc.obj 2025-08-26T19:44:04.6165645Z [66/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_objectwriter.cc.obj 2025-08-26T19:44:04.6840768Z [67/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\object_writer.cc.obj 2025-08-26T19:44:04.7713910Z [68/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\proto_writer.cc.obj 2025-08-26T19:44:04.8010589Z [69/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectsource.cc.obj 2025-08-26T19:44:04.8317235Z [70/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectwriter.cc.obj 2025-08-26T19:44:04.8638028Z [71/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info_test_helper.cc.obj 2025-08-26T19:44:04.8721758Z [72/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info.cc.obj 2025-08-26T19:44:04.8830585Z [73/7555] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\version.rc.res 2025-08-26T19:44:04.9367634Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-08-26T19:44:04.9368467Z 2025-08-26T19:44:04.9368480Z 2025-08-26T19:44:04.9368869Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-08-26T19:44:04.9369407Z 2025-08-26T19:44:04.9369415Z 2025-08-26T19:44:04.9369422Z 2025-08-26T19:44:04.9369460Z 2025-08-26T19:44:04.9370326Z [74/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\utility.cc.obj 2025-08-26T19:44:05.0025853Z [75/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\json_util.cc.obj 2025-08-26T19:44:05.1427286Z [76/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\message_differencer.cc.obj 2025-08-26T19:44:05.1715857Z [77/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\type_resolver_util.cc.obj 2025-08-26T19:44:05.2228556Z [78/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format.cc.obj 2025-08-26T19:44:05.2306484Z [79/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\code_generator.cc.obj 2025-08-26T19:44:05.2329147Z [80/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wrappers.pb.cc.obj 2025-08-26T19:44:05.3494389Z [81/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum.cc.obj 2025-08-26T19:44:05.4690553Z [82/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\command_line_interface.cc.obj 2025-08-26T19:44:05.5264925Z [83/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum_field.cc.obj 2025-08-26T19:44:05.5392518Z [84/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_extension.cc.obj 2025-08-26T19:44:05.5634353Z [85/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_field.cc.obj 2025-08-26T19:44:05.5972496Z [86/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_generator.cc.obj 2025-08-26T19:44:05.6110698Z [87/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_file.cc.obj 2025-08-26T19:44:05.7211691Z [88/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_helpers.cc.obj 2025-08-26T19:44:05.8140190Z [89/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_map_field.cc.obj 2025-08-26T19:44:05.9011885Z [90/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message.cc.obj 2025-08-26T19:44:05.9104800Z [91/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message_field.cc.obj 2025-08-26T19:44:05.9192287Z [92/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_padding_optimizer.cc.obj 2025-08-26T19:44:05.9536796Z [93/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_primitive_field.cc.obj 2025-08-26T19:44:05.9730064Z [94/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_service.cc.obj 2025-08-26T19:44:06.0720372Z [95/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_doc_comment.cc.obj 2025-08-26T19:44:06.1031187Z [96/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_string_field.cc.obj 2025-08-26T19:44:06.2575140Z [97/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum.cc.obj 2025-08-26T19:44:06.2638614Z [98/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum_field.cc.obj 2025-08-26T19:44:06.2697827Z [99/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_field_base.cc.obj 2025-08-26T19:44:06.3180156Z [100/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_generator.cc.obj 2025-08-26T19:44:06.3432540Z [101/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_helpers.cc.obj 2025-08-26T19:44:06.3542512Z [102/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\time_util.cc.obj 2025-08-26T19:44:06.4767663Z [103/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message.cc.obj 2025-08-26T19:44:06.4966336Z [104/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_map_field.cc.obj 2025-08-26T19:44:06.5814537Z [105/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message_field.cc.obj 2025-08-26T19:44:06.6093178Z [106/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_primitive_field.cc.obj 2025-08-26T19:44:06.6161518Z [107/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_reflection_class.cc.obj 2025-08-26T19:44:06.6594324Z [108/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_enum_field.cc.obj 2025-08-26T19:44:06.6809950Z [109/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_message_field.cc.obj 2025-08-26T19:44:06.7975118Z [110/7555] Linking CXX static library lib\libprotobuf.lib 2025-08-26T19:44:06.8362101Z [111/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_primitive_field.cc.obj 2025-08-26T19:44:06.8435909Z [112/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_source_generator_base.cc.obj 2025-08-26T19:44:06.8897584Z [113/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_doc_comment.cc.obj 2025-08-26T19:44:06.9564107Z [114/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_context.cc.obj 2025-08-26T19:44:06.9671884Z [115/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_wrapper_field.cc.obj 2025-08-26T19:44:07.0455943Z [116/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field.cc.obj 2025-08-26T19:44:07.0568855Z [117/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum.cc.obj 2025-08-26T19:44:07.1695600Z [118/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field_lite.cc.obj 2025-08-26T19:44:07.2181510Z [119/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_lite.cc.obj 2025-08-26T19:44:07.2275971Z [120/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension.cc.obj 2025-08-26T19:44:07.2538473Z [121/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension_lite.cc.obj 2025-08-26T19:44:07.3286379Z [122/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_field.cc.obj 2025-08-26T19:44:07.3694307Z [123/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_file.cc.obj 2025-08-26T19:44:07.4299435Z [124/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator.cc.obj 2025-08-26T19:44:07.4317789Z [125/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator_factory.cc.obj 2025-08-26T19:44:07.5790715Z [126/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_helpers.cc.obj 2025-08-26T19:44:07.5909177Z [127/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field_lite.cc.obj 2025-08-26T19:44:07.6100610Z [128/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field.cc.obj 2025-08-26T19:44:07.6481532Z [129/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message.cc.obj 2025-08-26T19:44:07.7097550Z [130/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder.cc.obj 2025-08-26T19:44:07.7377828Z [131/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder_lite.cc.obj 2025-08-26T19:44:07.8201434Z [132/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field_lite.cc.obj 2025-08-26T19:44:07.8223168Z [133/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field.cc.obj 2025-08-26T19:44:07.9826575Z [134/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_lite.cc.obj 2025-08-26T19:44:07.9940077Z [135/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field.cc.obj 2025-08-26T19:44:08.0070021Z [136/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_name_resolver.cc.obj 2025-08-26T19:44:08.0209121Z [137/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field_lite.cc.obj 2025-08-26T19:44:08.0641852Z [138/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\well_known_types_embed.cc.obj 2025-08-26T19:44:08.1037165Z [139/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_service.cc.obj 2025-08-26T19:44:08.1132117Z [140/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_shared_code_generator.cc.obj 2025-08-26T19:44:08.1831446Z [141/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field.cc.obj 2025-08-26T19:44:08.1902492Z [142/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field_lite.cc.obj 2025-08-26T19:44:08.3792568Z [143/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum_field.cc.obj 2025-08-26T19:44:08.3888367Z [144/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum.cc.obj 2025-08-26T19:44:08.3982488Z [145/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\js_generator.cc.obj 2025-08-26T19:44:08.4177226Z [146/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_extension.cc.obj 2025-08-26T19:44:08.4723603Z [147/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_field.cc.obj 2025-08-26T19:44:08.5121383Z [148/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_file.cc.obj 2025-08-26T19:44:08.5523188Z [149/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_generator.cc.obj 2025-08-26T19:44:08.5795999Z [150/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_helpers.cc.obj 2025-08-26T19:44:08.7468296Z [151/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_map_field.cc.obj 2025-08-26T19:44:08.7784557Z [152/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message_field.cc.obj 2025-08-26T19:44:08.7874032Z [153/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message.cc.obj 2025-08-26T19:44:08.7940584Z [154/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_oneof.cc.obj 2025-08-26T19:44:08.8833799Z [155/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\php\php_generator.cc.obj 2025-08-26T19:44:08.8927698Z [156/7555] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\version.rc.res 2025-08-26T19:44:08.9068449Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-08-26T19:44:08.9069344Z 2025-08-26T19:44:08.9069358Z 2025-08-26T19:44:08.9069685Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-08-26T19:44:08.9070182Z 2025-08-26T19:44:08.9070194Z 2025-08-26T19:44:08.9070221Z 2025-08-26T19:44:08.9070228Z 2025-08-26T19:44:08.9071196Z [157/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_primitive_field.cc.obj 2025-08-26T19:44:08.9168814Z [158/7555] Building RC object third_party\protobuf\cmake\CMakeFiles\protoc.dir\version.rc.res 2025-08-26T19:44:08.9337038Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-08-26T19:44:08.9337596Z 2025-08-26T19:44:08.9337605Z 2025-08-26T19:44:08.9337910Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-08-26T19:44:08.9338391Z 2025-08-26T19:44:08.9338424Z 2025-08-26T19:44:08.9338431Z 2025-08-26T19:44:08.9338440Z 2025-08-26T19:44:08.9339413Z [159/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.cc.obj 2025-08-26T19:44:08.9483948Z [160/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.pb.cc.obj 2025-08-26T19:44:09.0258217Z [161/7555] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\legacy-api.c.obj 2025-08-26T19:44:09.0575360Z [162/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\zip_writer.cc.obj 2025-08-26T19:44:09.1429464Z [163/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\python\python_generator.cc.obj 2025-08-26T19:44:09.1597870Z [164/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\ruby\ruby_generator.cc.obj 2025-08-26T19:44:09.1729457Z [165/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\protoc.dir\__\src\google\protobuf\compiler\main.cc.obj 2025-08-26T19:44:09.2212317Z [166/7555] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\portable-api.c.obj 2025-08-26T19:44:09.2397779Z [167/7555] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\memory.c.obj 2025-08-26T19:44:09.2553483Z [168/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\subprocess.cc.obj 2025-08-26T19:44:09.2825402Z [169/7555] Building C object sleef\src\libm\CMakeFiles\mkalias.dir\mkalias.c.obj 2025-08-26T19:44:09.2976381Z [170/7555] Building C object sleef\src\libm\CMakeFiles\mkdisp.dir\mkdisp.c.obj 2025-08-26T19:44:09.3044645Z [171/7555] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\windows.c.obj 2025-08-26T19:44:09.3171038Z [172/7555] Building C object sleef\src\libm\CMakeFiles\mkrename.dir\mkrename.c.obj 2025-08-26T19:44:09.3342987Z [173/7555] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\fastpath.c.obj 2025-08-26T19:44:09.3657170Z [174/7555] Linking C static library lib\pthreadpool.lib 2025-08-26T19:44:09.3856117Z [175/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\info.c.obj 2025-08-26T19:44:09.4095068Z [176/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\init.c.obj 2025-08-26T19:44:09.4334161Z [177/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\vendor.c.obj 2025-08-26T19:44:09.4499943Z [178/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\uarch.c.obj 2025-08-26T19:44:09.4590433Z [179/7555] Linking CXX static library lib\libprotoc.lib 2025-08-26T19:44:09.4846012Z [180/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\name.c.obj 2025-08-26T19:44:09.5354142Z [181/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\topology.c.obj 2025-08-26T19:44:09.5478248Z [182/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\isa.c.obj 2025-08-26T19:44:09.5493565Z [183/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\api.c.obj 2025-08-26T19:44:09.5820897Z [184/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\cache.c.obj 2025-08-26T19:44:09.5875099Z [185/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\init.c.obj 2025-08-26T19:44:09.6142898Z [186/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\init.c.obj 2025-08-26T19:44:09.6154336Z [187/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\descriptor.c.obj 2025-08-26T19:44:09.6237039Z [188/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\log.c.obj 2025-08-26T19:44:09.6542905Z [189/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\deterministic.c.obj 2025-08-26T19:44:09.6951860Z [190/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9p8x-minmax-f16c-c8.c.obj 2025-08-26T19:44:09.6964872Z [191/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9x-minmax-f16c-c8.c.obj 2025-08-26T19:44:09.7416431Z [192/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-08-26T19:44:09.7484914Z [193/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3.c.obj 2025-08-26T19:44:09.7579348Z [194/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3.c.obj 2025-08-26T19:44:09.7733659Z [195/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3.c.obj 2025-08-26T19:44:09.8002542Z [196/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u16.c.obj 2025-08-26T19:44:09.8199533Z [197/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u16.c.obj 2025-08-26T19:44:09.8628954Z [198/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\windows\init.c.obj 2025-08-26T19:44:09.8873932Z [199/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u16.c.obj 2025-08-26T19:44:09.8886197Z [200/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u1.c.obj 2025-08-26T19:44:09.8897512Z [201/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u4.c.obj 2025-08-26T19:44:09.9028583Z [202/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u16.c.obj 2025-08-26T19:44:09.9472973Z [203/7555] 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-08-26T19:44:09.9648646Z [204/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u32.c.obj 2025-08-26T19:44:09.9999717Z [205/7555] 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-08-26T19:44:10.0012269Z [206/7555] 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-08-26T19:44:10.0058363Z [207/7555] 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-08-26T19:44:10.0173510Z [208/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c64.c.obj 2025-08-26T19:44:10.0395836Z [209/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c32.c.obj 2025-08-26T19:44:10.0661477Z [210/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc4.c.obj 2025-08-26T19:44:10.0763005Z [211/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc4.c.obj 2025-08-26T19:44:10.1076141Z [212/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c8.c.obj 2025-08-26T19:44:10.1087547Z [213/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9p8x-minmax-avx2-c8.c.obj 2025-08-26T19:44:10.1135150Z [214/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-maxpool\f16-maxpool-9p8x-minmax-f16c-c8.c.obj 2025-08-26T19:44:10.1539098Z [215/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9x-minmax-avx2-c8.c.obj 2025-08-26T19:44:10.1552462Z [216/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u4.c.obj 2025-08-26T19:44:10.1725470Z [217/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u4.c.obj 2025-08-26T19:44:10.1902960Z [218/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.obj 2025-08-26T19:44:10.2077869Z [219/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc4.c.obj 2025-08-26T19:44:10.2131910Z [220/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-scalar-u2-acc2.c.obj 2025-08-26T19:44:10.2763591Z [221/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\f16-rmax-f16c-u32.c.obj 2025-08-26T19:44:10.2915094Z [222/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vadd-f16c-u16.c.obj 2025-08-26T19:44:10.3078878Z [223/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u16.c.obj 2025-08-26T19:44:10.3171453Z [224/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u8.c.obj 2025-08-26T19:44:10.3320748Z [225/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc4.c.obj 2025-08-26T19:44:10.3336768Z [226/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u2-acc2.c.obj 2025-08-26T19:44:10.3577575Z [227/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u8.c.obj 2025-08-26T19:44:10.3869383Z [228/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmax-f16c-u16.c.obj 2025-08-26T19:44:10.4012602Z [229/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u16.c.obj 2025-08-26T19:44:10.4319164Z [230/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmin-f16c-u16.c.obj 2025-08-26T19:44:10.4438138Z [231/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vminc-f16c-u16.c.obj 2025-08-26T19:44:10.4528915Z [232/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u16.c.obj 2025-08-26T19:44:10.4593392Z [233/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmul-f16c-u16.c.obj 2025-08-26T19:44:10.4697701Z [234/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u16.c.obj 2025-08-26T19:44:10.4988355Z [235/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u16.c.obj 2025-08-26T19:44:10.5173749Z [236/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u8.c.obj 2025-08-26T19:44:10.5496400Z [237/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u16.c.obj 2025-08-26T19:44:10.5732325Z [238/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u16.c.obj 2025-08-26T19:44:10.5746127Z [239/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u16.c.obj 2025-08-26T19:44:10.5848580Z [240/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u16.c.obj 2025-08-26T19:44:10.5937771Z [241/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsub-f16c-u16.c.obj 2025-08-26T19:44:10.6163269Z [242/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u16.c.obj 2025-08-26T19:44:10.6400853Z [243/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u16.c.obj 2025-08-26T19:44:10.6780645Z [244/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u16.c.obj 2025-08-26T19:44:10.6937979Z [245/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u16.c.obj 2025-08-26T19:44:10.7017765Z [246/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c8-minmax-fma3-2x.c.obj 2025-08-26T19:44:10.7030451Z [247/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u16.c.obj 2025-08-26T19:44:10.7144952Z [248/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u16.c.obj 2025-08-26T19:44:10.7515129Z [249/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u16.c.obj 2025-08-26T19:44:10.7583042Z [250/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u16.c.obj 2025-08-26T19:44:10.7748568Z [251/7555] Linking CXX executable bin\protoc.exe 2025-08-26T19:44:10.7925887Z [252/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u16.c.obj 2025-08-26T19:44:10.8190629Z [253/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u32.c.obj 2025-08-26T19:44:10.8321989Z [254/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u32.c.obj 2025-08-26T19:44:10.8384827Z [255/7555] 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-08-26T19:44:10.8402572Z [256/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.obj 2025-08-26T19:44:10.8667713Z [257/7555] Running gen_proto.py on onnx/onnx.in.proto 2025-08-26T19:44:10.8797157Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx.in.proto 2025-08-26T19:44:10.8798287Z 2025-08-26T19:44:10.8799032Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto 2025-08-26T19:44:10.8799945Z 2025-08-26T19:44:10.8800873Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto3 2025-08-26T19:44:10.8801755Z 2025-08-26T19:44:10.8802292Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-ml.pb.h 2025-08-26T19:44:10.8803043Z 2025-08-26T19:44:10.8803546Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_pb.py 2025-08-26T19:44:10.8804313Z 2025-08-26T19:44:10.8805358Z [258/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u32.c.obj 2025-08-26T19:44:10.8814489Z [259/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vabs-sse2-u16.c.obj 2025-08-26T19:44:10.9035844Z [260/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-sse2-c4.c.obj 2025-08-26T19:44:10.9084267Z [261/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vneg-sse2-u16.c.obj 2025-08-26T19:44:10.9340683Z [262/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-scalar-c1.c.obj 2025-08-26T19:44:10.9992460Z [263/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-scalar-c1.c.obj 2025-08-26T19:44:11.0100271Z [264/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-sse2-c4.c.obj 2025-08-26T19:44:11.0111320Z [265/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-scalar-c1.c.obj 2025-08-26T19:44:11.0123339Z [266/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vsqr-f16c-u16.c.obj 2025-08-26T19:44:11.0135318Z [267/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-scalar-c1.c.obj 2025-08-26T19:44:11.0148175Z [268/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-sse2-c4.c.obj 2025-08-26T19:44:11.0354139Z [269/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-sse-c4.c.obj 2025-08-26T19:44:11.1182183Z [270/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-scalar-c1.c.obj 2025-08-26T19:44:11.1231963Z [271/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-sse-c4.c.obj 2025-08-26T19:44:11.1308277Z [272/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.obj 2025-08-26T19:44:11.1385144Z [273/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.obj 2025-08-26T19:44:11.1508068Z [274/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar-acc2.c.obj 2025-08-26T19:44:11.1556476Z [275/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f.c.obj 2025-08-26T19:44:11.1609533Z [276/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar-acc2.c.obj 2025-08-26T19:44:11.2476869Z [277/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx.c.obj 2025-08-26T19:44:11.2543247Z [278/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3.c.obj 2025-08-26T19:44:11.2593010Z [279/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse.c.obj 2025-08-26T19:44:11.2699801Z [280/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.obj 2025-08-26T19:44:11.2751636Z [281/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx.c.obj 2025-08-26T19:44:11.2875310Z [282/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f.c.obj 2025-08-26T19:44:11.2942125Z [283/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3.c.obj 2025-08-26T19:44:11.3794954Z [284/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar-acc2.c.obj 2025-08-26T19:44:11.3810880Z [285/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar-acc2.c.obj 2025-08-26T19:44:11.3949385Z [286/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse.c.obj 2025-08-26T19:44:11.4002600Z [287/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx.c.obj 2025-08-26T19:44:11.4080773Z [288/7555] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-08-26T19:44:11.4144578Z [289/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f.c.obj 2025-08-26T19:44:11.4194540Z [290/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3.c.obj 2025-08-26T19:44:11.4307911Z [291/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar-acc2.c.obj 2025-08-26T19:44:11.5124998Z [292/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar-acc2.c.obj 2025-08-26T19:44:11.5313803Z [293/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.obj 2025-08-26T19:44:11.5534491Z [294/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-08-26T19:44:11.5595370Z [295/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse.c.obj 2025-08-26T19:44:11.5736921Z [296/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.obj 2025-08-26T19:44:11.5791249Z [297/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.obj 2025-08-26T19:44:11.5937716Z [298/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx.c.obj 2025-08-26T19:44:11.6036905Z [299/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f.c.obj 2025-08-26T19:44:11.6274963Z [300/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3.c.obj 2025-08-26T19:44:11.6412000Z [301/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar-acc2.c.obj 2025-08-26T19:44:11.6770370Z [302/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar-acc2.c.obj 2025-08-26T19:44:11.6835290Z [303/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse.c.obj 2025-08-26T19:44:11.7034416Z [304/7555] 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-08-26T19:44:11.7213660Z [305/7555] 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-08-26T19:44:11.7399473Z [306/7555] 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-08-26T19:44:11.7592810Z [307/7555] 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-08-26T19:44:11.7800068Z [308/7555] 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-08-26T19:44:11.8036015Z [309/7555] 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-08-26T19:44:11.8242392Z [310/7555] 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-08-26T19:44:11.8436026Z [311/7555] 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-08-26T19:44:11.8636060Z [312/7555] 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-08-26T19:44:11.8804156Z [313/7555] 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-08-26T19:44:11.8984602Z [314/7555] 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-08-26T19:44:11.9476738Z [315/7555] 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-08-26T19:44:11.9669672Z [316/7555] 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-08-26T19:44:11.9875796Z [317/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u24.c.obj 2025-08-26T19:44:14.3347771Z [318/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u16.c.obj 2025-08-26T19:44:14.3476063Z [319/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u16.c.obj 2025-08-26T19:44:14.3532425Z [320/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u4.c.obj 2025-08-26T19:44:14.3672111Z [321/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u2.c.obj 2025-08-26T19:44:14.3738940Z [322/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u16.c.obj 2025-08-26T19:44:14.3881492Z [323/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u8.c.obj 2025-08-26T19:44:14.3946555Z [324/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx-broadcast.c.obj 2025-08-26T19:44:14.4066249Z [325/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:44:14.4754407Z [326/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:44:14.4875230Z [327/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:44:14.5120296Z [328/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-relu-scalar.c.obj 2025-08-26T19:44:14.5131873Z [329/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-minmax-scalar.c.obj 2025-08-26T19:44:14.5331590Z [330/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-minmax-scalar.c.obj 2025-08-26T19:44:14.5500698Z [331/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-scalar.c.obj 2025-08-26T19:44:14.5552910Z [332/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-relu-scalar.c.obj 2025-08-26T19:44:14.5627306Z [333/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-load1.c.obj 2025-08-26T19:44:14.6182245Z [334/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:44:14.6239048Z [335/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-scalar.c.obj 2025-08-26T19:44:14.6424110Z [336/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-scalar.c.obj 2025-08-26T19:44:14.6509838Z [337/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-minmax-scalar.c.obj 2025-08-26T19:44:14.6919376Z [338/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2c4-minmax-sse.c.obj 2025-08-26T19:44:14.6931277Z [339/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-minmax-scalar.c.obj 2025-08-26T19:44:14.7059246Z [340/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-relu-scalar.c.obj 2025-08-26T19:44:14.7381236Z [341/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-scalar.c.obj 2025-08-26T19:44:14.7538055Z [342/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-load1.c.obj 2025-08-26T19:44:14.7856458Z [343/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:44:14.7902945Z [344/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-7x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:44:14.7950251Z [345/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p4.c.obj 2025-08-26T19:44:14.8075427Z [346/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c2.c.obj 2025-08-26T19:44:14.8137787Z [347/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx-broadcast.c.obj 2025-08-26T19:44:14.8152044Z [348/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p8.c.obj 2025-08-26T19:44:14.8305759Z [349/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c8.c.obj 2025-08-26T19:44:14.9111785Z [350/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx-broadcast.c.obj 2025-08-26T19:44:14.9160076Z [351/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:44:14.9277606Z [352/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:44:14.9353058Z [353/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:44:14.9364215Z [354/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-relu-scalar.c.obj 2025-08-26T19:44:14.9478290Z [355/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-minmax-scalar.c.obj 2025-08-26T19:44:14.9532271Z [356/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-scalar.c.obj 2025-08-26T19:44:14.9629431Z [357/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-load1.c.obj 2025-08-26T19:44:15.0590189Z [358/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-scalar.c.obj 2025-08-26T19:44:15.0666164Z [359/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:44:15.0722319Z [360/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-minmax-scalar.c.obj 2025-08-26T19:44:15.0856915Z [361/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-scalar.c.obj 2025-08-26T19:44:15.0917186Z [362/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-minmax-scalar.c.obj 2025-08-26T19:44:15.0975117Z [363/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2c4-minmax-sse.c.obj 2025-08-26T19:44:15.1184792Z [364/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-relu-scalar.c.obj 2025-08-26T19:44:15.1261067Z [365/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-minmax-scalar.c.obj 2025-08-26T19:44:15.1805236Z [366/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-relu-scalar.c.obj 2025-08-26T19:44:15.1940255Z [367/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-scalar.c.obj 2025-08-26T19:44:15.2022353Z [368/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-load1.c.obj 2025-08-26T19:44:15.2159152Z [369/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx-broadcast.c.obj 2025-08-26T19:44:15.2215325Z [370/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-08-26T19:44:15.2313621Z [371/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-7x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:44:15.2369435Z [372/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-sse-c4.c.obj 2025-08-26T19:44:15.2630742Z [373/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.obj 2025-08-26T19:44:15.2946146Z [374/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-scalar-c1.c.obj 2025-08-26T19:44:15.3091746Z [375/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-scalar-c1.c.obj 2025-08-26T19:44:15.3181687Z [376/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-sse-c4.c.obj 2025-08-26T19:44:15.3265983Z [377/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-sse-c4.c.obj 2025-08-26T19:44:15.3605153Z [378/7555] 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-08-26T19:44:15.3718514Z [379/7555] 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-08-26T19:44:15.3776993Z [380/7555] 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-08-26T19:44:15.3987291Z [381/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x4-minmax-scalar.c.obj 2025-08-26T19:44:15.4367660Z [382/7555] 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-08-26T19:44:15.4484848Z [383/7555] 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-08-26T19:44:15.4624355Z [384/7555] 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-08-26T19:44:15.4645384Z [385/7555] 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-08-26T19:44:15.5067085Z [386/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x4-minmax-scalar.c.obj 2025-08-26T19:44:15.5124238Z [387/7555] 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-08-26T19:44:15.5196606Z [388/7555] 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-08-26T19:44:15.5472629Z [389/7555] 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-08-26T19:44:15.5755035Z [390/7555] 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-08-26T19:44:15.5941022Z [391/7555] 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-08-26T19:44:15.6082856Z [392/7555] 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-08-26T19:44:15.6139518Z [393/7555] 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-08-26T19:44:15.6445230Z [394/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-minmax-scalar.c.obj 2025-08-26T19:44:15.6618584Z [395/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-minmax-scalar.c.obj 2025-08-26T19:44:15.6792396Z [396/7555] 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-08-26T19:44:15.6876458Z [397/7555] 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-08-26T19:44:15.7214034Z [398/7555] 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-08-26T19:44:15.7394172Z [399/7555] 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-08-26T19:44:15.7520471Z [400/7555] 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-08-26T19:44:15.7581661Z [401/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u32.c.obj 2025-08-26T19:44:15.7593874Z [402/7555] 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-08-26T19:44:15.7798202Z [403/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u64.c.obj 2025-08-26T19:44:15.7965939Z [404/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u128.c.obj 2025-08-26T19:44:15.8041953Z [405/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u1.c.obj 2025-08-26T19:44:15.8359635Z [406/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u4.c.obj 2025-08-26T19:44:15.8569014Z [407/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u4.c.obj 2025-08-26T19:44:15.8701998Z [408/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u32.c.obj 2025-08-26T19:44:15.8759689Z [409/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u32.c.obj 2025-08-26T19:44:15.8873112Z [410/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u64.c.obj 2025-08-26T19:44:15.8928492Z [411/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u32.c.obj 2025-08-26T19:44:15.9047464Z [412/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u128.c.obj 2025-08-26T19:44:15.9144285Z [413/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u1.c.obj 2025-08-26T19:44:15.9406934Z [414/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u4.c.obj 2025-08-26T19:44:15.9724474Z [415/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u4.c.obj 2025-08-26T19:44:15.9892942Z [416/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.obj 2025-08-26T19:44:16.0010356Z [417/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc2.c.obj 2025-08-26T19:44:16.0022149Z [418/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.obj 2025-08-26T19:44:16.0136877Z [419/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u32.c.obj 2025-08-26T19:44:16.0189976Z [420/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.obj 2025-08-26T19:44:16.0244110Z [421/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.obj 2025-08-26T19:44:16.0450671Z [422/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c32.c.obj 2025-08-26T19:44:16.0788520Z [423/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c64.c.obj 2025-08-26T19:44:16.0983105Z [424/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-scalar.c.obj 2025-08-26T19:44:16.1125686Z [425/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c16.c.obj 2025-08-26T19:44:16.1178574Z [426/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc4.c.obj 2025-08-26T19:44:16.1236902Z [427/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc4.c.obj 2025-08-26T19:44:16.1331276Z [428/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc4.c.obj 2025-08-26T19:44:16.1383242Z [429/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc4.c.obj 2025-08-26T19:44:16.1863626Z [430/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc4.c.obj 2025-08-26T19:44:16.1937048Z [431/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc4.c.obj 2025-08-26T19:44:16.2068120Z [432/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc4.c.obj 2025-08-26T19:44:16.2230165Z [433/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc4.c.obj 2025-08-26T19:44:16.2284851Z [434/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc4.c.obj 2025-08-26T19:44:16.2373706Z [435/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc4.c.obj 2025-08-26T19:44:16.2438857Z [436/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc4.c.obj 2025-08-26T19:44:16.2565493Z [437/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc4.c.obj 2025-08-26T19:44:16.2963885Z [438/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-32x1-minmax-sse.c.obj 2025-08-26T19:44:16.3052140Z [439/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar.c.obj 2025-08-26T19:44:16.3134743Z [440/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x2-minmax-scalar.c.obj 2025-08-26T19:44:16.3460988Z [441/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x4-minmax-scalar.c.obj 2025-08-26T19:44:16.3518271Z [442/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx-u16.c.obj 2025-08-26T19:44:16.3569304Z [443/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u32.c.obj 2025-08-26T19:44:16.3732833Z [444/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-sse-u8.c.obj 2025-08-26T19:44:16.4116505Z [445/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-scalar-u8.c.obj 2025-08-26T19:44:16.4406606Z [446/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u8.c.obj 2025-08-26T19:44:16.4464363Z [447/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx-u16.c.obj 2025-08-26T19:44:16.4607606Z [448/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u32.c.obj 2025-08-26T19:44:16.4660728Z [449/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx-u16.c.obj 2025-08-26T19:44:16.4905385Z [450/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u2.c.obj 2025-08-26T19:44:16.5131195Z [451/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-sse-u8.c.obj 2025-08-26T19:44:16.5458337Z [452/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u32.c.obj 2025-08-26T19:44:16.5695486Z [453/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u32.c.obj 2025-08-26T19:44:16.5766830Z [454/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx-u16.c.obj 2025-08-26T19:44:16.5897907Z [455/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-sse-u8.c.obj 2025-08-26T19:44:16.6019138Z [456/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx-u16.c.obj 2025-08-26T19:44:16.6104424Z [457/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-sse-u8.c.obj 2025-08-26T19:44:16.6160804Z [458/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u2.c.obj 2025-08-26T19:44:16.6269023Z [459/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u32.c.obj 2025-08-26T19:44:16.6606049Z [460/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-scalar-u8.c.obj 2025-08-26T19:44:16.6914958Z [461/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-sse-u8.c.obj 2025-08-26T19:44:16.7185163Z [462/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u16.c.obj 2025-08-26T19:44:16.7356686Z [463/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx-u16.c.obj 2025-08-26T19:44:16.7424449Z [464/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u32.c.obj 2025-08-26T19:44:16.7491548Z [465/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u8.c.obj 2025-08-26T19:44:16.7678818Z [466/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u32.c.obj 2025-08-26T19:44:16.7740068Z [467/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-scalar-u8.c.obj 2025-08-26T19:44:16.7807812Z [468/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u8.c.obj 2025-08-26T19:44:16.8091687Z [469/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-sse-u8.c.obj 2025-08-26T19:44:16.8342734Z [470/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx-u16.c.obj 2025-08-26T19:44:16.8590222Z [471/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u32.c.obj 2025-08-26T19:44:16.8860042Z [472/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-sse-u8.c.obj 2025-08-26T19:44:16.8929060Z [473/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u32.c.obj 2025-08-26T19:44:16.9238639Z [474/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-scalar-u8.c.obj 2025-08-26T19:44:16.9297364Z [475/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-scalar-u8.c.obj 2025-08-26T19:44:16.9565550Z [476/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-sse-u8.c.obj 2025-08-26T19:44:16.9716760Z [477/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx-u16.c.obj 2025-08-26T19:44:16.9778431Z [478/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx-u16.c.obj 2025-08-26T19:44:16.9959968Z [479/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u32.c.obj 2025-08-26T19:44:17.0018580Z [480/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-sse-u8.c.obj 2025-08-26T19:44:17.0361422Z [481/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u8.c.obj 2025-08-26T19:44:17.0414407Z [482/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx-u16.c.obj 2025-08-26T19:44:17.0489410Z [483/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u32.c.obj 2025-08-26T19:44:17.0790509Z [484/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u8.c.obj 2025-08-26T19:44:17.0965114Z [485/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u16.c.obj 2025-08-26T19:44:17.1148272Z [486/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u8.c.obj 2025-08-26T19:44:17.1212411Z [487/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u32.c.obj 2025-08-26T19:44:17.1533206Z [488/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u8.c.obj 2025-08-26T19:44:17.1546867Z [489/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u8.c.obj 2025-08-26T19:44:17.1682375Z [490/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u32.c.obj 2025-08-26T19:44:17.1870521Z [491/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u2.c.obj 2025-08-26T19:44:17.1987917Z [492/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u16.c.obj 2025-08-26T19:44:17.2119541Z [493/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u8.c.obj 2025-08-26T19:44:17.2418335Z [494/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u16.c.obj 2025-08-26T19:44:17.2479552Z [495/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u32.c.obj 2025-08-26T19:44:17.2778264Z [496/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u8.c.obj 2025-08-26T19:44:17.2840541Z [497/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u8.c.obj 2025-08-26T19:44:17.3064777Z [498/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u32.c.obj 2025-08-26T19:44:17.3128434Z [499/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u16.c.obj 2025-08-26T19:44:17.3193391Z [500/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u8.c.obj 2025-08-26T19:44:17.3313282Z [501/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u8.c.obj 2025-08-26T19:44:17.3615254Z [502/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u16.c.obj 2025-08-26T19:44:17.3680537Z [503/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u32.c.obj 2025-08-26T19:44:17.3947927Z [504/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u8.c.obj 2025-08-26T19:44:17.4008781Z [505/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u8.c.obj 2025-08-26T19:44:17.4298241Z [506/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u16.c.obj 2025-08-26T19:44:17.4432505Z [507/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u32.c.obj 2025-08-26T19:44:17.4491298Z [508/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u8.c.obj 2025-08-26T19:44:17.4582191Z [509/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u8.c.obj 2025-08-26T19:44:17.4862441Z [510/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx-u16.c.obj 2025-08-26T19:44:17.4915936Z [511/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u32.c.obj 2025-08-26T19:44:17.5167765Z [512/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-sse-u8.c.obj 2025-08-26T19:44:17.5230899Z [513/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-scalar-u8.c.obj 2025-08-26T19:44:17.5534157Z [514/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx-u16.c.obj 2025-08-26T19:44:17.5670564Z [515/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u32.c.obj 2025-08-26T19:44:17.5731650Z [516/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u8.c.obj 2025-08-26T19:44:17.5798686Z [517/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-sse-u8.c.obj 2025-08-26T19:44:17.6066794Z [518/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx-u16.c.obj 2025-08-26T19:44:17.6122997Z [519/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u16.c.obj 2025-08-26T19:44:17.6422992Z [520/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u4.c.obj 2025-08-26T19:44:17.6483850Z [521/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-sse-u8.c.obj 2025-08-26T19:44:17.6732396Z [522/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u32.c.obj 2025-08-26T19:44:17.6887079Z [523/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u16.c.obj 2025-08-26T19:44:17.6972702Z [524/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u4.c.obj 2025-08-26T19:44:17.7031883Z [525/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-sse-u8.c.obj 2025-08-26T19:44:17.7284580Z [526/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx.c.obj 2025-08-26T19:44:17.7374612Z [527/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx512f.c.obj 2025-08-26T19:44:17.7639307Z [528/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-sse2.c.obj 2025-08-26T19:44:17.7696640Z [529/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-scalar.c.obj 2025-08-26T19:44:17.7930373Z [530/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx.c.obj 2025-08-26T19:44:17.8140087Z [531/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx512f.c.obj 2025-08-26T19:44:17.8209268Z [532/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-scalar.c.obj 2025-08-26T19:44:17.8276405Z [533/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-sse2.c.obj 2025-08-26T19:44:17.8571744Z [534/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx.c.obj 2025-08-26T19:44:17.8629584Z [535/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx512f.c.obj 2025-08-26T19:44:17.8907038Z [536/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-sse2.c.obj 2025-08-26T19:44:17.8967054Z [537/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-scalar.c.obj 2025-08-26T19:44:17.9175215Z [538/7555] 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-08-26T19:44:17.9388439Z [539/7555] 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-08-26T19:44:17.9772715Z [540/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u4.c.obj 2025-08-26T19:44:17.9786824Z [541/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u2.c.obj 2025-08-26T19:44:17.9799695Z [542/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u64.c.obj 2025-08-26T19:44:17.9859738Z [543/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u12.c.obj 2025-08-26T19:44:18.0120916Z [544/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vexp\gen\f32-vexp-scalar-exp.c.obj 2025-08-26T19:44:18.0171464Z [545/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx-rational-12-10-div.c.obj 2025-08-26T19:44:18.0541095Z [546/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-nr.c.obj 2025-08-26T19:44:18.0596611Z [547/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-fma3-rational-12-10-div.c.obj 2025-08-26T19:44:18.1004600Z [548/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx-u16.c.obj 2025-08-26T19:44:18.1019227Z [549/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-sse2-rational-12-10-div.c.obj 2025-08-26T19:44:18.1078604Z [550/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-scalar-rational-12-10-div.c.obj 2025-08-26T19:44:18.1092615Z [551/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u16.c.obj 2025-08-26T19:44:18.1380998Z [552/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u16.c.obj 2025-08-26T19:44:18.1437871Z [553/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u4.c.obj 2025-08-26T19:44:18.1673022Z [554/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-sse-u8.c.obj 2025-08-26T19:44:18.1776513Z [555/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx2-rational-3-3-div.c.obj 2025-08-26T19:44:18.2317959Z [556/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-sse2-rational-3-3-div.c.obj 2025-08-26T19:44:18.2331920Z [557/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-scalar-rational-3-3-div.c.obj 2025-08-26T19:44:18.2345087Z [558/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-div.c.obj 2025-08-26T19:44:18.2404242Z [559/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-div.c.obj 2025-08-26T19:44:18.2559631Z [560/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u16.c.obj 2025-08-26T19:44:18.2715054Z [561/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u16.c.obj 2025-08-26T19:44:18.2886442Z [562/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u4.c.obj 2025-08-26T19:44:18.3031264Z [563/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u8.c.obj 2025-08-26T19:44:18.3415876Z [564/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c1-minmax-scalar-2x.c.obj 2025-08-26T19:44:18.3538273Z [565/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u8.c.obj 2025-08-26T19:44:18.3550581Z [566/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-sse-2x.c.obj 2025-08-26T19:44:18.3602889Z [567/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u8.c.obj 2025-08-26T19:44:18.3757868Z [568/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx-u16.c.obj 2025-08-26T19:44:18.3922328Z [569/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u16.c.obj 2025-08-26T19:44:18.4079731Z [570/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u1.c.obj 2025-08-26T19:44:18.4267085Z [571/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u4.c.obj 2025-08-26T19:44:18.4653645Z [572/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u8.c.obj 2025-08-26T19:44:18.4757884Z [573/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u8.c.obj 2025-08-26T19:44:18.4812472Z [574/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx-u16.c.obj 2025-08-26T19:44:18.4826280Z [575/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u16.c.obj 2025-08-26T19:44:18.4932084Z [576/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u1.c.obj 2025-08-26T19:44:18.5217797Z [577/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u4.c.obj 2025-08-26T19:44:18.5303951Z [578/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u8.c.obj 2025-08-26T19:44:18.5481622Z [579/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u8.c.obj 2025-08-26T19:44:18.5903730Z [580/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx-u16.c.obj 2025-08-26T19:44:18.6049746Z [581/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u16.c.obj 2025-08-26T19:44:18.6106032Z [582/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u1.c.obj 2025-08-26T19:44:18.6164486Z [583/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u8.c.obj 2025-08-26T19:44:18.6409381Z [584/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u8.c.obj 2025-08-26T19:44:18.6489889Z [585/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx-u16.c.obj 2025-08-26T19:44:18.6504230Z [586/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u4.c.obj 2025-08-26T19:44:18.6717562Z [587/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u16.c.obj 2025-08-26T19:44:18.7098424Z [588/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u1.c.obj 2025-08-26T19:44:18.7246217Z [589/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u4.c.obj 2025-08-26T19:44:18.7307703Z [590/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u8.c.obj 2025-08-26T19:44:18.7404596Z [591/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u8.c.obj 2025-08-26T19:44:18.7581980Z [592/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u16.c.obj 2025-08-26T19:44:18.7695193Z [593/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u16.c.obj 2025-08-26T19:44:18.7755969Z [594/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u32.c.obj 2025-08-26T19:44:18.7910360Z [595/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u1.c.obj 2025-08-26T19:44:18.8295343Z [596/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u4.c.obj 2025-08-26T19:44:18.8479615Z [597/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u8.c.obj 2025-08-26T19:44:18.8816163Z [598/7555] 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-08-26T19:44:18.8963159Z [599/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u16.c.obj 2025-08-26T19:44:18.9018204Z [600/7555] 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-08-26T19:44:18.9036176Z [601/7555] 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-08-26T19:44:18.9237811Z [602/7555] 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-08-26T19:44:18.9403388Z [603/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u16.c.obj 2025-08-26T19:44:18.9624210Z [604/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u16.c.obj 2025-08-26T19:44:18.9751434Z [605/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u16.c.obj 2025-08-26T19:44:18.9978236Z [606/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u16.c.obj 2025-08-26T19:44:19.0207869Z [607/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u1.c.obj 2025-08-26T19:44:19.0253174Z [608/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-div.c.obj 2025-08-26T19:44:19.0466197Z [609/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-nr.c.obj 2025-08-26T19:44:19.0571965Z [610/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u12.c.obj 2025-08-26T19:44:19.0584918Z [611/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-div.c.obj 2025-08-26T19:44:19.0823413Z [612/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-scalar-rational-9-8-div.c.obj 2025-08-26T19:44:19.0935607Z [613/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-div.c.obj 2025-08-26T19:44:19.1193286Z [614/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx.c.obj 2025-08-26T19:44:19.1409764Z [615/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-scalar.c.obj 2025-08-26T19:44:19.1490127Z [616/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx512f.c.obj 2025-08-26T19:44:19.1745716Z [617/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-sse2.c.obj 2025-08-26T19:44:19.1804289Z [618/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx512f.c.obj 2025-08-26T19:44:19.1822035Z [619/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx.c.obj 2025-08-26T19:44:19.2031586Z [620/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-scalar.c.obj 2025-08-26T19:44:19.2126286Z [621/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-sse2.c.obj 2025-08-26T19:44:19.2380446Z [622/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx.c.obj 2025-08-26T19:44:19.2677767Z [623/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-scalar.c.obj 2025-08-26T19:44:19.2764206Z [624/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx512f.c.obj 2025-08-26T19:44:19.2994619Z [625/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-sse2.c.obj 2025-08-26T19:44:19.3293670Z [626/7555] 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-08-26T19:44:19.3353347Z [627/7555] 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-08-26T19:44:19.3500887Z [628/7555] 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-08-26T19:44:19.3538558Z [629/7555] 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-08-26T19:44:19.3786924Z [630/7555] 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-08-26T19:44:19.4114337Z [631/7555] 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-08-26T19:44:19.4212478Z [632/7555] 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-08-26T19:44:19.4438041Z [633/7555] 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-08-26T19:44:19.4718651Z [634/7555] 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-08-26T19:44:19.4830034Z [635/7555] 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-08-26T19:44:19.4922813Z [636/7555] 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-08-26T19:44:19.5006328Z [637/7555] 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-08-26T19:44:19.5430574Z [638/7555] 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-08-26T19:44:19.5481109Z [639/7555] 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-08-26T19:44:19.5493430Z [640/7555] 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-08-26T19:44:19.5739838Z [641/7555] 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-08-26T19:44:19.6168288Z [642/7555] 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-08-26T19:44:19.6215066Z [643/7555] 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-08-26T19:44:19.6264276Z [644/7555] 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-08-26T19:44:19.6366160Z [645/7555] 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-08-26T19:44:19.6825090Z [646/7555] 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-08-26T19:44:19.6879077Z [647/7555] 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-08-26T19:44:19.6897390Z [648/7555] 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-08-26T19:44:19.7193346Z [649/7555] 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-08-26T19:44:19.7590259Z [650/7555] 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-08-26T19:44:19.7603060Z [651/7555] 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-08-26T19:44:19.7734395Z [652/7555] 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-08-26T19:44:19.7789934Z [653/7555] 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-08-26T19:44:19.8326221Z [654/7555] 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-08-26T19:44:19.8340118Z [655/7555] 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-08-26T19:44:19.8391332Z [656/7555] 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-08-26T19:44:19.8633063Z [657/7555] 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-08-26T19:44:19.9044355Z [658/7555] 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-08-26T19:44:19.9187310Z [659/7555] 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-08-26T19:44:19.9204880Z [660/7555] 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-08-26T19:44:19.9259183Z [661/7555] 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-08-26T19:44:19.9790746Z [662/7555] 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-08-26T19:44:19.9803282Z [663/7555] 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-08-26T19:44:19.9857151Z [664/7555] 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-08-26T19:44:20.0113819Z [665/7555] 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-08-26T19:44:20.0500339Z [666/7555] 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-08-26T19:44:20.0564346Z [667/7555] 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-08-26T19:44:20.0580473Z [668/7555] 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-08-26T19:44:20.0706922Z [669/7555] 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-08-26T19:44:20.1294394Z [670/7555] 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-08-26T19:44:20.1391191Z [671/7555] 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-08-26T19:44:20.1547296Z [672/7555] 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-08-26T19:44:20.2028783Z [673/7555] 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-08-26T19:44:20.2129824Z [674/7555] 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-08-26T19:44:20.2141630Z [675/7555] 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-08-26T19:44:20.2193419Z [676/7555] 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-08-26T19:44:20.2469592Z [677/7555] 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-08-26T19:44:20.2672624Z [678/7555] 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-08-26T19:44:20.2754362Z [679/7555] 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-08-26T19:44:20.2920515Z [680/7555] 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-08-26T19:44:20.3449294Z [681/7555] 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-08-26T19:44:20.3632091Z [682/7555] 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-08-26T19:44:20.3643999Z [683/7555] 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-08-26T19:44:20.3859534Z [684/7555] 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-08-26T19:44:20.3872793Z [685/7555] 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-08-26T19:44:20.4079940Z [686/7555] 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-08-26T19:44:20.4137217Z [687/7555] 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-08-26T19:44:20.4357628Z [688/7555] 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-08-26T19:44:20.4961433Z [689/7555] 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-08-26T19:44:20.5085381Z [690/7555] 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-08-26T19:44:20.5098255Z [691/7555] 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-08-26T19:44:20.5169794Z [692/7555] 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-08-26T19:44:20.5286037Z [693/7555] 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-08-26T19:44:20.5540459Z [694/7555] 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-08-26T19:44:20.5655404Z [695/7555] 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-08-26T19:44:20.5735566Z [696/7555] 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-08-26T19:44:20.6262757Z [697/7555] 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-08-26T19:44:20.6371874Z [698/7555] 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-08-26T19:44:20.6424796Z [699/7555] 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-08-26T19:44:20.6835466Z [700/7555] 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-08-26T19:44:20.7058150Z [701/7555] 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-08-26T19:44:20.7077970Z [702/7555] 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-08-26T19:44:20.7090718Z [703/7555] 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-08-26T19:44:20.7104567Z [704/7555] 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-08-26T19:44:20.7987912Z [705/7555] 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-08-26T19:44:20.8085231Z [706/7555] 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-08-26T19:44:20.8149146Z [707/7555] 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-08-26T19:44:20.8161954Z [708/7555] 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-08-26T19:44:20.8395606Z [709/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:44:20.8447897Z [710/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:44:20.8463690Z [711/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:44:20.8522902Z [712/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:44:20.9309549Z [713/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:44:20.9416750Z [714/7555] 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-08-26T19:44:20.9473757Z [715/7555] 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-08-26T19:44:20.9525723Z [716/7555] 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-08-26T19:44:20.9664112Z [717/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:44:20.9757236Z [718/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:44:20.9772840Z [719/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:44:20.9926440Z [720/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:44:21.0634976Z [721/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u16.c.obj 2025-08-26T19:44:21.0648313Z [722/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:44:21.0749357Z [723/7555] 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-08-26T19:44:21.0801047Z [724/7555] 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-08-26T19:44:21.0857050Z [725/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u32.c.obj 2025-08-26T19:44:21.0915412Z [726/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u32.c.obj 2025-08-26T19:44:21.0975000Z [727/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u16.c.obj 2025-08-26T19:44:21.1096707Z [728/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u1.c.obj 2025-08-26T19:44:21.1850513Z [729/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u32.c.obj 2025-08-26T19:44:21.1900329Z [730/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u4.c.obj 2025-08-26T19:44:21.1914370Z [731/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u16.c.obj 2025-08-26T19:44:21.1960934Z [732/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.obj 2025-08-26T19:44:21.2064087Z [733/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-scalar.c.obj 2025-08-26T19:44:21.2120896Z [734/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.obj 2025-08-26T19:44:21.2206873Z [735/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-goi-scalar.c.obj 2025-08-26T19:44:21.2466819Z [736/7555] 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-08-26T19:44:21.3186909Z [737/7555] 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-08-26T19:44:21.3237686Z [738/7555] 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-08-26T19:44:21.3250193Z [739/7555] 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-08-26T19:44:21.3338651Z [740/7555] 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-08-26T19:44:21.3391279Z [741/7555] 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-08-26T19:44:21.3442370Z [742/7555] 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-08-26T19:44:21.3495743Z [743/7555] 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-08-26T19:44:21.3659544Z [744/7555] 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-08-26T19:44:21.4544246Z [745/7555] 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-08-26T19:44:21.4601136Z [746/7555] 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-08-26T19:44:21.4658284Z [747/7555] 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-08-26T19:44:21.4715363Z [748/7555] 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-08-26T19:44:21.4728888Z [749/7555] 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-08-26T19:44:21.4784201Z [750/7555] 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-08-26T19:44:21.4800170Z [751/7555] 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-08-26T19:44:21.4916741Z [752/7555] 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-08-26T19:44:21.5894751Z [753/7555] 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-08-26T19:44:21.5940779Z [754/7555] 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-08-26T19:44:21.6036492Z [755/7555] 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-08-26T19:44:21.6088347Z [756/7555] 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-08-26T19:44:21.6139692Z [757/7555] 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-08-26T19:44:21.6151944Z [758/7555] 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-08-26T19:44:21.6331198Z [759/7555] 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-08-26T19:44:21.7292291Z [760/7555] 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-08-26T19:44:21.7365740Z [761/7555] 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-08-26T19:44:21.7456100Z [762/7555] 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-08-26T19:44:21.7507611Z [763/7555] 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-08-26T19:44:21.7519184Z [764/7555] 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-08-26T19:44:21.7571238Z [765/7555] 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-08-26T19:44:21.7586623Z [766/7555] 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-08-26T19:44:21.7641361Z [767/7555] 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-08-26T19:44:21.8801049Z [768/7555] 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-08-26T19:44:21.8843094Z [769/7555] 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-08-26T19:44:21.8897413Z [770/7555] 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-08-26T19:44:21.9022355Z [771/7555] 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-08-26T19:44:21.9034144Z [772/7555] 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-08-26T19:44:21.9089121Z [773/7555] 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-08-26T19:44:21.9104031Z [774/7555] 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-08-26T19:44:21.9118515Z [775/7555] 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-08-26T19:44:22.0240915Z [776/7555] 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-08-26T19:44:22.0293573Z [777/7555] 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-08-26T19:44:22.0361622Z [778/7555] 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-08-26T19:44:22.0372804Z [779/7555] 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-08-26T19:44:22.0446619Z [780/7555] 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-08-26T19:44:22.0468060Z [781/7555] 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-08-26T19:44:22.0519373Z [782/7555] 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-08-26T19:44:22.0532416Z [783/7555] 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-08-26T19:44:22.1607530Z [784/7555] 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-08-26T19:44:22.1621113Z [785/7555] 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-08-26T19:44:22.1715833Z [786/7555] 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-08-26T19:44:22.1828346Z [787/7555] 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-08-26T19:44:22.1840267Z [788/7555] 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-08-26T19:44:22.1884768Z [789/7555] 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-08-26T19:44:22.2028620Z [790/7555] 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-08-26T19:44:22.2150989Z [791/7555] 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-08-26T19:44:22.2882373Z [792/7555] 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-08-26T19:44:22.2935580Z [793/7555] 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-08-26T19:44:22.2991399Z [794/7555] 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-08-26T19:44:22.3161463Z [795/7555] 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-08-26T19:44:22.3238186Z [796/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.obj 2025-08-26T19:44:22.3285333Z [797/7555] 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-08-26T19:44:22.3334257Z [798/7555] 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-08-26T19:44:22.3386725Z [799/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.obj 2025-08-26T19:44:22.4033620Z [800/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.obj 2025-08-26T19:44:22.4135524Z [801/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u64-acc2.c.obj 2025-08-26T19:44:22.4285704Z [802/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u64-acc2.c.obj 2025-08-26T19:44:22.4400054Z [803/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u128-acc2.c.obj 2025-08-26T19:44:22.4454786Z [804/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u4.c.obj 2025-08-26T19:44:22.4467822Z [805/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u128-acc2.c.obj 2025-08-26T19:44:22.4479599Z [806/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u32-acc2.c.obj 2025-08-26T19:44:22.4636963Z [807/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.obj 2025-08-26T19:44:22.5272009Z [808/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-08-26T19:44:22.5378261Z [809/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-08-26T19:44:22.5545264Z [810/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-08-26T19:44:22.5649783Z [811/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u1.c.obj 2025-08-26T19:44:22.5708880Z [812/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u4.c.obj 2025-08-26T19:44:22.5725063Z [813/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-08-26T19:44:22.5741250Z [814/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-08-26T19:44:22.5839880Z [815/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-08-26T19:44:22.6580266Z [816/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-08-26T19:44:22.6650876Z [817/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-08-26T19:44:22.6787351Z [818/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u1.c.obj 2025-08-26T19:44:22.6906081Z [819/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u32.c.obj 2025-08-26T19:44:22.6917985Z [820/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u32.c.obj 2025-08-26T19:44:22.6979551Z [821/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-08-26T19:44:22.7187737Z [822/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-08-26T19:44:22.7262663Z [823/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u4.c.obj 2025-08-26T19:44:22.7747889Z [824/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u4.c.obj 2025-08-26T19:44:22.7795711Z [825/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u1.c.obj 2025-08-26T19:44:22.7889266Z [826/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u32.c.obj 2025-08-26T19:44:22.8073525Z [827/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u32.c.obj 2025-08-26T19:44:22.8221813Z [828/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u32.c.obj 2025-08-26T19:44:22.8240551Z [829/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u32.c.obj 2025-08-26T19:44:22.8318970Z [830/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u32.c.obj 2025-08-26T19:44:22.8428505Z [831/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u4.c.obj 2025-08-26T19:44:22.9018867Z [832/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u4.c.obj 2025-08-26T19:44:22.9078904Z [833/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u32.c.obj 2025-08-26T19:44:22.9140892Z [834/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u32.c.obj 2025-08-26T19:44:22.9310334Z [835/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u32.c.obj 2025-08-26T19:44:22.9410372Z [836/7555] 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-08-26T19:44:22.9423612Z [837/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u4.c.obj 2025-08-26T19:44:22.9510834Z [838/7555] 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-08-26T19:44:22.9580947Z [839/7555] 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-08-26T19:44:23.0354709Z [840/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-08-26T19:44:23.0418510Z [841/7555] 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-08-26T19:44:23.0431060Z [842/7555] 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-08-26T19:44:23.0495264Z [843/7555] 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-08-26T19:44:23.0565848Z [844/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.obj 2025-08-26T19:44:23.0652120Z [845/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-sse2-c8.c.obj 2025-08-26T19:44:23.0708912Z [846/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.obj 2025-08-26T19:44:23.0800163Z [847/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.obj 2025-08-26T19:44:23.1666358Z [848/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-08-26T19:44:23.1725832Z [849/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:44:23.1740697Z [850/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:44:23.1797941Z [851/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:44:23.1846453Z [852/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:44:23.1992551Z [853/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:44:23.2050960Z [854/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:44:23.2268160Z [855/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:44:23.2997901Z [856/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:44:23.3009875Z [857/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-08-26T19:44:23.3114358Z [858/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:44:23.3162018Z [859/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:44:23.3233841Z [860/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:44:23.3359130Z [861/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:44:23.3493779Z [862/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:44:23.3673951Z [863/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:44:23.4163153Z [864/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u32.c.obj 2025-08-26T19:44:23.4232528Z [865/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u1.c.obj 2025-08-26T19:44:23.4244389Z [866/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u32.c.obj 2025-08-26T19:44:23.4387522Z [867/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u4.c.obj 2025-08-26T19:44:23.4444035Z [868/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u32.c.obj 2025-08-26T19:44:23.4565656Z [869/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u16.c.obj 2025-08-26T19:44:23.4945373Z [870/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-08-26T19:44:23.5389755Z [871/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u16.c.obj 2025-08-26T19:44:23.5497162Z [872/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:44:23.5668556Z [873/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:44:23.5680034Z [874/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:44:23.5815980Z [875/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:44:23.5869553Z [876/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:44:23.5884873Z [877/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx2.c.obj 2025-08-26T19:44:23.6375935Z [878/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:44:23.6846976Z [879/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:44:23.6951995Z [880/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:44:23.7081423Z [881/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:44:23.7093935Z [882/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:44:23.7163618Z [883/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-08-26T19:44:23.7295655Z [884/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-08-26T19:44:23.7605970Z [885/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x8c8-minmax-fp32-avx2.c.obj 2025-08-26T19:44:23.7734933Z [886/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:44:23.8198254Z [887/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:44:23.8340017Z [888/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:44:23.8392268Z [889/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:44:23.8404162Z [890/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx2.c.obj 2025-08-26T19:44:23.8511418Z [891/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:44:23.8786243Z [892/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:44:23.8942782Z [893/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:44:23.9092180Z [894/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:44:23.9490420Z [895/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:44:23.9613583Z [896/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:44:23.9694542Z [897/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c64.c.obj 2025-08-26T19:44:23.9747479Z [898/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x8c8-minmax-fp32-avx2.c.obj 2025-08-26T19:44:23.9767678Z [899/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-08-26T19:44:23.9964724Z [900/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-scalar.c.obj 2025-08-26T19:44:24.0107615Z [901/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u4.c.obj 2025-08-26T19:44:24.0586157Z [902/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u64-acc2.c.obj 2025-08-26T19:44:24.0601190Z [903/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u32-acc2.c.obj 2025-08-26T19:44:24.0821480Z [904/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-08-26T19:44:24.0929508Z [905/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-08-26T19:44:24.0980978Z [906/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u1.c.obj 2025-08-26T19:44:24.1126707Z [907/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u4.c.obj 2025-08-26T19:44:24.1307717Z [908/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-08-26T19:44:24.1516537Z [909/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-08-26T19:44:24.1727318Z [910/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-08-26T19:44:24.1817190Z [911/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-08-26T19:44:24.2030669Z [912/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-08-26T19:44:24.2143086Z [913/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-08-26T19:44:24.2158022Z [914/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u1.c.obj 2025-08-26T19:44:24.2333803Z [915/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u4.c.obj 2025-08-26T19:44:24.2456941Z [916/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-08-26T19:44:24.2660110Z [917/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-08-26T19:44:24.2886664Z [918/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u32.c.obj 2025-08-26T19:44:24.2967312Z [919/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u32.c.obj 2025-08-26T19:44:24.3543159Z [920/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u1.c.obj 2025-08-26T19:44:24.3555556Z [921/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u32.c.obj 2025-08-26T19:44:24.3568909Z [922/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u4.c.obj 2025-08-26T19:44:24.3584200Z [923/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u32.c.obj 2025-08-26T19:44:24.3638045Z [924/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u32.c.obj 2025-08-26T19:44:24.3736861Z [925/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u32.c.obj 2025-08-26T19:44:24.4023287Z [926/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u32.c.obj 2025-08-26T19:44:24.4155162Z [927/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u4.c.obj 2025-08-26T19:44:24.4830614Z [928/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u32.c.obj 2025-08-26T19:44:24.4849618Z [929/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u32.c.obj 2025-08-26T19:44:24.4866098Z [930/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u4.c.obj 2025-08-26T19:44:24.4921930Z [931/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u32.c.obj 2025-08-26T19:44:24.5179194Z [932/7555] 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-08-26T19:44:24.5251796Z [933/7555] 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-08-26T19:44:24.5266963Z [934/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u4.c.obj 2025-08-26T19:44:24.5353972Z [935/7555] 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-08-26T19:44:24.6118334Z [936/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-08-26T19:44:24.6131772Z [937/7555] 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-08-26T19:44:24.6143870Z [938/7555] 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-08-26T19:44:24.6299882Z [939/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx512f.c.obj 2025-08-26T19:44:24.6351036Z [940/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c1.c.obj 2025-08-26T19:44:24.6413287Z [941/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-scalar.c.obj 2025-08-26T19:44:24.6426644Z [942/7555] 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-08-26T19:44:24.6478368Z [943/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx2.c.obj 2025-08-26T19:44:24.7209871Z [944/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c8.c.obj 2025-08-26T19:44:24.7263648Z [945/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-08-26T19:44:24.7377229Z [946/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-08-26T19:44:24.7429339Z [947/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c16.c.obj 2025-08-26T19:44:24.7484282Z [948/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse41-c16.c.obj 2025-08-26T19:44:24.7580191Z [949/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx2-u128.c.obj 2025-08-26T19:44:24.7642901Z [950/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-scalar-u4.c.obj 2025-08-26T19:44:24.7661788Z [951/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx512skx-u256.c.obj 2025-08-26T19:44:24.8439805Z [952/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse2-u64.c.obj 2025-08-26T19:44:24.8498118Z [953/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c1.c.obj 2025-08-26T19:44:24.8510052Z [954/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c8.c.obj 2025-08-26T19:44:24.8552440Z [955/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-lut32norm\u8-lut32norm-scalar.c.obj 2025-08-26T19:44:24.8599207Z [956/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c16.c.obj 2025-08-26T19:44:24.8655765Z [957/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse41-u64.c.obj 2025-08-26T19:44:24.8728608Z [958/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-08-26T19:44:24.8777134Z [959/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-08-26T19:44:24.9625223Z [960/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-scalar-u2.c.obj 2025-08-26T19:44:24.9638899Z [961/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-sse2-u16.c.obj 2025-08-26T19:44:24.9745597Z [962/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx2-u128.c.obj 2025-08-26T19:44:24.9830052Z [963/7555] 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-08-26T19:44:24.9892422Z [964/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx512skx-u256.c.obj 2025-08-26T19:44:24.9905376Z [965/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-scalar-u4.c.obj 2025-08-26T19:44:24.9919076Z [966/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-sse2-u64.c.obj 2025-08-26T19:44:24.9972474Z [967/7555] 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-08-26T19:44:25.0704748Z [968/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-2x4-scalar-int.c.obj 2025-08-26T19:44:25.0814774Z [969/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-multi-sse2.c.obj 2025-08-26T19:44:25.0870817Z [970/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-switch-avx2.c.obj 2025-08-26T19:44:25.0948969Z [971/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\gen\x24-transposec-1x2-scalar.c.obj 2025-08-26T19:44:25.0995370Z [972/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\x24-transposec-4x4-ssse3.c.obj 2025-08-26T19:44:25.1054686Z [973/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx-u4.c.obj 2025-08-26T19:44:25.1220829Z [974/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u8.c.obj 2025-08-26T19:44:25.1330414Z [975/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-avx-u4.c.obj 2025-08-26T19:44:25.1830139Z [976/7555] 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-08-26T19:44:25.2002920Z [977/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u8.c.obj 2025-08-26T19:44:25.2015441Z [978/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x2c4-gemm-goi-sse2-u4.c.obj 2025-08-26T19:44:25.2121110Z [979/7555] 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-08-26T19:44:25.2137119Z [980/7555] 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-08-26T19:44:25.2268332Z [981/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u4.c.obj 2025-08-26T19:44:25.2323837Z [982/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-int.c.obj 2025-08-26T19:44:25.2430166Z [983/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-multi-avx.c.obj 2025-08-26T19:44:25.2655631Z [984/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-scalar.c.obj 2025-08-26T19:44:25.2747755Z [985/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-sse2.c.obj 2025-08-26T19:44:25.2803302Z [986/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\x32-transposec-4x4-sse.c.obj 2025-08-26T19:44:25.2813755Z [987/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-scalar.c.obj 2025-08-26T19:44:25.2863301Z [988/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-sse2.c.obj 2025-08-26T19:44:25.2944209Z [989/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-scalar.c.obj 2025-08-26T19:44:25.3004609Z [990/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-sse2.c.obj 2025-08-26T19:44:25.3016347Z [991/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-scalar.c.obj 2025-08-26T19:44:25.3350534Z [992/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-sse2.c.obj 2025-08-26T19:44:25.3405133Z [993/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-scalar.c.obj 2025-08-26T19:44:25.3489918Z [994/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-sse2.c.obj 2025-08-26T19:44:25.3885150Z [995/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-mov-sse2.c.obj 2025-08-26T19:44:25.3897047Z [996/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx2-u128.c.obj 2025-08-26T19:44:25.3945732Z [997/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx-u64.c.obj 2025-08-26T19:44:25.3958840Z [998/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-int.c.obj 2025-08-26T19:44:25.4007588Z [999/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-multi-avx.c.obj 2025-08-26T19:44:25.4146571Z [1000/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-scalar-u4.c.obj 2025-08-26T19:44:25.4242853Z [1001/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u64.c.obj 2025-08-26T19:44:25.4303216Z [1002/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u128.c.obj 2025-08-26T19:44:25.5026772Z [1003/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u2.c.obj 2025-08-26T19:44:25.5072750Z [1004/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u2.c.obj 2025-08-26T19:44:25.5121922Z [1005/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u2.c.obj 2025-08-26T19:44:25.5134411Z [1006/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packq\x8-packq-scalar-f32qp8-u1.c.obj 2025-08-26T19:44:25.5147128Z [1007/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u2.c.obj 2025-08-26T19:44:25.5254494Z [1008/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-2x4-scalar-int.c.obj 2025-08-26T19:44:25.5411604Z [1009/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-switch-avx2.c.obj 2025-08-26T19:44:25.5461070Z [1010/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-mov-sse2.c.obj 2025-08-26T19:44:25.5690597Z [1011/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-scalar.c.obj 2025-08-26T19:44:25.5732721Z [1012/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-sse2.c.obj 2025-08-26T19:44:25.5788276Z [1013/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-scalar.c.obj 2025-08-26T19:44:25.5831225Z [1014/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-sse2.c.obj 2025-08-26T19:44:25.5874773Z [1015/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-scalar.c.obj 2025-08-26T19:44:25.5941976Z [1016/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-sse2.c.obj 2025-08-26T19:44:25.6039182Z [1017/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-scalar.c.obj 2025-08-26T19:44:25.6101036Z [1018/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-sse2.c.obj 2025-08-26T19:44:25.6347931Z [1019/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-scalar-u16.c.obj 2025-08-26T19:44:25.6462588Z [1020/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-sse2-u64.c.obj 2025-08-26T19:44:25.6506336Z [1021/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p16-sse2-u16.c.obj 2025-08-26T19:44:25.6596577Z [1022/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-64.c.obj 2025-08-26T19:44:25.6732879Z [1023/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-2048.c.obj 2025-08-26T19:44:25.6830059Z [1024/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-copy\xx-copy-scalar-memcpy.c.obj 2025-08-26T19:44:25.6883003Z [1025/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p4-scalar-u16.c.obj 2025-08-26T19:44:25.6964353Z [1026/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-transposev\xx-transposev-1x1-scalar-memcpy.c.obj 2025-08-26T19:44:25.7003389Z [1027/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-4.c.obj 2025-08-26T19:44:25.7105306Z [1028/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-8.c.obj 2025-08-26T19:44:25.7175487Z [1029/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-16.c.obj 2025-08-26T19:44:25.7226852Z [1030/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-32.c.obj 2025-08-26T19:44:25.7351709Z [1031/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-64.c.obj 2025-08-26T19:44:25.7442063Z [1032/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-2048.c.obj 2025-08-26T19:44:25.7530045Z [1033/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\vlog.c.obj 2025-08-26T19:44:25.7721692Z [1034/7555] Linking C static library lib\cpuinfo.lib 2025-08-26T19:44:25.7826257Z [1035/7555] Running gen_proto.py on onnx/onnx-data.in.proto 2025-08-26T19:44:25.7882547Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-data.in.proto 2025-08-26T19:44:25.7883310Z 2025-08-26T19:44:25.7883910Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto 2025-08-26T19:44:25.7884451Z 2025-08-26T19:44:25.7884840Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto3 2025-08-26T19:44:25.7885301Z 2025-08-26T19:44:25.7885591Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data.pb.h 2025-08-26T19:44:25.7885986Z 2025-08-26T19:44:25.7886363Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_data_pb.py 2025-08-26T19:44:25.7886783Z 2025-08-26T19:44:25.7887087Z [1036/7555] Linking C executable sleef\bin\mkrename.exe 2025-08-26T19:44:25.7915374Z [1037/7555] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-08-26T19:44:25.7916430Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-operators.in.proto 2025-08-26T19:44:25.7917881Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto 2025-08-26T19:44:25.7919952Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto3 2025-08-26T19:44:25.7921594Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators-ml.pb.h 2025-08-26T19:44:25.8028135Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_operators_pb.py 2025-08-26T19:44:25.8029103Z 2025-08-26T19:44:25.8029352Z [1038/7555] Linking C executable sleef\bin\mkalias.exe 2025-08-26T19:44:25.8041318Z [1039/7555] Linking C executable sleef\bin\mkdisp.exe 2025-08-26T19:44:25.8495580Z [1040/7555] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\allocation-type.c.obj 2025-08-26T19:44:25.8576274Z [1041/7555] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\microkernel-type.c.obj 2025-08-26T19:44:25.8694592Z [1042/7555] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\datatype-strings.c.obj 2025-08-26T19:44:25.8705867Z [1043/7555] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\node-type.c.obj 2025-08-26T19:44:25.8749620Z [1044/7555] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\operator-type.c.obj 2025-08-26T19:44:25.8934475Z [1045/7555] Building C object confu-deps\XNNPACK\CMakeFiles\indirection.dir\src\indirection.c.obj 2025-08-26T19:44:25.9612491Z [1046/7555] Building C object confu-deps\XNNPACK\CMakeFiles\allocator.dir\src\allocator.c.obj 2025-08-26T19:44:25.9755175Z [1047/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microparams-init.dir\src\microparams-init.c.obj 2025-08-26T19:44:25.9852858Z [1048/7555] Building C object confu-deps\XNNPACK\CMakeFiles\normalization.dir\src\normalization.c.obj 2025-08-26T19:44:26.0470754Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.0471634Z [1049/7555] Linking C static library lib\microkernels-prod.lib 2025-08-26T19:44:26.0710574Z [1050/7555] Building C object confu-deps\XNNPACK\CMakeFiles\datatype.dir\src\datatype.c.obj 2025-08-26T19:44:26.0826943Z [1051/7555] Building CXX object confu-deps\XNNPACK\CMakeFiles\packing.dir\src\reference\packing.cc.obj 2025-08-26T19:44:26.0828151Z 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-08-26T19:44:26.0829374Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-08-26T19:44:26.0830825Z 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-08-26T19:44:26.0832555Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-08-26T19:44:26.0833889Z 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-08-26T19:44:26.0835554Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-08-26T19:44:26.0836816Z 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-08-26T19:44:26.0838654Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-08-26T19:44:26.0840701Z 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-08-26T19:44:26.0842849Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-08-26T19:44:26.0844776Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5246): warning C4244: '=': conversion from 'const _Ty' to 'float', possible loss of data 2025-08-26T19:44:26.0846229Z with 2025-08-26T19:44:26.0846535Z [ 2025-08-26T19:44:26.0846825Z _Ty=int 2025-08-26T19:44:26.0847159Z ] 2025-08-26T19:44:26.0848409Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5246): note: the template instantiation context (the oldest one first) is 2025-08-26T19:44:26.0850184Z 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-08-26T19:44:26.0851442Z with 2025-08-26T19:44:26.0851618Z [ 2025-08-26T19:44:26.0851793Z Src=float, 2025-08-26T19:44:26.0851994Z Dst=float 2025-08-26T19:44:26.0852259Z ] 2025-08-26T19:44:26.0853555Z 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-08-26T19:44:26.0854772Z with 2025-08-26T19:44:26.0854969Z [ 2025-08-26T19:44:26.0855178Z _OutIt=float *, 2025-08-26T19:44:26.0855409Z Dst=float, 2025-08-26T19:44:26.0855603Z _Diff=size_t, 2025-08-26T19:44:26.0855812Z _Ty=int 2025-08-26T19:44:26.0856056Z ] 2025-08-26T19:44:26.0856932Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5246): warning C4244: 'argument': conversion from 'const _Ty' to 'float', possible loss of data 2025-08-26T19:44:26.0858032Z with 2025-08-26T19:44:26.0858313Z [ 2025-08-26T19:44:26.0858599Z _Ty=int 2025-08-26T19:44:26.0858877Z ] 2025-08-26T19:44:26.0859908Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5246): note: the template instantiation context (the oldest one first) is 2025-08-26T19:44:26.0862411Z 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-08-26T19:44:26.0864535Z with 2025-08-26T19:44:26.0865335Z [ 2025-08-26T19:44:26.0866081Z Src=float, 2025-08-26T19:44:26.0866564Z Dst=xnn_float16 2025-08-26T19:44:26.0866902Z ] 2025-08-26T19:44:26.0907579Z 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-08-26T19:44:26.0909352Z with 2025-08-26T19:44:26.0909661Z [ 2025-08-26T19:44:26.0909979Z _OutIt=xnn_float16 *, 2025-08-26T19:44:26.0910427Z Dst=xnn_float16, 2025-08-26T19:44:26.0910835Z _Diff=size_t, 2025-08-26T19:44:26.0911196Z _Ty=int 2025-08-26T19:44:26.0911519Z ] 2025-08-26T19:44:26.0912407Z [1052/7555] Building C object confu-deps\XNNPACK\CMakeFiles\hardware-config.dir\src\configs\hardware-config.c.obj 2025-08-26T19:44:26.0967320Z [1053/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernel-utils.dir\src\microkernel-utils.c.obj 2025-08-26T19:44:26.1343355Z [1054/7555] Building C object confu-deps\XNNPACK\CMakeFiles\cache.dir\src\cache.c.obj 2025-08-26T19:44:26.2039860Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.2040571Z [1055/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\argmax-pooling-nhwc.c.obj 2025-08-26T19:44:26.2093550Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.2094183Z [1056/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operator-delete.c.obj 2025-08-26T19:44:26.2200143Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.2200841Z [1057/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\average-pooling-nhwc.c.obj 2025-08-26T19:44:26.2220047Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.2220693Z [1058/7555] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\log.c.obj 2025-08-26T19:44:26.2445569Z [1059/7555] Building C object confu-deps\XNNPACK\CMakeFiles\memory.dir\src\memory.c.obj 2025-08-26T19:44:26.2511313Z [1060/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\binary-elementwise-nd.c.obj 2025-08-26T19:44:26.2523775Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.2524653Z [1061/7555] Building C object confu-deps\XNNPACK\CMakeFiles\mutex.dir\src\mutex.c.obj 2025-08-26T19:44:26.3209645Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.3210385Z [1062/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\channel-shuffle-nc.c.obj 2025-08-26T19:44:26.3343211Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.3344236Z [1063/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\constant-pad-nd.c.obj 2025-08-26T19:44:26.3415532Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.3416378Z [1064/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\batch-matrix-multiply-nc.c.obj 2025-08-26T19:44:26.3733995Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.3735242Z [1065/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\dynamic-fully-connected-nc.c.obj 2025-08-26T19:44:26.4468840Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.4470131Z [1066/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\max-pooling-nhwc.c.obj 2025-08-26T19:44:26.4613911Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.4614970Z [1067/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\pack-lh.c.obj 2025-08-26T19:44:26.4672565Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.4673309Z [1068/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\reduce-nd.c.obj 2025-08-26T19:44:26.4687016Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.4688345Z [1069/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nchw.c.obj 2025-08-26T19:44:26.4846713Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.4847803Z [1070/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nchw.c.obj 2025-08-26T19:44:26.4914958Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.4915699Z [1071/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\deconvolution-nhwc.c.obj 2025-08-26T19:44:26.4937470Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.4938667Z [1072/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nhwc.c.obj 2025-08-26T19:44:26.5023227Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.5024395Z [1073/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\fully-connected-nc.c.obj 2025-08-26T19:44:26.5669845Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.5670673Z [1074/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nhwc.c.obj 2025-08-26T19:44:26.5845485Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.5846552Z [1075/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\rope-nthc.c.obj 2025-08-26T19:44:26.5904369Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.5905466Z [1076/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\slice-nd.c.obj 2025-08-26T19:44:26.5970955Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.5972385Z [1077/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\scaled-dot-product-attention-nhtc.c.obj 2025-08-26T19:44:26.6079827Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.6080932Z [1078/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\softmax-nc.c.obj 2025-08-26T19:44:26.6129507Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.6130781Z [1079/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\transpose-nd.c.obj 2025-08-26T19:44:26.6143123Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.6144328Z [1080/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unary-elementwise-nc.c.obj 2025-08-26T19:44:26.6196589Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.6197260Z [1081/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unpooling-nhwc.c.obj 2025-08-26T19:44:26.6961376Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.6962116Z [1082/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operator-run.dir\src\operator-run.c.obj 2025-08-26T19:44:26.6963149Z 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-08-26T19:44:26.6964408Z 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-08-26T19:44:26.6966780Z 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-08-26T19:44:26.7041323Z 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-08-26T19:44:26.7043335Z [1083/7555] Building C object confu-deps\XNNPACK\CMakeFiles\operator-utils.dir\src\operator-utils.c.obj 2025-08-26T19:44:26.8124213Z [1084/7555] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\binary-elementwise.cc.obj 2025-08-26T19:44:26.8126390Z 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-08-26T19:44:26.8128660Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-08-26T19:44:26.8130725Z 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-08-26T19:44:26.8133896Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-08-26T19:44:26.8136174Z 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-08-26T19:44:26.8138739Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-08-26T19:44:26.8141353Z 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-08-26T19:44:26.8143706Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-08-26T19:44:26.8343019Z 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-08-26T19:44:26.8344951Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-08-26T19:44:26.8345886Z [1085/7555] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\unary-elementwise.cc.obj 2025-08-26T19:44:26.8347092Z 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-08-26T19:44:26.8348339Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-08-26T19:44:26.8350122Z 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-08-26T19:44:26.8351556Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-08-26T19:44:26.8352903Z 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-08-26T19:44:26.8354636Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-08-26T19:44:26.8356838Z 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-08-26T19:44:26.8358972Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-08-26T19:44:26.8415566Z 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-08-26T19:44:26.8417680Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-08-26T19:44:26.8418517Z [1086/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\memory-planner.c.obj 2025-08-26T19:44:26.8587049Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.8588151Z [1087/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\argmax-pooling-2d.c.obj 2025-08-26T19:44:26.8655513Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.8656441Z [1088/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph.c.obj 2025-08-26T19:44:26.9125942Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.9127234Z [1089/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\runtime.c.obj 2025-08-26T19:44:26.9333181Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.9333932Z [1090/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\average-pooling-2d.c.obj 2025-08-26T19:44:26.9841830Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:26.9843076Z [1091/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\batch-matrix-multiply.c.obj 2025-08-26T19:44:27.0586259Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.0587156Z [1092/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\binary.c.obj 2025-08-26T19:44:27.0659486Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.0919658Z [1093/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\concatenate.c.obj 2025-08-26T19:44:27.0920333Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.0921011Z [1094/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\convolution-2d.c.obj 2025-08-26T19:44:27.1137411Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.1138426Z [1095/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deconvolution-2d.c.obj 2025-08-26T19:44:27.1262373Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.1263638Z [1096/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\copy.c.obj 2025-08-26T19:44:27.1413616Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.1414305Z [1097/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deprecated.c.obj 2025-08-26T19:44:27.1685199Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.1686492Z [1098/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depth-to-space-2d.c.obj 2025-08-26T19:44:27.2381485Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.2382825Z [1099/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depthwise-convolution-2d.c.obj 2025-08-26T19:44:27.2973835Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.2974565Z [1100/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\even-split.c.obj 2025-08-26T19:44:27.3146309Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.3147122Z [1101/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected-sparse.c.obj 2025-08-26T19:44:27.3428046Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.3428765Z [1102/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected.c.obj 2025-08-26T19:44:27.3559100Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.3560056Z [1103/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\max-pooling-2d.c.obj 2025-08-26T19:44:27.3769931Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.3770613Z [1104/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\reshape-helpers.c.obj 2025-08-26T19:44:27.3868931Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.3869589Z [1105/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\pack-lh.c.obj 2025-08-26T19:44:27.4105321Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.4106450Z [1106/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\scaled-dot-product-attention.c.obj 2025-08-26T19:44:27.4901441Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.4902337Z [1107/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\softmax.c.obj 2025-08-26T19:44:27.5566848Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.5568204Z [1108/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\space-to-depth-2d.c.obj 2025-08-26T19:44:27.5644032Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.5644757Z [1109/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-constant-pad.c.obj 2025-08-26T19:44:27.5766117Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.5767182Z [1110/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-reduce.c.obj 2025-08-26T19:44:27.6211049Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.6211743Z [1111/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-transpose.c.obj 2025-08-26T19:44:27.6462008Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.6462760Z [1112/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unpooling-2d.c.obj 2025-08-26T19:44:27.6528862Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.6529496Z [1113/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-slice.c.obj 2025-08-26T19:44:27.6616470Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.6617413Z [1114/7555] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-08-26T19:44:27.7106320Z [1115/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unary.c.obj 2025-08-26T19:44:27.7238907Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.7256198Z [1116/7555] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-08-26T19:44:27.7311743Z [1117/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-resize-bilinear-2d.c.obj 2025-08-26T19:44:27.7794920Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.7795623Z [1118/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\validation.c.obj 2025-08-26T19:44:27.7919567Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:27.7920513Z [1119/7555] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\tensor.c.obj 2025-08-26T19:44:28.0138462Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:28.0139202Z [1120/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc.c.obj 2025-08-26T19:44:28.0200848Z [1121/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-posix.c.obj 2025-08-26T19:44:28.0280517Z [1122/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-aligned.c.obj 2025-08-26T19:44:28.0826967Z [1123/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\arena.c.obj 2025-08-26T19:44:28.0936143Z [1124/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\heap.c.obj 2025-08-26T19:44:28.1131734Z [1125/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\bitmap.c.obj 2025-08-26T19:44:28.1776921Z [1126/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\init.c.obj 2025-08-26T19:44:28.2958047Z [1127/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\libc.c.obj 2025-08-26T19:44:28.3913567Z [1128/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\os.c.obj 2025-08-26T19:44:28.3989325Z [1129/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\page.c.obj 2025-08-26T19:44:28.4089693Z [1130/7555] Generating sleeflibm_AVX.h.tmp 2025-08-26T19:44:28.4139468Z [1131/7555] Generating sleeflibm_AVX2.h.tmp 2025-08-26T19:44:28.4222778Z [1132/7555] Generating sleeflibm_AVX2128.h.tmp 2025-08-26T19:44:28.4259785Z [1133/7555] Generating sleeflibm_AVX512F.h.tmp 2025-08-26T19:44:28.4365075Z [1134/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\random.c.obj 2025-08-26T19:44:28.4375133Z [1135/7555] Generating sleeflibm_AVX512FNOFMA.h.tmp 2025-08-26T19:44:28.4386032Z [1136/7555] Generating sleeflibm_AVX512F_.h.tmp 2025-08-26T19:44:28.4453408Z [1137/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment.c.obj 2025-08-26T19:44:28.4496970Z [1138/7555] Generating sleeflibm_AVX_.h.tmp 2025-08-26T19:44:28.4510638Z [1139/7555] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-08-26T19:44:28.4523627Z [1140/7555] Generating sleeflibm_FMA4.h.tmp 2025-08-26T19:44:28.4606421Z [1141/7555] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-08-26T19:44:28.4628640Z [1142/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment-map.c.obj 2025-08-26T19:44:28.4656433Z [1143/7555] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-08-26T19:44:28.4669131Z [1144/7555] Generating sleeflibm_SSE2.h.tmp 2025-08-26T19:44:28.4696425Z [1145/7555] Generating sleeflibm_SSE4.h.tmp 2025-08-26T19:44:28.4742427Z [1146/7555] Generating sleeflibm_SSE_.h.tmp 2025-08-26T19:44:28.4790756Z [1147/7555] Generating alias_AVX512F_sp.h.tmp 2025-08-26T19:44:28.4807581Z [1148/7555] Generating alias_AVX512F_dp.h.tmp 2025-08-26T19:44:28.4829036Z [1149/7555] Generating dispscalar.c.body 2025-08-26T19:44:28.4839504Z [1150/7555] Generating dispsse.c.tmp 2025-08-26T19:44:28.4885389Z [1151/7555] Generating dispavx.c.tmp 2025-08-26T19:44:28.5409578Z [1152/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\stats.c.obj 2025-08-26T19:44:28.6386600Z [1153/7555] Generating build_identifier.c 2025-08-26T19:44:28.6821727Z [1154/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\prim\prim.c.obj 2025-08-26T19:44:28.8191218Z [1155/7555] Building CXX object c10\CMakeFiles\c10.dir\core\AutogradState.cpp.obj 2025-08-26T19:44:28.8246003Z [1156/7555] Building CXX object c10\CMakeFiles\c10.dir\core\Allocator.cpp.obj 2025-08-26T19:44:28.8772981Z [1157/7555] Building CXX object c10\CMakeFiles\c10.dir\core\AllocatorConfig.cpp.obj 2025-08-26T19:44:28.9128207Z [1158/7555] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-data_onnx_torch.pb.cc.obj 2025-08-26T19:44:28.9559906Z [1159/7555] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-operators_onnx_torch-ml.pb.cc.obj 2025-08-26T19:44:28.9817952Z [1160/7555] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx_onnx_torch-ml.pb.cc.obj 2025-08-26T19:44:29.0578544Z [1161/7555] Building CXX object c10\CMakeFiles\c10.dir\core\CPUAllocator.cpp.obj 2025-08-26T19:44:29.0974917Z [1162/7555] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\options.c.obj 2025-08-26T19:44:29.1380993Z [1163/7555] Building CXX object c10\CMakeFiles\c10.dir\core\CachingDeviceAllocator.cpp.obj 2025-08-26T19:44:29.1398130Z [1164/7555] Linking CXX static library lib\mimalloc.lib 2025-08-26T19:44:29.1677635Z [1165/7555] Building CXX object c10\CMakeFiles\c10.dir\core\ConstantSymNodeImpl.cpp.obj 2025-08-26T19:44:29.2363642Z [1166/7555] Building CXX object c10\CMakeFiles\c10.dir\core\CopyBytes.cpp.obj 2025-08-26T19:44:29.2463633Z [1167/7555] Building CXX object c10\CMakeFiles\c10.dir\core\GradMode.cpp.obj 2025-08-26T19:44:29.3075575Z [1168/7555] Building CXX object c10\CMakeFiles\c10.dir\core\DeviceType.cpp.obj 2025-08-26T19:44:29.3382555Z [1169/7555] Building CXX object c10\CMakeFiles\c10.dir\core\DefaultDtype.cpp.obj 2025-08-26T19:44:29.3574379Z [1170/7555] Building CXX object c10\CMakeFiles\c10.dir\core\Device.cpp.obj 2025-08-26T19:44:29.4388931Z [1171/7555] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKey.cpp.obj 2025-08-26T19:44:29.4821842Z [1172/7555] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKeySet.cpp.obj 2025-08-26T19:44:29.5435640Z [1173/7555] Building CXX object c10\CMakeFiles\c10.dir\core\InferenceMode.cpp.obj 2025-08-26T19:44:29.6586613Z [1174/7555] Building CXX object c10\CMakeFiles\c10.dir\core\SafePyObject.cpp.obj 2025-08-26T19:44:29.6821403Z [1175/7555] Building CXX object c10\CMakeFiles\c10.dir\core\GeneratorImpl.cpp.obj 2025-08-26T19:44:29.6885226Z [1176/7555] Building CXX object c10\CMakeFiles\c10.dir\core\RefcountedDeleter.cpp.obj 2025-08-26T19:44:29.7410940Z [1177/7555] Building CXX object c10\CMakeFiles\c10.dir\core\Scalar.cpp.obj 2025-08-26T19:44:29.7428955Z [1178/7555] Building CXX object c10\CMakeFiles\c10.dir\core\ScalarType.cpp.obj 2025-08-26T19:44:29.8536025Z [1179/7555] Building CXX object c10\CMakeFiles\c10.dir\core\StorageImpl.cpp.obj 2025-08-26T19:44:29.8600956Z [1180/7555] Building CXX object c10\CMakeFiles\c10.dir\core\Stream.cpp.obj 2025-08-26T19:44:29.8788388Z [1181/7555] Building CXX object c10\CMakeFiles\c10.dir\core\Storage.cpp.obj 2025-08-26T19:44:30.0168176Z [1182/7555] Building CXX object c10\CMakeFiles\c10.dir\core\SymBool.cpp.obj 2025-08-26T19:44:30.0313610Z [1183/7555] Building CXX object c10\CMakeFiles\c10.dir\core\SymFloat.cpp.obj 2025-08-26T19:44:30.0699706Z [1184/7555] Building CXX object c10\CMakeFiles\c10.dir\core\SymIntArrayRef.cpp.obj 2025-08-26T19:44:30.0766819Z [1185/7555] Building CXX object c10\CMakeFiles\c10.dir\core\SymNodeImpl.cpp.obj 2025-08-26T19:44:30.0781428Z [1186/7555] Building CXX object c10\CMakeFiles\c10.dir\core\SymInt.cpp.obj 2025-08-26T19:44:30.2513824Z [1187/7555] Building CXX object c10\CMakeFiles\c10.dir\core\SymbolicShapeMeta.cpp.obj 2025-08-26T19:44:30.3076999Z [1188/7555] Building CXX object c10\CMakeFiles\c10.dir\core\TensorOptions.cpp.obj 2025-08-26T19:44:30.3417673Z [1189/7555] Building CXX object c10\CMakeFiles\c10.dir\core\TensorImpl.cpp.obj 2025-08-26T19:44:30.3853146Z [1190/7555] Building CXX object c10\CMakeFiles\c10.dir\core\WrapDimMinimal.cpp.obj 2025-08-26T19:44:30.3869638Z [1191/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COWDeleter.cpp.obj 2025-08-26T19:44:30.4065730Z [1192/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\DeviceGuardImplInterface.cpp.obj 2025-08-26T19:44:30.4119315Z [1193/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\HermeticPyObjectTLS.cpp.obj 2025-08-26T19:44:30.5245871Z [1194/7555] Building CXX object c10\CMakeFiles\c10.dir\core\UndefinedTensorImpl.cpp.obj 2025-08-26T19:44:30.5346322Z [1195/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COW.cpp.obj 2025-08-26T19:44:30.5942731Z [1196/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\GPUTrace.cpp.obj 2025-08-26T19:44:30.6841160Z [1197/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\LocalDispatchKeySet.cpp.obj 2025-08-26T19:44:30.7816004Z [1198/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyInterpreterHooks.cpp.obj 2025-08-26T19:44:30.7950708Z [1199/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyObjectSlot.cpp.obj 2025-08-26T19:44:30.8192652Z C:\actions-runner\_work\pytorch\pytorch\c10\core\impl\PyObjectSlot.cpp(53): warning C4805: '|': unsafe mix of type 'uintptr_t' and type 'bool' in operation 2025-08-26T19:44:30.8194352Z [1200/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PythonDispatcherTLS.cpp.obj 2025-08-26T19:44:30.8257184Z [1201/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyInterpreter.cpp.obj 2025-08-26T19:44:30.8338031Z [1202/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\SizesAndStrides.cpp.obj 2025-08-26T19:44:30.8932033Z [1203/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\TorchDispatchModeTLS.cpp.obj 2025-08-26T19:44:30.9406646Z [1204/7555] Building CXX object c10\CMakeFiles\c10.dir\core\impl\alloc_cpu.cpp.obj 2025-08-26T19:44:31.0719934Z [1205/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Bfloat16.cpp.obj 2025-08-26T19:44:31.1210691Z [1206/7555] Building CXX object c10\CMakeFiles\c10.dir\core\thread_pool.cpp.obj 2025-08-26T19:44:31.1406325Z [1207/7555] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUCachingAllocator.cpp.obj 2025-08-26T19:44:31.1586326Z [1208/7555] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUProfilingAllocator.cpp.obj 2025-08-26T19:44:31.1603316Z [1209/7555] Building CXX object c10\CMakeFiles\c10.dir\util\C++17.cpp.obj 2025-08-26T19:44:31.1990293Z [1210/7555] Building CXX object c10\CMakeFiles\c10.dir\util\ApproximateClock.cpp.obj 2025-08-26T19:44:31.2774615Z [1211/7555] Building CXX object c10\CMakeFiles\c10.dir\util\DeadlockDetection.cpp.obj 2025-08-26T19:44:31.3215165Z [1212/7555] Building CXX object c10\CMakeFiles\c10.dir\util\DynamicCounter.cpp.obj 2025-08-26T19:44:31.3984687Z [1213/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Backtrace.cpp.obj 2025-08-26T19:44:31.4056299Z [1214/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fnuz.cpp.obj 2025-08-26T19:44:31.4256695Z [1215/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2.cpp.obj 2025-08-26T19:44:31.4383731Z [1216/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fn.cpp.obj 2025-08-26T19:44:31.4567573Z [1217/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2fnuz.cpp.obj 2025-08-26T19:44:31.4707502Z [1218/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Exception.cpp.obj 2025-08-26T19:44:31.5191725Z [1219/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e8m0fnu.cpp.obj 2025-08-26T19:44:31.5922628Z [1220/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Gauge.cpp.obj 2025-08-26T19:44:31.6309750Z [1221/7555] Building CXX object c10\CMakeFiles\c10.dir\util\LeftRight.cpp.obj 2025-08-26T19:44:31.6565031Z [1222/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Half.cpp.obj 2025-08-26T19:44:31.6831124Z [1223/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Metaprogramming.cpp.obj 2025-08-26T19:44:31.6876665Z [1224/7555] Building CXX object c10\CMakeFiles\c10.dir\util\ParallelGuard.cpp.obj 2025-08-26T19:44:31.6936824Z [1225/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Optional.cpp.obj 2025-08-26T19:44:31.7411708Z [1226/7555] Building CXX object c10\CMakeFiles\c10.dir\util\MathConstants.cpp.obj 2025-08-26T19:44:31.7772440Z [1227/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Logging.cpp.obj 2025-08-26T19:44:31.8090061Z [1228/7555] Building CXX object c10\CMakeFiles\c10.dir\util\NetworkFlow.cpp.obj 2025-08-26T19:44:31.9131331Z [1229/7555] Building CXX object c10\CMakeFiles\c10.dir\util\TypeList.cpp.obj 2025-08-26T19:44:31.9416694Z [1230/7555] Building CXX object c10\CMakeFiles\c10.dir\util\TypeTraits.cpp.obj 2025-08-26T19:44:31.9634790Z [1231/7555] Building CXX object c10\CMakeFiles\c10.dir\util\SmallVector.cpp.obj 2025-08-26T19:44:31.9732816Z [1232/7555] Building CXX object c10\CMakeFiles\c10.dir\util\TypeCast.cpp.obj 2025-08-26T19:44:31.9931195Z [1233/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Type_no_demangle.cpp.obj 2025-08-26T19:44:32.0017862Z [1234/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Type_demangle.cpp.obj 2025-08-26T19:44:32.0042344Z [1235/7555] Building CXX object c10\CMakeFiles\c10.dir\util\ThreadLocalDebugInfo.cpp.obj 2025-08-26T19:44:32.0896846Z [1236/7555] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_gflags.cpp.obj 2025-08-26T19:44:32.1143665Z [1237/7555] Building CXX object c10\CMakeFiles\c10.dir\util\StringUtil.cpp.obj 2025-08-26T19:44:32.1254741Z [1238/7555] Building CXX object c10\CMakeFiles\c10.dir\util\UniqueVoidPtr.cpp.obj 2025-08-26T19:44:32.1980319Z [1239/7555] Building CXX object c10\CMakeFiles\c10.dir\util\error.cpp.obj 2025-08-26T19:44:32.2373252Z [1240/7555] Building CXX object c10\CMakeFiles\c10.dir\util\complex_math.cpp.obj 2025-08-26T19:44:32.2469113Z [1241/7555] Building CXX object c10\CMakeFiles\c10.dir\util\WaitCounter.cpp.obj 2025-08-26T19:44:32.3775647Z [1242/7555] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_no_gflags.cpp.obj 2025-08-26T19:44:32.3977053Z [1243/7555] Building CXX object c10\CMakeFiles\c10.dir\util\Unicode.cpp.obj 2025-08-26T19:44:32.4102153Z [1244/7555] Building CXX object c10\CMakeFiles\c10.dir\util\intrusive_ptr.cpp.obj 2025-08-26T19:44:32.4233926Z [1245/7555] Generating include/renameavx512fnofma.h 2025-08-26T19:44:32.4317890Z Generating renameavx512fnofma.h: mkrename "cinz_" "8" "16" "avx512fnofma" 2025-08-26T19:44:32.4318262Z 2025-08-26T19:44:32.4318526Z [1246/7555] Building CXX object c10\CMakeFiles\c10.dir\util\env.cpp.obj 2025-08-26T19:44:32.4360806Z [1247/7555] Generating include/renameavx512f.h 2025-08-26T19:44:32.4446765Z Generating renameavx512f.h: mkrename "finz_" "8" "16" "avx512f" 2025-08-26T19:44:32.4447360Z 2025-08-26T19:44:32.4447545Z [1248/7555] Generating include/renameavx2.h 2025-08-26T19:44:32.4492441Z Generating renameavx2.h: mkrename "finz_" "4" "8" "avx2" 2025-08-26T19:44:32.4492981Z 2025-08-26T19:44:32.4493179Z [1249/7555] Generating include/renameavx2128.h 2025-08-26T19:44:32.4585774Z Generating renameavx2128.h: mkrename "finz_" "2" "4" "avx2128" 2025-08-26T19:44:32.4586132Z 2025-08-26T19:44:32.4586308Z [1250/7555] Generating include/renamefma4.h 2025-08-26T19:44:32.4602452Z Generating renamefma4.h: mkrename "finz_" "4" "8" "fma4" 2025-08-26T19:44:32.4602741Z 2025-08-26T19:44:32.4602963Z [1251/7555] Building CXX object c10\CMakeFiles\c10.dir\util\int128.cpp.obj 2025-08-26T19:44:32.4641432Z [1252/7555] Generating include/renameavx.h 2025-08-26T19:44:32.4738349Z Generating renameavx.h: mkrename "cinz_" "4" "8" "avx" 2025-08-26T19:44:32.4738838Z 2025-08-26T19:44:32.4739040Z [1253/7555] Generating include/renamesse2.h 2025-08-26T19:44:32.4749364Z Generating renamesse2.h: mkrename "cinz_" "2" "4" "sse2" 2025-08-26T19:44:32.4749831Z 2025-08-26T19:44:32.4750027Z [1254/7555] Generating include/renamesse4.h 2025-08-26T19:44:32.4789718Z Generating renamesse4.h: mkrename "cinz_" "2" "4" "sse4" 2025-08-26T19:44:32.4790330Z 2025-08-26T19:44:32.4790578Z [1255/7555] Generating include/renamepurec_scalar.h 2025-08-26T19:44:32.4885825Z Generating renamepurec_scalar.h: mkrename "cinz_" "1" "1" "purec" 2025-08-26T19:44:32.4886432Z 2025-08-26T19:44:32.4886684Z [1256/7555] Generating include/renamepurecfma_scalar.h 2025-08-26T19:44:32.4898210Z Generating renamepurecfma_scalar.h: mkrename "finz_" "1" "1" "purecfma" 2025-08-26T19:44:32.4898751Z 2025-08-26T19:44:32.4898916Z [1257/7555] Generating include/renamecuda.h 2025-08-26T19:44:32.5073801Z Generating renamecuda.h: mkrename "finz_" "1" "1" "cuda" 2025-08-26T19:44:32.5074302Z 2025-08-26T19:44:32.5074516Z [1258/7555] Generating ../../../include/sleef.h 2025-08-26T19:44:32.5105927Z [1259/7555] Generating include/alias_avx512f.h 2025-08-26T19:44:32.5134367Z [1260/7555] Generating dispscalar.c 2025-08-26T19:44:32.5204201Z [1261/7555] Building CXX object c10\CMakeFiles\c10.dir\util\numa.cpp.obj 2025-08-26T19:44:32.5217525Z [1262/7555] Generating include/renamedspscalar.h 2025-08-26T19:44:32.5273051Z [1263/7555] Generating include/renamedsp128.h 2025-08-26T19:44:32.5356386Z [1264/7555] Generating include/renamedsp256.h 2025-08-26T19:44:32.5368299Z [1265/7555] Generating dispsse.c 2025-08-26T19:44:32.5436738Z [1266/7555] Generating dispavx.c 2025-08-26T19:44:32.5542288Z [1267/7555] Building CXX object c10\CMakeFiles\c10.dir\util\signal_handler.cpp.obj 2025-08-26T19:44:32.5823842Z [1268/7555] Building CXX object c10\CMakeFiles\c10.dir\util\thread_name.cpp.obj 2025-08-26T19:44:32.8071349Z [1269/7555] Building CXX object c10\CMakeFiles\c10.dir\util\typeid.cpp.obj 2025-08-26T19:44:32.8668063Z [1270/7555] Building CXX object c10\CMakeFiles\c10.dir\util\tempfile.cpp.obj 2025-08-26T19:44:32.8956653Z [1271/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\argmaxpool-config.c.obj 2025-08-26T19:44:32.9080975Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:32.9081961Z [1272/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\avgpool-config.c.obj 2025-08-26T19:44:32.9363059Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:32.9364296Z [1273/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\experiments-config.c.obj 2025-08-26T19:44:32.9454354Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:32.9455024Z [1274/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\conv-hwc2chw-config.c.obj 2025-08-26T19:44:32.9470856Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:32.9471609Z [1275/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\binary-elementwise-config.c.obj 2025-08-26T19:44:32.9491105Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:32.9491948Z [1276/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\cmul-config.c.obj 2025-08-26T19:44:32.9960331Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:32.9961177Z [1277/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv-config.c.obj 2025-08-26T19:44:33.2282982Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.2283826Z [1278/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv2d-chw-config.c.obj 2025-08-26T19:44:33.2818776Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.2819662Z [1279/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-chw-config.c.obj 2025-08-26T19:44:33.3112589Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.3113266Z [1280/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\lut32norm-config.c.obj 2025-08-26T19:44:33.3166458Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.3168378Z [1281/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\maxpool-config.c.obj 2025-08-26T19:44:33.3195951Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.3197096Z [1282/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-config.c.obj 2025-08-26T19:44:33.3340596Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.3341635Z [1283/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\gemm-config.c.obj 2025-08-26T19:44:33.3528784Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.3529928Z [1284/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pavgpool-config.c.obj 2025-08-26T19:44:33.3920121Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.3921394Z [1285/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pack-lh-config.c.obj 2025-08-26T19:44:33.6206561Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.6208780Z [1286/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\raddstoreexpminusmax-config.c.obj 2025-08-26T19:44:33.6628492Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.6629168Z [1287/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\reduce-config.c.obj 2025-08-26T19:44:33.7064122Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.7064822Z [1288/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\rmax-config.c.obj 2025-08-26T19:44:33.7156675Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.7157734Z [1289/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\transpose-config.c.obj 2025-08-26T19:44:33.7254848Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.7255938Z [1290/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\spmm-config.c.obj 2025-08-26T19:44:33.7338274Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.7339384Z [1291/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unpool-config.c.obj 2025-08-26T19:44:33.7361947Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.7363004Z [1292/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unary-elementwise-config.c.obj 2025-08-26T19:44:33.7904651Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.7905856Z [1293/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\vmulcaddc-config.c.obj 2025-08-26T19:44:33.8015645Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.8016290Z [1294/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\params.c.obj 2025-08-26T19:44:33.8081682Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:33.8082780Z [1295/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\build_identifier.c.obj 2025-08-26T19:44:34.0014381Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:34.0015117Z [1296/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-fill-config.c.obj 2025-08-26T19:44:34.0408602Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:34.0409771Z [1297/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-pad-config.c.obj 2025-08-26T19:44:34.0836365Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:34.0837103Z [1298/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\x8-lut-config.c.obj 2025-08-26T19:44:34.0905644Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:34.0906307Z [1299/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\algorithm.cc.obj 2025-08-26T19:44:34.1033248Z [1300/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\zip-config.c.obj 2025-08-26T19:44:34.1048936Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:34.1049879Z [1301/7555] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\init.c.obj 2025-08-26T19:44:34.2559716Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-08-26T19:44:34.2560739Z [1302/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgather.cc.obj 2025-08-26T19:44:34.2900014Z [1303/7555] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\jitprofiling.c.obj 2025-08-26T19:44:34.3183165Z [1304/7555] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\ittnotify_static.c.obj 2025-08-26T19:44:34.3238125Z [1305/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgatherv.cc.obj 2025-08-26T19:44:34.3550549Z [1306/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoallv.cc.obj 2025-08-26T19:44:34.3569659Z [1307/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoall.cc.obj 2025-08-26T19:44:34.3627853Z [1308/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce_local.cc.obj 2025-08-26T19:44:34.3768466Z [1309/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce.cc.obj 2025-08-26T19:44:34.4930392Z [1310/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\barrier.cc.obj 2025-08-26T19:44:34.5369700Z [1311/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\broadcast.cc.obj 2025-08-26T19:44:34.5669193Z [1312/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gather.cc.obj 2025-08-26T19:44:34.5909325Z [1313/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\types.cc.obj 2025-08-26T19:44:34.6007075Z [1314/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\context.cc.obj 2025-08-26T19:44:34.6211525Z [1315/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\reduce.cc.obj 2025-08-26T19:44:34.6224765Z [1316/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\scatter.cc.obj 2025-08-26T19:44:34.6344547Z [1317/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gatherv.cc.obj 2025-08-26T19:44:34.6979271Z [1318/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\store.cc.obj 2025-08-26T19:44:34.7493757Z [1319/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\logging.cc.obj 2025-08-26T19:44:34.8291679Z [1320/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\buffer.cc.obj 2025-08-26T19:44:34.8692972Z [1321/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\prefix_store.cc.obj 2025-08-26T19:44:34.8705317Z [1322/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\address.cc.obj 2025-08-26T19:44:34.8878990Z [1323/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\context.cc.obj 2025-08-26T19:44:34.8894902Z [1324/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\file_store.cc.obj 2025-08-26T19:44:34.9366060Z [1325/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\hash_store.cc.obj 2025-08-26T19:44:34.9936214Z [1326/7555] Linking CXX static library lib\onnx_proto.lib 2025-08-26T19:44:34.9955610Z [1327/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\utils.cc.obj 2025-08-26T19:44:35.0714879Z [1328/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\unbound_buffer.cc.obj 2025-08-26T19:44:35.0859959Z [1329/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\context.cc.obj 2025-08-26T19:44:35.1225249Z [1330/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\pair.cc.obj 2025-08-26T19:44:35.1349110Z [1331/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\device.cc.obj 2025-08-26T19:44:35.1747224Z [1332/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\win.cc.obj 2025-08-26T19:44:35.1801660Z [1333/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\assertions.cc.obj 2025-08-26T19:44:35.2015046Z [1334/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\interned_strings.cc.obj 2025-08-26T19:44:35.3748812Z [1335/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\status.cc.obj 2025-08-26T19:44:35.4872573Z [1336/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\model_helpers.cc.obj 2025-08-26T19:44:35.4960867Z [1337/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\ir_pb_converter.cc.obj 2025-08-26T19:44:35.6377313Z [1338/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\attr_proto_util.cc.obj 2025-08-26T19:44:35.6473894Z [1339/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\defs.cc.obj 2025-08-26T19:44:35.7217412Z [1340/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\checker.cc.obj 2025-08-26T19:44:35.7295780Z [1341/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\old.cc.obj 2025-08-26T19:44:35.7795862Z [1342/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\utils.cc.obj 2025-08-26T19:44:35.8451649Z [1343/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\path.cc.obj 2025-08-26T19:44:35.9223420Z [1344/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\function.cc.obj 2025-08-26T19:44:35.9486983Z [1345/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\data_type_utils.cc.obj 2025-08-26T19:44:36.0604373Z [1346/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\old.cc.obj 2025-08-26T19:44:36.0979078Z [1347/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\defs.cc.obj 2025-08-26T19:44:36.1197644Z [1348/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\utils.cc.obj 2025-08-26T19:44:36.1658083Z [1349/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\image\defs.cc.obj 2025-08-26T19:44:36.2560773Z [1350/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\defs.cc.obj 2025-08-26T19:44:36.3070230Z [1351/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\old.cc.obj 2025-08-26T19:44:36.3912789Z [1352/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\defs.cc.obj 2025-08-26T19:44:36.4005213Z [1353/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\old.cc.obj 2025-08-26T19:44:36.5044567Z [1354/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\utils.cc.obj 2025-08-26T19:44:36.5727925Z [1355/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\old.cc.obj 2025-08-26T19:44:36.5913609Z [1356/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\defs.cc.obj 2025-08-26T19:44:36.6034591Z [1357/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\defs.cc.obj 2025-08-26T19:44:36.6935493Z [1358/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\defs.cc.obj 2025-08-26T19:44:36.7215377Z [1359/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\old.cc.obj 2025-08-26T19:44:36.8304285Z [1360/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\old.cc.obj 2025-08-26T19:44:36.8735497Z [1361/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\parser.cc.obj 2025-08-26T19:44:36.9563235Z [1362/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\printer.cc.obj 2025-08-26T19:44:37.0389505Z [1363/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\defs.cc.obj 2025-08-26T19:44:37.0457144Z [1364/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\defs.cc.obj 2025-08-26T19:44:37.0481105Z [1365/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\old.cc.obj 2025-08-26T19:44:37.1345811Z [1366/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\utils.cc.obj 2025-08-26T19:44:37.1508371Z [1367/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\old.cc.obj 2025-08-26T19:44:37.2934037Z [1368/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\old.cc.obj 2025-08-26T19:44:37.3147080Z [1369/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\defs.cc.obj 2025-08-26T19:44:37.3880894Z [1370/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\schema.cc.obj 2025-08-26T19:44:37.5047177Z [1371/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\defs.cc.obj 2025-08-26T19:44:37.5227899Z [1372/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\shape_inference.cc.obj 2025-08-26T19:44:37.5453273Z [1373/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\sequence\defs.cc.obj 2025-08-26T19:44:37.5696201Z [1374/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\old.cc.obj 2025-08-26T19:44:37.5891633Z [1375/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\utils.cc.obj 2025-08-26T19:44:37.6865960Z [1376/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_proto_util.cc.obj 2025-08-26T19:44:37.7293288Z [1377/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_util.cc.obj 2025-08-26T19:44:37.8203161Z [1378/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\text\defs.cc.obj 2025-08-26T19:44:37.8482287Z [1379/7555] Building RC object third_party\ideep\mkl-dnn\src\CMakeFiles\dnnl.dir\version.rc.res 2025-08-26T19:44:37.9533947Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-08-26T19:44:37.9534290Z 2025-08-26T19:44:37.9534295Z 2025-08-26T19:44:37.9534472Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-08-26T19:44:37.9534761Z 2025-08-26T19:44:37.9534767Z 2025-08-26T19:44:37.9534775Z 2025-08-26T19:44:37.9534780Z 2025-08-26T19:44:37.9535213Z [1380/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\old.cc.obj 2025-08-26T19:44:37.9848012Z [1381/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\defs.cc.obj 2025-08-26T19:44:37.9865795Z [1382/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\training\defs.cc.obj 2025-08-26T19:44:38.0148372Z [1383/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\inliner\inliner.cc.obj 2025-08-26T19:44:38.1522569Z [1384/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\helper.cc.obj 2025-08-26T19:44:38.1948177Z [1385/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\bfloat16.cpp.obj 2025-08-26T19:44:38.2112032Z [1386/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\convert.cc.obj 2025-08-26T19:44:38.4045554Z [1387/7555] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\shape_inference\implementation.cc.obj 2025-08-26T19:44:38.4072342Z [1388/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\batch_normalization.cpp.obj 2025-08-26T19:44:38.5389328Z [1389/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\broadcast_strategy.cpp.obj 2025-08-26T19:44:38.5483973Z [1390/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\binary.cpp.obj 2025-08-26T19:44:38.6139605Z [1391/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\cache_blob_id.cpp.obj 2025-08-26T19:44:38.6555084Z [1392/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_threadpool.cpp.obj 2025-08-26T19:44:38.6745226Z [1393/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug_autogenerated.cpp.obj 2025-08-26T19:44:38.7029772Z [1394/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\concat.cpp.obj 2025-08-26T19:44:38.7331759Z [1395/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution_pd.cpp.obj 2025-08-26T19:44:38.7491287Z [1396/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution.cpp.obj 2025-08-26T19:44:38.9045620Z [1397/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\experimental.cpp.obj 2025-08-26T19:44:38.9392464Z [1398/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug.cpp.obj 2025-08-26T19:44:38.9695873Z [1399/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\deconvolution.cpp.obj 2025-08-26T19:44:38.9819063Z [1400/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\fpmath_mode.cpp.obj 2025-08-26T19:44:38.9897750Z [1401/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float4.cpp.obj 2025-08-26T19:44:39.0247724Z [1402/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float8.cpp.obj 2025-08-26T19:44:39.2328448Z [1403/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\eltwise.cpp.obj 2025-08-26T19:44:39.2387617Z [1404/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify.cpp.obj 2025-08-26T19:44:39.3663928Z [1405/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\engine.cpp.obj 2025-08-26T19:44:39.4933836Z [1406/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\group_normalization.cpp.obj 2025-08-26T19:44:39.5006381Z [1407/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\inner_product.cpp.obj 2025-08-26T19:44:39.5713674Z [1408/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\layer_normalization.cpp.obj 2025-08-26T19:44:39.5808117Z [1409/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\gemm.cpp.obj 2025-08-26T19:44:39.6138581Z [1410/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\kernel_cache.cpp.obj 2025-08-26T19:44:39.8055158Z [1411/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\matmul.cpp.obj 2025-08-26T19:44:39.8267956Z [1412/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\lrn.cpp.obj 2025-08-26T19:44:39.9077356Z [1413/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory.cpp.obj 2025-08-26T19:44:39.9725116Z [1414/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_debug.cpp.obj 2025-08-26T19:44:40.0288070Z [1415/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc.cpp.obj 2025-08-26T19:44:40.1159359Z [1416/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_storage.cpp.obj 2025-08-26T19:44:40.1223609Z [1417/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc_wrapper.cpp.obj 2025-08-26T19:44:40.1371554Z [1418/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_tracking.cpp.obj 2025-08-26T19:44:40.3767274Z [1419/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\pooling.cpp.obj 2025-08-26T19:44:40.4544859Z [1420/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\prelu.cpp.obj 2025-08-26T19:44:40.4641616Z [1421/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_zero_pad.cpp.obj 2025-08-26T19:44:40.5592984Z [1422/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive.cpp.obj 2025-08-26T19:44:40.6466223Z [1423/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_attr.cpp.obj 2025-08-26T19:44:40.6908527Z [1424/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_desc_iface.cpp.obj 2025-08-26T19:44:40.7131439Z [1425/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_cache.cpp.obj 2025-08-26T19:44:40.7218514Z [1426/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_exec_types.cpp.obj 2025-08-26T19:44:40.9457609Z [1427/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_hashing.cpp.obj 2025-08-26T19:44:41.0443727Z [1428/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\query.cpp.obj 2025-08-26T19:44:41.0804436Z [1429/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_iface.cpp.obj 2025-08-26T19:44:41.1384112Z [1430/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reduction.cpp.obj 2025-08-26T19:44:41.1541359Z [1431/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rw_mutex.cpp.obj 2025-08-26T19:44:41.2571386Z [1432/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\resampling.cpp.obj 2025-08-26T19:44:41.2659619Z [1433/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reorder.cpp.obj 2025-08-26T19:44:41.3281248Z [1434/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rnn.cpp.obj 2025-08-26T19:44:41.5059325Z [1435/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad.cpp.obj 2025-08-26T19:44:41.5963082Z [1436/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad_debug.cpp.obj 2025-08-26T19:44:41.6121804Z [1437/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\serialization.cpp.obj 2025-08-26T19:44:41.6792266Z [1438/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\shuffle.cpp.obj 2025-08-26T19:44:41.7271202Z [1439/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\softmax.cpp.obj 2025-08-26T19:44:41.7354704Z [1440/7555] Building ASM_MASM object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittptmark64.asm.obj 2025-08-26T19:44:41.8013301Z Microsoft (R) Macro Assembler (x64) Version 14.42.34444.0 2025-08-26T19:44:41.8013824Z 2025-08-26T19:44:41.8014128Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-08-26T19:44:41.8014628Z 2025-08-26T19:44:41.8014636Z 2025-08-26T19:44:41.8014642Z 2025-08-26T19:44:41.8015362Z Assembling: C:\actions-runner\_work\pytorch\pytorch\third_party\ideep\mkl-dnn\src\common\ittnotify\ittptmark64.asm 2025-08-26T19:44:41.8016299Z 2025-08-26T19:44:41.8016963Z [1441/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream.cpp.obj 2025-08-26T19:44:41.8202656Z [1442/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream_profiler.cpp.obj 2025-08-26T19:44:41.9687715Z [1443/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\sum.cpp.obj 2025-08-26T19:44:41.9937961Z [1444/7555] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittnotify_static.c.obj 2025-08-26T19:44:42.0133574Z [1445/7555] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\jitprofiling.c.obj 2025-08-26T19:44:42.0390751Z [1446/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\utils.cpp.obj 2025-08-26T19:44:42.3033509Z [1447/7555] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\verbose.cpp.obj 2025-08-26T19:44:42.3439008Z [1448/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\bfloat16.cpp.obj 2025-08-26T19:44:42.4243569Z [1449/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\binary_injector_utils.cpp.obj 2025-08-26T19:44:42.4817225Z [1450/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_list.cpp.obj 2025-08-26T19:44:42.5224557Z [1451/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_utils.cpp.obj 2025-08-26T19:44:42.6443951Z [1452/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_concat.cpp.obj 2025-08-26T19:44:42.6915442Z [1453/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_binary_list.cpp.obj 2025-08-26T19:44:42.8847799Z [1454/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_convolution_list.cpp.obj 2025-08-26T19:44:43.0341457Z [1455/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_eltwise_list.cpp.obj 2025-08-26T19:44:43.0459488Z [1456/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_engine.cpp.obj 2025-08-26T19:44:43.0906295Z [1457/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_deconvolution_list.cpp.obj 2025-08-26T19:44:43.1894656Z [1458/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_group_normalization_list.cpp.obj 2025-08-26T19:44:43.2399114Z [1459/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_inner_product_list.cpp.obj 2025-08-26T19:44:43.3105416Z [1460/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_layer_normalization_list.cpp.obj 2025-08-26T19:44:43.3867468Z [1461/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_lrn_list.cpp.obj 2025-08-26T19:44:43.6278993Z [1462/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_pooling_list.cpp.obj 2025-08-26T19:44:43.6934846Z [1463/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_reduction_list.cpp.obj 2025-08-26T19:44:43.7784409Z [1464/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_prelu_list.cpp.obj 2025-08-26T19:44:43.8285176Z [1465/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_resampling_list.cpp.obj 2025-08-26T19:44:43.8896265Z [1466/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_shuffle_list.cpp.obj 2025-08-26T19:44:43.9480102Z [1467/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_rnn_list.cpp.obj 2025-08-26T19:44:44.0315083Z [1468/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_softmax_list.cpp.obj 2025-08-26T19:44:44.0940566Z [1469/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_sum.cpp.obj 2025-08-26T19:44:44.2832704Z [1470/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\float16.cpp.obj 2025-08-26T19:44:44.3285468Z [1471/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution.cpp.obj 2025-08-26T19:44:44.5278009Z [1472/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution_utils.cpp.obj 2025-08-26T19:44:44.5771504Z [1473/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product.cpp.obj 2025-08-26T19:44:44.5918053Z [1474/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product_utils.cpp.obj 2025-08-26T19:44:44.6094984Z [1475/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.obj 2025-08-26T19:44:44.6863872Z [1476/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution.cpp.obj 2025-08-26T19:44:44.7605967Z [1477/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution_utils.cpp.obj 2025-08-26T19:44:44.9539521Z [1478/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nchw_pooling.cpp.obj 2025-08-26T19:44:44.9695822Z [1479/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_inner_product.cpp.obj 2025-08-26T19:44:45.1882373Z [1480/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_batch_normalization.cpp.obj 2025-08-26T19:44:45.2042273Z [1481/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_group_normalization.cpp.obj 2025-08-26T19:44:45.2586394Z [1482/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nhwc_pooling.cpp.obj 2025-08-26T19:44:45.3036086Z [1483/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nspc_batch_normalization.cpp.obj 2025-08-26T19:44:45.3224933Z [1484/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\platform.cpp.obj 2025-08-26T19:44:45.3411132Z [1485/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\primitive_attr_postops.cpp.obj 2025-08-26T19:44:45.6379942Z [1486/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_batch_normalization.cpp.obj 2025-08-26T19:44:45.6689713Z [1487/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_binary.cpp.obj 2025-08-26T19:44:45.8018782Z [1488/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution.cpp.obj 2025-08-26T19:44:45.8297358Z [1489/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution_int8.cpp.obj 2025-08-26T19:44:45.8871416Z [1490/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_deconvolution.cpp.obj 2025-08-26T19:44:45.9266158Z [1491/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_group_normalization.cpp.obj 2025-08-26T19:44:45.9652880Z [1492/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_eltwise.cpp.obj 2025-08-26T19:44:45.9874460Z [1493/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product.cpp.obj 2025-08-26T19:44:46.2362588Z [1494/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product_int8.cpp.obj 2025-08-26T19:44:46.3397232Z [1495/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_layer_normalization.cpp.obj 2025-08-26T19:44:46.4401629Z [1496/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_lrn.cpp.obj 2025-08-26T19:44:46.4968281Z [1497/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_pooling.cpp.obj 2025-08-26T19:44:46.5358708Z [1498/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_reduction.cpp.obj 2025-08-26T19:44:46.5772167Z [1499/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_shuffle.cpp.obj 2025-08-26T19:44:46.6004985Z [1500/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_resampling.cpp.obj 2025-08-26T19:44:46.6094418Z [1501/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_prelu.cpp.obj 2025-08-26T19:44:46.8891449Z [1502/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\bf16\ref_gemm_bf16.cpp.obj 2025-08-26T19:44:46.9140069Z [1503/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_softmax.cpp.obj 2025-08-26T19:44:46.9164159Z [1504/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\scale_utils.cpp.obj 2025-08-26T19:44:47.1578682Z [1505/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\zero_point_utils.cpp.obj 2025-08-26T19:44:47.1629575Z [1506/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_concat.cpp.obj 2025-08-26T19:44:47.1699152Z [1507/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\ref_gemm_f32.cpp.obj 2025-08-26T19:44:47.1783902Z [1508/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_sum.cpp.obj 2025-08-26T19:44:47.1811381Z [1509/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_layer_normalization.cpp.obj 2025-08-26T19:44:47.1953199Z [1510/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\gemm_utils_f32.cpp.obj 2025-08-26T19:44:47.2055994Z [1511/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_resampling.cpp.obj 2025-08-26T19:44:47.5278169Z [1512/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm.cpp.obj 2025-08-26T19:44:47.7146458Z [1513/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\ref_gemm_s8x8s32.cpp.obj 2025-08-26T19:44:47.7913552Z [1514/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm_pack.cpp.obj 2025-08-26T19:44:47.8119731Z [1515/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\simple_gemm_s8s8s32.cpp.obj 2025-08-26T19:44:47.8743268Z [1516/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_f32_matmul.cpp.obj 2025-08-26T19:44:47.8966115Z [1517/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\cpu_matmul_list.cpp.obj 2025-08-26T19:44:47.9058137Z [1518/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_bf16_matmul.cpp.obj 2025-08-26T19:44:47.9284246Z [1519/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_x8s8s32x_matmul.cpp.obj 2025-08-26T19:44:48.1862841Z [1520/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul.cpp.obj 2025-08-26T19:44:48.3803256Z [1521/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul_int8.cpp.obj 2025-08-26T19:44:48.4073767Z [1522/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_sparse_matmul.cpp.obj 2025-08-26T19:44:48.5062287Z [1523/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder.cpp.obj 2025-08-26T19:44:48.6277927Z [1524/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_f32_s8.cpp.obj 2025-08-26T19:44:48.6579566Z [1525/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_s8_s8.cpp.obj 2025-08-26T19:44:48.6600930Z [1526/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_bf16.cpp.obj 2025-08-26T19:44:48.7105876Z [1527/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_bf16_s8.cpp.obj 2025-08-26T19:44:48.9748198Z [1528/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f16.cpp.obj 2025-08-26T19:44:49.1423379Z [1529/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_bf16.cpp.obj 2025-08-26T19:44:49.2124115Z [1530/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f16.cpp.obj 2025-08-26T19:44:49.2301064Z [1531/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f32.cpp.obj 2025-08-26T19:44:49.3162768Z [1532/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_fp8.cpp.obj 2025-08-26T19:44:49.4284542Z [1533/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s32.cpp.obj 2025-08-26T19:44:49.4724148Z [1534/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_u8.cpp.obj 2025-08-26T19:44:49.4895390Z [1535/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s8.cpp.obj 2025-08-26T19:44:49.7415407Z [1536/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp4.cpp.obj 2025-08-26T19:44:49.9220661Z [1537/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp8.cpp.obj 2025-08-26T19:44:49.9335145Z [1538/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s4.cpp.obj 2025-08-26T19:44:49.9514319Z [1539/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s32.cpp.obj 2025-08-26T19:44:50.0607369Z [1540/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s8.cpp.obj 2025-08-26T19:44:50.1643758Z [1541/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u4.cpp.obj 2025-08-26T19:44:50.2026525Z [1542/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u8.cpp.obj 2025-08-26T19:44:50.2602386Z [1543/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\brgemm_cell_common.cpp.obj 2025-08-26T19:44:50.5867178Z [1544/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_common.cpp.obj 2025-08-26T19:44:50.6592062Z [1545/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru.cpp.obj 2025-08-26T19:44:50.6698208Z [1546/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru_lbr.cpp.obj 2025-08-26T19:44:50.7417916Z [1547/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru_lbr.cpp.obj 2025-08-26T19:44:50.7525931Z [1548/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru.cpp.obj 2025-08-26T19:44:50.8410282Z [1549/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\linux_perf\linux_perf.cpp.obj 2025-08-26T19:44:50.8640580Z [1550/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm.cpp.obj 2025-08-26T19:44:50.8950821Z [1551/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm_projection.cpp.obj 2025-08-26T19:44:50.9645937Z [1552/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_rnn.cpp.obj 2025-08-26T19:44:51.2100343Z [1553/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\jit_utils.cpp.obj 2025-08-26T19:44:51.3766770Z [1554/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\rnn_utils.cpp.obj 2025-08-26T19:44:51.4106210Z [1555/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\amx_tile_configure.cpp.obj 2025-08-26T19:44:51.4209524Z [1556/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_rnn.cpp.obj 2025-08-26T19:44:51.4829879Z [1557/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm.cpp.obj 2025-08-26T19:44:51.5375046Z [1558/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_containers.cpp.obj 2025-08-26T19:44:51.5454489Z [1559/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_utils.cpp.obj 2025-08-26T19:44:51.7318704Z [1560/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\capi\brgemm_api.cpp.obj 2025-08-26T19:44:51.8282441Z [1561/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brdgmm_kernel.cpp.obj 2025-08-26T19:44:52.0338672Z [1562/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_amx_uker.cpp.obj 2025-08-26T19:44:52.0543697Z [1563/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_kernel.cpp.obj 2025-08-26T19:44:52.0651038Z [1564/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_barrier.cpp.obj 2025-08-26T19:44:52.0668472Z [1565/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_isa_traits.cpp.obj 2025-08-26T19:44:52.1658474Z [1566/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_reducer.cpp.obj 2025-08-26T19:44:52.1819137Z [1567/7555] 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-08-26T19:44:52.3532272Z [1568/7555] 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-08-26T19:44:52.4719920Z [1569/7555] 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-08-26T19:44:52.6868159Z [1570/7555] 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-08-26T19:44:52.6978115Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:52.6978977Z [1571/7555] 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-08-26T19:44:52.7050124Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:52.7051441Z [1572/7555] 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-08-26T19:44:52.7140583Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:52.7142007Z [1573/7555] 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-08-26T19:44:52.8210146Z [1574/7555] 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-08-26T19:44:52.8875299Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:52.8876831Z [1575/7555] 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-08-26T19:44:52.9823874Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:52.9825363Z [1576/7555] 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-08-26T19:44:53.0937049Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:53.0938687Z [1577/7555] 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-08-26T19:44:53.3200934Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:53.3201824Z [1578/7555] 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-08-26T19:44:53.3277373Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:53.3279020Z [1579/7555] 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-08-26T19:44:53.3487195Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:53.3488644Z [1580/7555] 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-08-26T19:44:53.3748441Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:53.3749237Z [1581/7555] 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-08-26T19:44:53.4921360Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:53.4922799Z [1582/7555] 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-08-26T19:44:53.5731001Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:53.5731866Z [1583/7555] 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-08-26T19:44:53.6955704Z [1584/7555] 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-08-26T19:44:53.7312716Z [1585/7555] 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-08-26T19:44:53.9346106Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:53.9347546Z [1586/7555] 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-08-26T19:44:53.9617910Z [1587/7555] 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-08-26T19:44:54.0060770Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:54.0061771Z [1588/7555] 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-08-26T19:44:54.0304375Z [1589/7555] 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-08-26T19:44:54.1292536Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:54.1293939Z [1590/7555] 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-08-26T19:44:54.2137875Z [1591/7555] 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-08-26T19:44:54.3524789Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:54.3525635Z [1592/7555] 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-08-26T19:44:54.3937732Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:54.3938667Z [1593/7555] 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-08-26T19:44:54.5357706Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:54.5359462Z [1594/7555] 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-08-26T19:44:54.5456187Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:54.5457012Z [1595/7555] 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-08-26T19:44:54.6381550Z [1596/7555] 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-08-26T19:44:54.6925914Z [1597/7555] 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-08-26T19:44:54.7969636Z [1598/7555] 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-08-26T19:44:54.8723093Z [1599/7555] 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-08-26T19:44:55.0100528Z [1600/7555] 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-08-26T19:44:55.0201411Z [1601/7555] 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-08-26T19:44:55.1780431Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:55.1781379Z [1602/7555] 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-08-26T19:44:55.2159847Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:55.2160643Z [1603/7555] 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-08-26T19:44:55.2812046Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:55.2813717Z [1604/7555] 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-08-26T19:44:55.3465589Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:55.3467008Z [1605/7555] 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-08-26T19:44:55.4411195Z [1606/7555] 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-08-26T19:44:55.5360123Z [1607/7555] 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-08-26T19:44:55.6011939Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:55.6012737Z [1608/7555] 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-08-26T19:44:55.6940928Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:55.6942205Z [1609/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_driver.cpp.obj 2025-08-26T19:44:55.8160571Z [1610/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_pack.cpp.obj 2025-08-26T19:44:55.8517442Z [1611/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_info.cpp.obj 2025-08-26T19:44:55.9367556Z [1612/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemv_driver.cpp.obj 2025-08-26T19:44:55.9671660Z [1613/7555] 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-08-26T19:44:56.0802593Z [1614/7555] 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-08-26T19:44:56.1941142Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:56.1942379Z [1615/7555] 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-08-26T19:44:56.2341821Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:56.2343538Z [1616/7555] 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-08-26T19:44:56.3416600Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:56.3417549Z [1617/7555] 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-08-26T19:44:56.4505734Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:56.4506663Z [1618/7555] 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-08-26T19:44:56.4599203Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:56.4601025Z [1619/7555] 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-08-26T19:44:56.5700792Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:56.5701753Z [1620/7555] 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-08-26T19:44:56.5951602Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:56.5952592Z [1621/7555] 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-08-26T19:44:56.7073008Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:56.7073920Z [1622/7555] 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-08-26T19:44:56.8600128Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:56.8601041Z [1623/7555] 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-08-26T19:44:56.8750247Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:56.8751720Z [1624/7555] 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-08-26T19:44:56.9632111Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:56.9633243Z [1625/7555] 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-08-26T19:44:57.0745821Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:57.0746767Z [1626/7555] 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-08-26T19:44:57.1187408Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:57.1188463Z [1627/7555] 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-08-26T19:44:57.2075548Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:57.2076662Z [1628/7555] 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-08-26T19:44:57.2326251Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:57.2327676Z [1629/7555] 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-08-26T19:44:57.3719185Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:57.3720114Z [1630/7555] 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-08-26T19:44:57.4980864Z [1631/7555] 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-08-26T19:44:57.5496150Z [1632/7555] 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-08-26T19:44:57.6029453Z [1633/7555] 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-08-26T19:44:57.7526959Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:57.7528280Z [1634/7555] 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-08-26T19:44:57.7604990Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:57.7606635Z [1635/7555] 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-08-26T19:44:57.8346755Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:57.8348239Z [1636/7555] 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-08-26T19:44:57.8469589Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:57.8470958Z [1637/7555] 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-08-26T19:44:58.0099423Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.0100853Z [1638/7555] 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-08-26T19:44:58.1580406Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.1581331Z [1639/7555] 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-08-26T19:44:58.2291410Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.2292366Z [1640/7555] 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-08-26T19:44:58.2825380Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.2826730Z [1641/7555] 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-08-26T19:44:58.3811259Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.3812805Z [1642/7555] 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-08-26T19:44:58.4589455Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.4590377Z [1643/7555] 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-08-26T19:44:58.4786103Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.4786924Z [1644/7555] 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-08-26T19:44:58.5133480Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.5134334Z [1645/7555] 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-08-26T19:44:58.6371946Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.6373063Z [1646/7555] 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-08-26T19:44:58.7983567Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.7984984Z [1647/7555] 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-08-26T19:44:58.8978516Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.8980022Z [1648/7555] 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-08-26T19:44:58.9222721Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:58.9224498Z [1649/7555] 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-08-26T19:44:59.1070840Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.1071836Z [1650/7555] 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-08-26T19:44:59.1284483Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.1285922Z [1651/7555] 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-08-26T19:44:59.1354032Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.1355405Z [1652/7555] 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-08-26T19:44:59.1747837Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.1748716Z [1653/7555] 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-08-26T19:44:59.2600780Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.2601784Z [1654/7555] 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-08-26T19:44:59.3983322Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.3984807Z [1655/7555] 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-08-26T19:44:59.4953406Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.4954851Z [1656/7555] 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-08-26T19:44:59.5428723Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.5429684Z [1657/7555] 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-08-26T19:44:59.7769768Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.7770622Z [1658/7555] 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-08-26T19:44:59.7852186Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.7853094Z [1659/7555] 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-08-26T19:44:59.7962283Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.7963702Z [1660/7555] 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-08-26T19:44:59.8209171Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.8210196Z [1661/7555] 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-08-26T19:44:59.8521093Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:44:59.8522703Z [1662/7555] 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-08-26T19:45:00.0274641Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:45:00.0276049Z [1663/7555] 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-08-26T19:45:00.1499153Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:45:00.1500750Z [1664/7555] 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-08-26T19:45:00.2040480Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:45:00.2041476Z [1665/7555] 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-08-26T19:45:00.4131351Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:45:00.4132253Z [1666/7555] 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-08-26T19:45:00.4255716Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:45:00.4257156Z [1667/7555] 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-08-26T19:45:00.4444418Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:45:00.4445815Z [1668/7555] 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-08-26T19:45:00.4534200Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:45:00.4535688Z [1669/7555] 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-08-26T19:45:00.5286433Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:45:00.5287329Z [1670/7555] 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-08-26T19:45:00.6933612Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:45:00.6935408Z [1671/7555] 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-08-26T19:45:00.7324114Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:45:00.7324996Z [1672/7555] 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-08-26T19:45:00.9272416Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-08-26T19:45:00.9273194Z [1673/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_convolution.cpp.obj 2025-08-26T19:45:01.0355418Z [1674/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\injector_utils.cpp.obj 2025-08-26T19:45:01.0803616Z [1675/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_eltwise_injector.cpp.obj 2025-08-26T19:45:01.0933223Z [1676/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_inner_product.cpp.obj 2025-08-26T19:45:01.1555109Z [1677/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_binary_injector.cpp.obj 2025-08-26T19:45:01.1864184Z [1678/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_postops_injector.cpp.obj 2025-08-26T19:45:01.3322019Z [1679/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\ip_convolution.cpp.obj 2025-08-26T19:45:01.4039562Z [1680/7555] 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-08-26T19:45:01.6555967Z [1681/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_1x1_convolution.cpp.obj 2025-08-26T19:45:01.7400042Z [1682/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_conv_kernel_f32.cpp.obj 2025-08-26T19:45:01.7786531Z [1683/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_convolution.cpp.obj 2025-08-26T19:45:01.7975776Z [1684/7555] 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-08-26T19:45:01.8897540Z [1685/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_1x1_convolution.cpp.obj 2025-08-26T19:45:01.9091968Z [1686/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_conv_kernel.cpp.obj 2025-08-26T19:45:02.0652801Z [1687/7555] 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-08-26T19:45:02.0861036Z [1688/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_convolution.cpp.obj 2025-08-26T19:45:02.3451880Z [1689/7555] 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-08-26T19:45:02.4774140Z [1690/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_deconvolution.cpp.obj 2025-08-26T19:45:02.4795209Z [1691/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_convolution.cpp.obj 2025-08-26T19:45:02.4866516Z [1692/7555] 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-08-26T19:45:02.6180045Z [1693/7555] 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-08-26T19:45:02.6300468Z [1694/7555] 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-08-26T19:45:02.7118021Z [1695/7555] 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-08-26T19:45:02.8093761Z [1696/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_convolution.cpp.obj 2025-08-26T19:45:02.9611801Z [1697/7555] 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-08-26T19:45:03.1199770Z [1698/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp8cvt.cpp.obj 2025-08-26T19:45:03.1407679Z [1699/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp16cvt.cpp.obj 2025-08-26T19:45:03.2026218Z [1700/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_resampling.cpp.obj 2025-08-26T19:45:03.2515856Z [1701/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_scale_precompute.cpp.obj 2025-08-26T19:45:03.3017524Z [1702/7555] 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-08-26T19:45:03.3914101Z [1703/7555] 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-08-26T19:45:03.4600963Z [1704/7555] 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-08-26T19:45:03.6968214Z [1705/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_convolution.cpp.obj 2025-08-26T19:45:03.7555545Z [1706/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_sparse_decompress_kernel.cpp.obj 2025-08-26T19:45:03.8687832Z [1707/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_deconvolution.cpp.obj 2025-08-26T19:45:03.9411596Z [1708/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_1x1_conv.cpp.obj 2025-08-26T19:45:03.9728746Z [1709/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brdgmm_dw_conv.cpp.obj 2025-08-26T19:45:04.0290094Z [1710/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv.cpp.obj 2025-08-26T19:45:04.1731992Z [1711/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd.cpp.obj 2025-08-26T19:45:04.1876667Z [1712/7555] 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-08-26T19:45:04.3735547Z [1713/7555] 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-08-26T19:45:04.4189158Z [1714/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_strided.cpp.obj 2025-08-26T19:45:04.5597257Z [1715/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_utils.cpp.obj 2025-08-26T19:45:04.6599484Z [1716/7555] 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-08-26T19:45:04.6960556Z [1717/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_w.cpp.obj 2025-08-26T19:45:04.7187369Z [1718/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_trans_kernel.cpp.obj 2025-08-26T19:45:04.8538740Z [1719/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_utils.cpp.obj 2025-08-26T19:45:04.8728921Z [1720/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_deconv.cpp.obj 2025-08-26T19:45:05.0946216Z [1721/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product.cpp.obj 2025-08-26T19:45:05.1285842Z [1722/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product_utils.cpp.obj 2025-08-26T19:45:05.2791856Z [1723/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_post_ops.cpp.obj 2025-08-26T19:45:05.3281496Z [1724/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_primitive_conf.cpp.obj 2025-08-26T19:45:05.3884227Z [1725/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_transpose_utils.cpp.obj 2025-08-26T19:45:05.4562215Z [1726/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_inner_product_utils.cpp.obj 2025-08-26T19:45:05.5148084Z [1727/7555] 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-08-26T19:45:05.5445173Z [1728/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_x8s8s32x_convolution_utils.cpp.obj 2025-08-26T19:45:05.6562070Z [1729/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_generator.cpp.obj 2025-08-26T19:45:05.8687534Z [1730/7555] 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-08-26T19:45:05.9586166Z [1731/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_1x1_convolution.cpp.obj 2025-08-26T19:45:06.0180326Z [1732/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_convolution.cpp.obj 2025-08-26T19:45:06.0404239Z [1733/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_conv_kernel_f32.cpp.obj 2025-08-26T19:45:06.1296464Z [1734/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_transpose_utils.cpp.obj 2025-08-26T19:45:06.2626963Z [1735/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization.cpp.obj 2025-08-26T19:45:06.2717264Z [1736/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization_s8.cpp.obj 2025-08-26T19:45:06.3089411Z [1737/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary.cpp.obj 2025-08-26T19:45:06.5596062Z [1738/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary_kernel.cpp.obj 2025-08-26T19:45:06.6198810Z [1739/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_convert_xf16.cpp.obj 2025-08-26T19:45:06.6671277Z [1740/7555] 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-08-26T19:45:06.7481091Z [1741/7555] 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-08-26T19:45:06.8134927Z [1742/7555] 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-08-26T19:45:06.9419187Z [1743/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise.cpp.obj 2025-08-26T19:45:06.9820820Z [1744/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise_int.cpp.obj 2025-08-26T19:45:06.9940889Z [1745/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_convolution.cpp.obj 2025-08-26T19:45:07.2502925Z [1746/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_group_normalization.cpp.obj 2025-08-26T19:45:07.3330203Z [1747/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_i8i8_pooling.cpp.obj 2025-08-26T19:45:07.4383008Z [1748/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_instance_normalization.cpp.obj 2025-08-26T19:45:07.4711214Z [1749/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_layer_normalization.cpp.obj 2025-08-26T19:45:07.5284369Z [1750/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_ncsp_convolution.cpp.obj 2025-08-26T19:45:07.6138984Z [1751/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pool_kernel.cpp.obj 2025-08-26T19:45:07.6851973Z [1752/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction.cpp.obj 2025-08-26T19:45:07.6998279Z [1753/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pooling.cpp.obj 2025-08-26T19:45:07.8979937Z [1754/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction_kernel.cpp.obj 2025-08-26T19:45:08.0055595Z [1755/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder.cpp.obj 2025-08-26T19:45:08.1152591Z [1756/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_direct_copy.cpp.obj 2025-08-26T19:45:08.1238867Z [1757/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_utils.cpp.obj 2025-08-26T19:45:08.2796197Z [1758/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling_kernel.cpp.obj 2025-08-26T19:45:08.2894061Z [1759/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling.cpp.obj 2025-08-26T19:45:08.3974657Z [1760/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_softmax.cpp.obj 2025-08-26T19:45:08.4369132Z [1761/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_tbb_batch_normalization.cpp.obj 2025-08-26T19:45:08.5721524Z [1762/7555] 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-08-26T19:45:08.7386518Z [1763/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_1x1_convolution.cpp.obj 2025-08-26T19:45:08.8176523Z [1764/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_conv_kernel.cpp.obj 2025-08-26T19:45:08.8290484Z [1765/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_convolution.cpp.obj 2025-08-26T19:45:08.9539728Z [1766/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_xf16_sum.cpp.obj 2025-08-26T19:45:09.0111205Z [1767/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_deconvolution.cpp.obj 2025-08-26T19:45:09.0551700Z [1768/7555] 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-08-26T19:45:09.1173210Z [1769/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn.cpp.obj 2025-08-26T19:45:09.1705901Z [1770/7555] 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-08-26T19:45:09.3801013Z [1771/7555] 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-08-26T19:45:09.4870716Z [1772/7555] 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-08-26T19:45:09.5154297Z [1773/7555] 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-08-26T19:45:09.6167054Z [1774/7555] 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-08-26T19:45:09.6796032Z [1775/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn.cpp.obj 2025-08-26T19:45:09.7722526Z [1776/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn_kernel.cpp.obj 2025-08-26T19:45:09.8198003Z [1777/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_copy_utils.cpp.obj 2025-08-26T19:45:09.8562574Z [1778/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul.cpp.obj 2025-08-26T19:45:10.0881888Z [1779/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_reorders.cpp.obj 2025-08-26T19:45:10.1473772Z [1780/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_utils.cpp.obj 2025-08-26T19:45:10.2172361Z [1781/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\jit_uni_sparse_matmul.cpp.obj 2025-08-26T19:45:10.2870962Z [1782/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_backward.cpp.obj 2025-08-26T19:45:10.3523298Z [1783/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_base_kernel.cpp.obj 2025-08-26T19:45:10.4662992Z [1784/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_forward.cpp.obj 2025-08-26T19:45:10.4770310Z [1785/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_utils.cpp.obj 2025-08-26T19:45:10.4875628Z [1786/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_reduction_kernel.cpp.obj 2025-08-26T19:45:10.7378879Z [1787/7555] 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-08-26T19:45:10.7756205Z [1788/7555] 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-08-26T19:45:10.9039265Z [1789/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_bwd.cpp.obj 2025-08-26T19:45:10.9545908Z [1790/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_fwd.cpp.obj 2025-08-26T19:45:10.9935775Z [1791/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_utils.cpp.obj 2025-08-26T19:45:11.0302038Z [1792/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_reorders.cpp.obj 2025-08-26T19:45:11.1292398Z [1793/7555] 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-08-26T19:45:11.2226866Z [1794/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_diff_weights_peephole.cpp.obj 2025-08-26T19:45:11.4343438Z [1795/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\rnn_brgemm_utils.cpp.obj 2025-08-26T19:45:11.4818513Z [1796/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_gates_reduction.cpp.obj 2025-08-26T19:45:11.5831206Z [1797/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\allocator.cpp.obj 2025-08-26T19:45:11.5964753Z [1798/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\utils\jit_io_helper.cpp.obj 2025-08-26T19:45:11.6058656Z [1799/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle.cpp.obj 2025-08-26T19:45:11.6763528Z [1800/7555] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle_kernel.cpp.obj 2025-08-26T19:45:11.7284516Z [1801/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\backend.cpp.obj 2025-08-26T19:45:11.9031130Z [1802/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\constant_tensor_cache.cpp.obj 2025-08-26T19:45:12.1029092Z [1803/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\graph.cpp.obj 2025-08-26T19:45:12.1278486Z [1804/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\logical_tensor.cpp.obj 2025-08-26T19:45:12.1527552Z [1805/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_def_constraint.cpp.obj 2025-08-26T19:45:12.1730129Z [1806/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_schema.cpp.obj 2025-08-26T19:45:12.2178982Z [1807/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op.cpp.obj 2025-08-26T19:45:12.3194891Z [1808/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition.cpp.obj 2025-08-26T19:45:12.3387527Z [1809/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_cache.cpp.obj 2025-08-26T19:45:12.5294407Z [1810/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_hashing.cpp.obj 2025-08-26T19:45:12.7172076Z [1811/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\tensor.cpp.obj 2025-08-26T19:45:12.7191389Z [1812/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\value.cpp.obj 2025-08-26T19:45:12.7293585Z [1813/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_impl.cpp.obj 2025-08-26T19:45:12.8071931Z [1814/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\shape_infer.cpp.obj 2025-08-26T19:45:12.9002489Z [1815/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\fake\CMakeFiles\dnnl_graph_backend_fake.dir\fake_backend.cpp.obj 2025-08-26T19:45:12.9748607Z [1816/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\common.cpp.obj 2025-08-26T19:45:13.1164793Z [1817/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_backend.cpp.obj 2025-08-26T19:45:13.2753642Z [1818/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_partition_impl.cpp.obj 2025-08-26T19:45:13.3264251Z [1819/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_shape_infer.cpp.obj 2025-08-26T19:45:13.3548721Z [1820/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_id_mgr.cpp.obj 2025-08-26T19:45:13.3823908Z [1821/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\fusion_info.cpp.obj 2025-08-26T19:45:13.5005686Z [1822/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_propagator.cpp.obj 2025-08-26T19:45:13.5713257Z [1823/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\op_executable.cpp.obj 2025-08-26T19:45:13.5948043Z [1824/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\platform.cpp.obj 2025-08-26T19:45:13.8350977Z [1825/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\subgraph.cpp.obj 2025-08-26T19:45:13.9614629Z [1826/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\batch_norm.cpp.obj 2025-08-26T19:45:14.0298401Z [1827/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\binary.cpp.obj 2025-08-26T19:45:14.0540432Z [1828/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\concat.cpp.obj 2025-08-26T19:45:14.1428537Z [1829/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv.cpp.obj 2025-08-26T19:45:14.1621735Z [1830/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_base.cpp.obj 2025-08-26T19:45:14.2425554Z [1831/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_transpose.cpp.obj 2025-08-26T19:45:14.3611887Z [1832/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\dummy.cpp.obj 2025-08-26T19:45:14.5784992Z [1833/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\eltwise.cpp.obj 2025-08-26T19:45:14.6657126Z [1834/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\gen_index.cpp.obj 2025-08-26T19:45:14.6947668Z [1835/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\group_norm.cpp.obj 2025-08-26T19:45:14.6966658Z [1836/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\kernel_base.cpp.obj 2025-08-26T19:45:14.8496187Z [1837/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\layer_norm.cpp.obj 2025-08-26T19:45:14.9087231Z [1838/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\large_partition.cpp.obj 2025-08-26T19:45:14.9518769Z [1839/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\log_softmax.cpp.obj 2025-08-26T19:45:15.0746755Z [1840/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\matmul.cpp.obj 2025-08-26T19:45:15.3017207Z [1841/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\mqa_decomp.cpp.obj 2025-08-26T19:45:15.3305359Z [1842/7555] 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-08-26T19:45:15.4227577Z [1843/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\pool.cpp.obj 2025-08-26T19:45:15.4359916Z [1844/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\prelu.cpp.obj 2025-08-26T19:45:15.5283706Z [1845/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\quantize.cpp.obj 2025-08-26T19:45:15.6303624Z [1846/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reduction.cpp.obj 2025-08-26T19:45:15.6921297Z [1847/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reorder.cpp.obj 2025-08-26T19:45:15.8061925Z [1848/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\resampling.cpp.obj 2025-08-26T19:45:16.0304627Z [1849/7555] 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-08-26T19:45:16.0391454Z [1850/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_decomp.cpp.obj 2025-08-26T19:45:16.1215083Z [1851/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_primitive.cpp.obj 2025-08-26T19:45:16.1256769Z [1852/7555] 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-08-26T19:45:16.2141590Z [1853/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\select.cpp.obj 2025-08-26T19:45:16.3321242Z [1854/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\softmax.cpp.obj 2025-08-26T19:45:16.3451125Z [1855/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\shuffle.cpp.obj 2025-08-26T19:45:16.5365062Z [1856/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sum.cpp.obj 2025-08-26T19:45:16.7341255Z [1857/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\compile_ops.cpp.obj 2025-08-26T19:45:16.7847367Z [1858/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\constant_propagation.cpp.obj 2025-08-26T19:45:16.8017902Z [1859/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\layout_propagation.cpp.obj 2025-08-26T19:45:16.8276556Z [1860/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\insert_ops.cpp.obj 2025-08-26T19:45:16.8961775Z [1861/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\lower.cpp.obj 2025-08-26T19:45:17.0548023Z [1862/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\memory_planning.cpp.obj 2025-08-26T19:45:17.0931497Z [1863/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\transform.cpp.obj 2025-08-26T19:45:17.2543350Z [1864/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\utils.cpp.obj 2025-08-26T19:45:17.4401996Z [1865/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\binary_fusion.cpp.obj 2025-08-26T19:45:17.4763555Z [1866/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\bn_fusion.cpp.obj 2025-08-26T19:45:17.5008962Z [1867/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\concat_fusion.cpp.obj 2025-08-26T19:45:17.5151568Z [1868/7555] 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-08-26T19:45:17.6312914Z [1869/7555] 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-08-26T19:45:17.7566386Z [1870/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\convtranspose_fusion.cpp.obj 2025-08-26T19:45:17.7783000Z [1871/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\eltwise_fusion.cpp.obj 2025-08-26T19:45:17.9725380Z [1872/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\groupnorm_fusion.cpp.obj 2025-08-26T19:45:18.1460997Z [1873/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\interpolate_fusion.cpp.obj 2025-08-26T19:45:18.1957517Z [1874/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\mlp.cpp.obj 2025-08-26T19:45:18.2132971Z [1875/7555] 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-08-26T19:45:18.2385886Z [1876/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\layernorm_fusion.cpp.obj 2025-08-26T19:45:18.3271027Z [1877/7555] 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-08-26T19:45:18.4906068Z [1878/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\quantize_fusion.cpp.obj 2025-08-26T19:45:18.5144877Z [1879/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reduction_fusion.cpp.obj 2025-08-26T19:45:18.7270639Z [1880/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\debug.cpp.obj 2025-08-26T19:45:18.7513953Z [1881/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reorder_fusion.cpp.obj 2025-08-26T19:45:18.8134309Z [1882/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\alloc.cpp.obj 2025-08-26T19:45:18.8174368Z [1883/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\ocl_usm_utils.cpp.obj 2025-08-26T19:45:18.8367490Z [1884/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\id.cpp.obj 2025-08-26T19:45:18.8659641Z [1885/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\shuffle_fusion.cpp.obj 2025-08-26T19:45:18.9013788Z [1886/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sdp.cpp.obj 2025-08-26T19:45:18.9532339Z [1887/7555] 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-08-26T19:45:18.9678965Z [1888/7555] 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-08-26T19:45:18.9922800Z [1889/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sum_fusion.cpp.obj 2025-08-26T19:45:19.3533769Z [1890/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\libkineto_api.cpp.obj 2025-08-26T19:45:19.4138211Z [1891/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\ThreadUtil.cpp.obj 2025-08-26T19:45:19.4139854Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-08-26T19:45:19.4141756Z 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-08-26T19:45:19.4143618Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): warning C4005: 'NOGDI': macro redefinition 2025-08-26T19:45:19.4250214Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): note: 'NOGDI' previously declared on the command line 2025-08-26T19:45:19.4251515Z [1892/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_base.cpp.obj 2025-08-26T19:45:19.4350209Z [1893/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\utils.cpp.obj 2025-08-26T19:45:19.4377743Z [1894/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\nested_matcher.cpp.obj 2025-08-26T19:45:19.4883111Z [1895/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_manager.cpp.obj 2025-08-26T19:45:19.4956363Z [1896/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pbuilder.cpp.obj 2025-08-26T19:45:19.5793524Z [1897/7555] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\verbose.cpp.obj 2025-08-26T19:45:19.8587265Z [1898/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiNvPerfMetric.cpp.obj 2025-08-26T19:45:19.8728259Z [1899/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerConfig.cpp.obj 2025-08-26T19:45:19.9857894Z [1900/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfiler.cpp.obj 2025-08-26T19:45:20.0382815Z [1901/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Demangle.cpp.obj 2025-08-26T19:45:20.0593262Z [1902/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityApi.cpp.obj 2025-08-26T19:45:20.1132431Z [1903/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerApi.cpp.obj 2025-08-26T19:45:20.2132471Z [1904/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiEventApi.cpp.obj 2025-08-26T19:45:20.2243485Z [1905/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\WeakSymbols.cpp.obj 2025-08-26T19:45:20.2297212Z [1906/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiMetricApi.cpp.obj 2025-08-26T19:45:20.2373234Z [1907/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiCallbackApi.cpp.obj 2025-08-26T19:45:20.2481058Z [1908/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\KernelRegistry.cpp.obj 2025-08-26T19:45:20.3793398Z [1909/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\cupti_strings.cpp.obj 2025-08-26T19:45:20.5132789Z [1910/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfiler.cpp.obj 2025-08-26T19:45:20.5134754Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\numeric(33): warning C4244: '=': conversion from '_Ty' to '_Ty', possible loss of data 2025-08-26T19:45:20.5136098Z with 2025-08-26T19:45:20.5136390Z [ 2025-08-26T19:45:20.5136672Z _Ty=int64_t 2025-08-26T19:45:20.5137019Z ] 2025-08-26T19:45:20.5137292Z and 2025-08-26T19:45:20.5137563Z [ 2025-08-26T19:45:20.5137863Z _Ty=unsigned long 2025-08-26T19:45:20.5138237Z ] 2025-08-26T19:45:20.5139405Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\numeric(33): note: the template instantiation context (the oldest one first) is 2025-08-26T19:45:20.5512182Z 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-08-26T19:45:20.5515605Z with 2025-08-26T19:45:20.5515926Z [ 2025-08-26T19:45:20.5516265Z _Ty=unsigned long, 2025-08-26T19:45:20.5517004Z _InIt=std::_List_const_iterator>>, 2025-08-26T19:45:20.5517637Z _Fn=libkineto::Event::sumInstance:: 2025-08-26T19:45:20.5518097Z ] 2025-08-26T19:45:20.5518619Z [1911/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ApproximateClock.cpp.obj 2025-08-26T19:45:20.5639920Z [1912/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\AbstractConfig.cpp.obj 2025-08-26T19:45:20.5656630Z [1913/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfilerController.cpp.obj 2025-08-26T19:45:20.6312602Z [1914/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DaemonConfigLoader.cpp.obj 2025-08-26T19:45:20.6902923Z [1915/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityType.cpp.obj 2025-08-26T19:45:20.8451108Z [1916/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerProxy.cpp.obj 2025-08-26T19:45:20.8777898Z [1917/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerController.cpp.obj 2025-08-26T19:45:20.9049341Z [1918/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ConfigLoader.cpp.obj 2025-08-26T19:45:20.9183488Z [1919/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Config.cpp.obj 2025-08-26T19:45:20.9528811Z [1920/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityProfiler.cpp.obj 2025-08-26T19:45:20.9733990Z [1921/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\IpcFabricConfigClient.cpp.obj 2025-08-26T19:45:21.0297812Z [1922/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\GenericTraceActivity.cpp.obj 2025-08-26T19:45:21.1214070Z [1923/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceUtil.cpp.obj 2025-08-26T19:45:21.1295785Z [1924/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceProperties.cpp.obj 2025-08-26T19:45:21.1596192Z [1925/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\LoggingAPI.cpp.obj 2025-08-26T19:45:21.1745204Z [1926/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ILoggerObserver.cpp.obj 2025-08-26T19:45:21.2954514Z [1927/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Logger.cpp.obj 2025-08-26T19:45:21.3103488Z [1928/7555] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.3171817Z [1929/7555] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.3840016Z [1930/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_csv.cpp.obj 2025-08-26T19:45:21.4103033Z [1931/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_json.cpp.obj 2025-08-26T19:45:21.4345799Z [1932/7555] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.4497979Z [1933/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.4769401Z [1934/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.5124920Z [1935/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.5366649Z [1936/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.5453306Z [1937/7555] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\init.cpp.obj 2025-08-26T19:45:21.5546351Z [1938/7555] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.5558484Z [1939/7555] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.6174518Z [1940/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.6318392Z [1941/7555] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.6573585Z [1942/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.6657645Z [1943/7555] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.6670250Z [1944/7555] Linking CXX shared library bin\c10.dll 2025-08-26T19:45:21.6720566Z [1945/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.6868632Z [1946/7555] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.7411862Z [1947/7555] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.7539454Z [1948/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.7700530Z [1949/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.7759727Z [1950/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.7883663Z [1951/7555] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.8358888Z [1952/7555] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.8429966Z [1953/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.8505490Z [1954/7555] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.8751624Z [1955/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.8913744Z [1956/7555] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.8979939Z [1957/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.9258216Z [1958/7555] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.9428632Z [1959/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.9574941Z [1960/7555] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimdsp.c.obj 2025-08-26T19:45:21.9828331Z [1961/7555] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimddp.c.obj 2025-08-26T19:45:21.9839913Z [1962/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimdsp.c.obj 2025-08-26T19:45:22.0034195Z [1963/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimddp.c.obj 2025-08-26T19:45:22.0230012Z [1964/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimdsp.c.obj 2025-08-26T19:45:22.0290663Z [1965/7555] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimdsp.c.obj 2025-08-26T19:45:22.0403384Z [1966/7555] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimddp.c.obj 2025-08-26T19:45:22.0418353Z [1967/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimddp.c.obj 2025-08-26T19:45:22.0680427Z [1968/7555] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-08-26T19:45:22.0816698Z [1969/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-08-26T19:45:22.1047407Z [1970/7555] Building C object sleef\src\libm\CMakeFiles\sleef.dir\rempitab.c.obj 2025-08-26T19:45:22.1067920Z [1971/7555] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimddp.c.obj 2025-08-26T19:45:22.1079181Z [1972/7555] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimddp.c.obj 2025-08-26T19:45:22.1555799Z [1973/7555] Building C object sleef\src\libm\CMakeFiles\dispsse_obj.dir\dispsse.c.obj 2025-08-26T19:45:22.1683664Z [1974/7555] Linking CXX static library lib\XNNPACK.lib 2025-08-26T19:45:22.1889471Z [1975/7555] Building C object sleef\src\libm\CMakeFiles\dispavx_obj.dir\dispavx.c.obj 2025-08-26T19:45:22.1901649Z [1976/7555] Linking C static library lib\libittnotify.lib 2025-08-26T19:45:22.2066292Z [1977/7555] Building C object sleef\src\common\CMakeFiles\common.dir\common.c.obj 2025-08-26T19:45:22.2280014Z [1978/7555] Building C object sleef\src\libm\CMakeFiles\dispscalar_obj.dir\dispscalar.c.obj 2025-08-26T19:45:22.2350789Z [1979/7555] Linking CXX static library lib\gloo.lib 2025-08-26T19:45:22.3401443Z [1980/7555] Building CXX object caffe2\perfkernels\CMakeFiles\Caffe2_perfkernels_avx2.dir\common_avx2.cc.obj 2025-08-26T19:45:22.3676420Z [1981/7555] Building CXX object caffe2\perfkernels\CMakeFiles\Caffe2_perfkernels_avx2.dir\embedding_lookup_idx_avx2.cc.obj 2025-08-26T19:45:22.6174731Z [1982/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_bcube.cc.obj 2025-08-26T19:45:22.6175849Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T19:45:22.6177121Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): note: the template instantiation context (the oldest one first) is 2025-08-26T19:45:22.6178642Z 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-08-26T19:45:22.6180599Z 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-08-26T19:45:22.6182495Z 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-08-26T19:45:22.6183579Z with 2025-08-26T19:45:22.6183748Z [ 2025-08-26T19:45:22.6183938Z _Ty=gloo::cuda::bcube::Node 2025-08-26T19:45:22.6184192Z ] 2025-08-26T19:45:22.6185213Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(int &,const size_t &)' being compiled 2025-08-26T19:45:22.6186281Z with 2025-08-26T19:45:22.6186450Z [ 2025-08-26T19:45:22.6186625Z _Ty=gloo::cuda::bcube::Node 2025-08-26T19:45:22.6186877Z ] 2025-08-26T19:45:22.6187948Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(int &,const size_t &)' being compiled 2025-08-26T19:45:22.6189161Z with 2025-08-26T19:45:22.6189343Z [ 2025-08-26T19:45:22.6189524Z _Ty=gloo::cuda::bcube::Node 2025-08-26T19:45:22.6189784Z ] 2025-08-26T19:45:22.6771390Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(794): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,int&,const size_t&>(_Alloc &,_Objty *const ,int &,const size_t &)' being compiled 2025-08-26T19:45:22.6773676Z with 2025-08-26T19:45:22.6773998Z [ 2025-08-26T19:45:22.6774405Z _Alloc=std::allocator, 2025-08-26T19:45:22.6775008Z _Ty=gloo::cuda::bcube::Node, 2025-08-26T19:45:22.6775518Z _Objty=gloo::cuda::bcube::Node 2025-08-26T19:45:22.6775997Z ] 2025-08-26T19:45:22.6776862Z [1983/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_halving_doubling.cc.obj 2025-08-26T19:45:22.6791515Z [1984/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_local.cc.obj 2025-08-26T19:45:22.7415783Z [1985/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring.cc.obj 2025-08-26T19:45:22.7990110Z [1986/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_broadcast_one_to_all.cc.obj 2025-08-26T19:45:22.8072592Z [1987/7555] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring_chunked.cc.obj 2025-08-26T19:45:22.9676047Z [1988/7555] Linking CXX static library lib\kineto.lib 2025-08-26T19:45:23.0559118Z [1989/7555] Linking CXX static library lib\onnx.lib 2025-08-26T19:45:23.2781033Z [1990/7555] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAAllocatorConfig.cpp.obj 2025-08-26T19:45:23.4059232Z [1991/7555] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDADeviceAssertionHost.cpp.obj 2025-08-26T19:45:23.4267319Z [1992/7555] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAException.cpp.obj 2025-08-26T19:45:23.4340837Z [1993/7555] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDACachingAllocator.cpp.obj 2025-08-26T19:45:23.4767104Z [1994/7555] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda.cu.obj 2025-08-26T19:45:23.7000637Z cuda.cu 2025-08-26T19:45:23.7000917Z tmpxft_00001118_00000000-7_cuda.cudafe1.cpp 2025-08-26T19:45:23.7001413Z [1995/7555] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMiscFunctions.cpp.obj 2025-08-26T19:45:23.7126303Z [1996/7555] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAFunctions.cpp.obj 2025-08-26T19:45:23.7785863Z [1997/7555] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\driver_api.cpp.obj 2025-08-26T19:45:23.8615808Z [1998/7555] Linking C static library sleef\lib\sleef.lib 2025-08-26T19:45:23.8879335Z [1999/7555] Linking CXX static library lib\Caffe2_perfkernels_avx2.lib 2025-08-26T19:45:23.9284420Z [2000/7555] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_private.cu.obj 2025-08-26T19:45:23.9368519Z cuda_private.cu 2025-08-26T19:45:23.9368829Z tmpxft_00000b64_00000000-7_cuda_private.cudafe1.cpp 2025-08-26T19:45:23.9369471Z [2001/7555] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDAGuardImpl.cpp.obj 2025-08-26T19:45:23.9457135Z [2002/7555] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAStream.cpp.obj 2025-08-26T19:45:23.9537093Z [2003/7555] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMallocAsyncAllocator.cpp.obj 2025-08-26T19:45:24.0984027Z [2004/7555] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDATest.cpp.obj 2025-08-26T19:45:24.1716289Z [2005/7555] Generating C:/actions-runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-08-26T19:45:24.2012749Z [2006/7555] Linking CXX static library lib\gloo_cuda.lib 2025-08-26T19:45:24.2773529Z [2007/7555] Linking CXX shared library bin\c10_cuda.dll 2025-08-26T19:45:24.4505401Z [2008/7555] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest.dir\src\gtest-all.cc.obj 2025-08-26T19:45:24.5319987Z [2009/7555] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\src\gmock-all.cc.obj 2025-08-26T19:45:24.5579330Z [2010/7555] Linking CXX static library lib\gtest.lib 2025-08-26T19:45:24.5758592Z [2011/7555] Regenerating version file... 2025-08-26T19:45:24.6646443Z [2012/7555] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\__\googletest\src\gtest-all.cc.obj 2025-08-26T19:45:24.8023091Z [2013/7555] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest_main.dir\src\gtest_main.cc.obj 2025-08-26T19:45:24.8295151Z [2014/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_name.cc.obj 2025-08-26T19:45:25.1111974Z [2015/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark.cc.obj 2025-08-26T19:45:26.1830015Z [2016/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\check.cc.obj 2025-08-26T19:45:26.1848064Z [2017/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\colorprint.cc.obj 2025-08-26T19:45:26.1906997Z [2018/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_api_internal.cc.obj 2025-08-26T19:45:26.1924728Z [2019/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_runner.cc.obj 2025-08-26T19:45:26.1941842Z [2020/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_register.cc.obj 2025-08-26T19:45:26.5074925Z [2021/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\counter.cc.obj 2025-08-26T19:45:26.7141200Z [2022/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\console_reporter.cc.obj 2025-08-26T19:45:26.7221753Z [2023/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\csv_reporter.cc.obj 2025-08-26T19:45:26.7534593Z [2024/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\commandlineflags.cc.obj 2025-08-26T19:45:26.7602021Z [2025/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\complexity.cc.obj 2025-08-26T19:45:27.1214632Z [2026/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\json_reporter.cc.obj 2025-08-26T19:45:27.2911393Z [2027/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\reporter.cc.obj 2025-08-26T19:45:27.3048712Z [2028/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\perf_counters.cc.obj 2025-08-26T19:45:27.3257683Z [2029/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\string_util.cc.obj 2025-08-26T19:45:27.5364290Z [2030/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\arena.cc.obj 2025-08-26T19:45:27.5718187Z [2031/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\any_lite.cc.obj 2025-08-26T19:45:27.9619666Z [2032/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\statistics.cc.obj 2025-08-26T19:45:28.0655046Z [2033/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-08-26T19:45:28.0708720Z [2034/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\extension_set.cc.obj 2025-08-26T19:45:28.2932813Z [2035/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\timers.cc.obj 2025-08-26T19:45:28.3606876Z [2036/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-08-26T19:45:28.3695452Z [2037/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-08-26T19:45:28.3770636Z [2038/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-08-26T19:45:28.3850066Z [2039/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\sysinfo.cc.obj 2025-08-26T19:45:28.5961038Z [2040/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-08-26T19:45:28.6299588Z [2041/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-08-26T19:45:28.8825499Z [2042/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\message_lite.cc.obj 2025-08-26T19:45:29.1081418Z [2043/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\parse_context.cc.obj 2025-08-26T19:45:29.2333605Z [2044/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-08-26T19:45:29.2351867Z [2045/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-08-26T19:45:29.2369110Z [2046/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-08-26T19:45:29.2426247Z [2047/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-08-26T19:45:29.2811058Z [2048/7555] Linking CXX static library lib\dnnl.lib 2025-08-26T19:45:29.3484444Z [2049/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-08-26T19:45:29.4956152Z [2050/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-08-26T19:45:29.5116535Z [2051/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-08-26T19:45:29.5130467Z [2052/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-08-26T19:45:29.5279548Z [2053/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-08-26T19:45:29.5870383Z [2054/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-08-26T19:45:29.6353699Z [2055/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-08-26T19:45:29.6446349Z [2056/7555] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\version.rc.res 2025-08-26T19:45:29.7492778Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-08-26T19:45:29.7493403Z 2025-08-26T19:45:29.7493450Z 2025-08-26T19:45:29.7493759Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-08-26T19:45:29.7494255Z 2025-08-26T19:45:29.7494263Z 2025-08-26T19:45:29.7494269Z 2025-08-26T19:45:29.7494275Z 2025-08-26T19:45:29.7495191Z [2057/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-08-26T19:45:29.7930543Z [2058/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-08-26T19:45:29.7986176Z [2059/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-08-26T19:45:29.8107107Z [2060/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-08-26T19:45:29.8927220Z [2061/7555] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-08-26T19:45:29.9190229Z [2062/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\init.c.obj 2025-08-26T19:45:29.9720845Z [2063/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\api.c.obj 2025-08-26T19:45:29.9732636Z [2064/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\info.c.obj 2025-08-26T19:45:29.9814856Z [2065/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\vendor.c.obj 2025-08-26T19:45:30.0423083Z [2066/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\uarch.c.obj 2025-08-26T19:45:30.0591820Z [2067/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\cache.c.obj 2025-08-26T19:45:30.0602783Z [2068/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\name.c.obj 2025-08-26T19:45:30.0860198Z [2069/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\topology.c.obj 2025-08-26T19:45:30.1284664Z [2070/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\init.c.obj 2025-08-26T19:45:30.1296014Z [2071/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\descriptor.c.obj 2025-08-26T19:45:30.1367630Z [2072/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\isa.c.obj 2025-08-26T19:45:30.1476638Z [2073/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\log.c.obj 2025-08-26T19:45:30.1528380Z [2074/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\init.c.obj 2025-08-26T19:45:30.1891391Z [2075/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\deterministic.c.obj 2025-08-26T19:45:30.2559021Z [2076/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u3.c.obj 2025-08-26T19:45:30.2620469Z [2077/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-08-26T19:45:30.2632240Z [2078/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-08-26T19:45:30.2911742Z [2079/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u2.c.obj 2025-08-26T19:45:30.3117552Z [2080/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-08-26T19:45:30.3728294Z [2081/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-08-26T19:45:30.3746090Z [2082/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u1.c.obj 2025-08-26T19:45:30.3811878Z [2083/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u2.c.obj 2025-08-26T19:45:30.4052433Z [2084/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u3.c.obj 2025-08-26T19:45:30.4206779Z [2085/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u1.c.obj 2025-08-26T19:45:30.4606290Z [2086/7555] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\windows\init.c.obj 2025-08-26T19:45:30.4807237Z [2087/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u3.c.obj 2025-08-26T19:45:30.4927940Z [2088/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u1.c.obj 2025-08-26T19:45:30.4984554Z [2089/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u2.c.obj 2025-08-26T19:45:30.5154723Z [2090/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u3-acc3.c.obj 2025-08-26T19:45:30.5341623Z [2091/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc2.c.obj 2025-08-26T19:45:30.5718481Z [2092/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc4.c.obj 2025-08-26T19:45:30.5875037Z [2093/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u1.c.obj 2025-08-26T19:45:30.6072998Z [2094/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u2-acc2.c.obj 2025-08-26T19:45:30.6115417Z [2095/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u3-acc3.c.obj 2025-08-26T19:45:30.6355067Z [2096/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc2.c.obj 2025-08-26T19:45:30.6493012Z [2097/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc4.c.obj 2025-08-26T19:45:30.6775936Z [2098/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u1.c.obj 2025-08-26T19:45:30.6951305Z [2099/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u3-acc3.c.obj 2025-08-26T19:45:30.7171539Z [2100/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc2.c.obj 2025-08-26T19:45:30.7239402Z [2101/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc4.c.obj 2025-08-26T19:45:30.7419854Z [2102/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.obj 2025-08-26T19:45:30.7594103Z [2103/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.obj 2025-08-26T19:45:30.8122384Z [2104/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.obj 2025-08-26T19:45:30.8179517Z [2105/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.obj 2025-08-26T19:45:30.8424253Z [2106/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.obj 2025-08-26T19:45:30.8523698Z [2107/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar.c.obj 2025-08-26T19:45:30.8837380Z [2108/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.obj 2025-08-26T19:45:30.8852332Z [2109/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.obj 2025-08-26T19:45:30.9340243Z [2110/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar.c.obj 2025-08-26T19:45:30.9502692Z [2111/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.obj 2025-08-26T19:45:30.9740479Z [2112/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar.c.obj 2025-08-26T19:45:30.9796241Z [2113/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar.c.obj 2025-08-26T19:45:31.0097528Z [2114/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar.c.obj 2025-08-26T19:45:31.0188701Z [2115/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar-acc2.c.obj 2025-08-26T19:45:31.0565634Z [2116/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar.c.obj 2025-08-26T19:45:31.0702731Z [2117/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar-acc2.c.obj 2025-08-26T19:45:31.0973975Z [2118/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar.c.obj 2025-08-26T19:45:31.1084272Z [2119/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar.c.obj 2025-08-26T19:45:31.1290541Z [2120/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar.c.obj 2025-08-26T19:45:31.1476213Z [2121/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar-acc2.c.obj 2025-08-26T19:45:31.1773496Z [2122/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar.c.obj 2025-08-26T19:45:31.2137720Z [2123/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar-acc2.c.obj 2025-08-26T19:45:31.2250365Z [2124/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.obj 2025-08-26T19:45:31.2304835Z [2125/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar.c.obj 2025-08-26T19:45:31.2539122Z [2126/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.obj 2025-08-26T19:45:31.2679466Z [2127/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.obj 2025-08-26T19:45:31.2999386Z [2128/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar.c.obj 2025-08-26T19:45:31.3316436Z [2129/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.obj 2025-08-26T19:45:31.3416029Z [2130/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.obj 2025-08-26T19:45:31.3524404Z [2131/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.obj 2025-08-26T19:45:31.3796319Z [2132/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar.c.obj 2025-08-26T19:45:31.4015382Z [2133/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.obj 2025-08-26T19:45:31.4309954Z [2134/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.obj 2025-08-26T19:45:31.4579046Z [2135/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.obj 2025-08-26T19:45:31.4675983Z [2136/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar.c.obj 2025-08-26T19:45:31.4781329Z [2137/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar.c.obj 2025-08-26T19:45:31.5093257Z [2138/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar.c.obj 2025-08-26T19:45:31.5234865Z [2139/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar-acc2.c.obj 2025-08-26T19:45:31.5626253Z [2140/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar.c.obj 2025-08-26T19:45:31.5811682Z [2141/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar-acc2.c.obj 2025-08-26T19:45:31.5962767Z [2142/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar.c.obj 2025-08-26T19:45:31.5976108Z [2143/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar.c.obj 2025-08-26T19:45:31.6411754Z [2144/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar.c.obj 2025-08-26T19:45:31.6518306Z [2145/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar-acc2.c.obj 2025-08-26T19:45:31.6869410Z [2146/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar.c.obj 2025-08-26T19:45:31.7028812Z [2147/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar-acc2.c.obj 2025-08-26T19:45:31.7208532Z [2148/7555] 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-08-26T19:45:31.7467076Z [2149/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar.c.obj 2025-08-26T19:45:31.7726058Z [2150/7555] 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-08-26T19:45:31.7850158Z [2151/7555] 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-08-26T19:45:31.8124781Z [2152/7555] 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-08-26T19:45:31.8279250Z [2153/7555] 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-08-26T19:45:31.8440853Z [2154/7555] 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-08-26T19:45:31.8906007Z [2155/7555] 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-08-26T19:45:31.9143256Z [2156/7555] 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-08-26T19:45:31.9316807Z [2157/7555] 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-08-26T19:45:31.9332984Z [2158/7555] 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-08-26T19:45:31.9501167Z [2159/7555] 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-08-26T19:45:31.9807674Z [2160/7555] 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-08-26T19:45:32.0184052Z [2161/7555] 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-08-26T19:45:32.0376708Z [2162/7555] 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-08-26T19:45:32.0609315Z [2163/7555] 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-08-26T19:45:32.0677473Z [2164/7555] 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-08-26T19:45:32.0796788Z [2165/7555] 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-08-26T19:45:32.1016060Z [2166/7555] 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-08-26T19:45:32.1437041Z [2167/7555] 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-08-26T19:45:32.1714057Z [2168/7555] 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-08-26T19:45:32.1924337Z [2169/7555] 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-08-26T19:45:32.2068608Z [2170/7555] 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-08-26T19:45:32.2081243Z [2171/7555] 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-08-26T19:45:32.2247488Z [2172/7555] 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-08-26T19:45:32.2670740Z [2173/7555] 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-08-26T19:45:32.2985023Z [2174/7555] 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-08-26T19:45:32.3230626Z [2175/7555] 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-08-26T19:45:32.3284663Z [2176/7555] 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-08-26T19:45:32.3391368Z [2177/7555] 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-08-26T19:45:32.3556436Z [2178/7555] 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-08-26T19:45:32.3741265Z [2179/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u1.c.obj 2025-08-26T19:45:32.4151342Z [2180/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u2.c.obj 2025-08-26T19:45:32.4380892Z [2181/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u3.c.obj 2025-08-26T19:45:32.4473093Z [2182/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u1.c.obj 2025-08-26T19:45:32.4555784Z [2183/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u3.c.obj 2025-08-26T19:45:32.4667817Z [2184/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u4.c.obj 2025-08-26T19:45:32.5031975Z [2185/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x2-relu-scalar.c.obj 2025-08-26T19:45:32.5527707Z [2186/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x4-minmax-scalar.c.obj 2025-08-26T19:45:32.5634360Z [2187/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p1.c.obj 2025-08-26T19:45:32.5726043Z [2188/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p2.c.obj 2025-08-26T19:45:32.5886254Z [2189/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x4-minmax-scalar.c.obj 2025-08-26T19:45:32.5975443Z [2190/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-2x4-minmax-scalar.c.obj 2025-08-26T19:45:32.6072184Z [2191/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c1.c.obj 2025-08-26T19:45:32.6852825Z [2192/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-2x4-minmax-scalar.c.obj 2025-08-26T19:45:32.6929306Z [2193/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c4.c.obj 2025-08-26T19:45:32.6977032Z [2194/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x2-relu-scalar.c.obj 2025-08-26T19:45:32.7028445Z [2195/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-3x3-minmax-scalar.c.obj 2025-08-26T19:45:32.7110414Z [2196/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x2-minmax-scalar.c.obj 2025-08-26T19:45:32.7225686Z [2197/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x4-minmax-scalar.c.obj 2025-08-26T19:45:32.8316815Z [2198/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x4-minmax-scalar.c.obj 2025-08-26T19:45:32.8363079Z [2199/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x2-minmax-scalar.c.obj 2025-08-26T19:45:32.8407647Z [2200/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-relu-scalar.c.obj 2025-08-26T19:45:32.8524975Z [2201/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-minmax-scalar.c.obj 2025-08-26T19:45:32.8575554Z [2202/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-scalar.c.obj 2025-08-26T19:45:32.8629123Z [2203/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-relu-scalar.c.obj 2025-08-26T19:45:32.9806451Z [2204/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-scalar.c.obj 2025-08-26T19:45:32.9818583Z [2205/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-relu-scalar.c.obj 2025-08-26T19:45:32.9983633Z [2206/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-relu-scalar.c.obj 2025-08-26T19:45:33.0030719Z [2207/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-scalar.c.obj 2025-08-26T19:45:33.0512430Z [2208/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-scalar.c.obj 2025-08-26T19:45:33.0622773Z [2209/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-minmax-scalar.c.obj 2025-08-26T19:45:33.0805885Z [2210/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-1x1-minmax-scalar.c.obj 2025-08-26T19:45:33.0974085Z [2211/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-2x1-minmax-scalar.c.obj 2025-08-26T19:45:33.1056020Z [2212/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-4x1-minmax-scalar.c.obj 2025-08-26T19:45:33.1336554Z [2213/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x1-minmax-scalar.c.obj 2025-08-26T19:45:33.1671156Z [2214/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x2-minmax-scalar.c.obj 2025-08-26T19:45:33.1727957Z [2215/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x4-minmax-scalar.c.obj 2025-08-26T19:45:33.1935973Z [2216/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-08-26T19:45:33.2204062Z [2217/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-08-26T19:45:33.2321120Z [2218/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-08-26T19:45:33.2386807Z [2219/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-08-26T19:45:33.2749094Z [2220/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u2.c.obj 2025-08-26T19:45:33.2853191Z [2221/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u3.c.obj 2025-08-26T19:45:33.3268655Z [2222/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u1.c.obj 2025-08-26T19:45:33.3328990Z [2223/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u2.c.obj 2025-08-26T19:45:33.3411221Z [2224/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u3.c.obj 2025-08-26T19:45:33.3463390Z [2225/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u1.c.obj 2025-08-26T19:45:33.3874829Z [2226/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u2.c.obj 2025-08-26T19:45:33.3935861Z [2227/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u3.c.obj 2025-08-26T19:45:33.4422752Z [2228/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u4.c.obj 2025-08-26T19:45:33.4436953Z [2229/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u2.c.obj 2025-08-26T19:45:33.4492854Z [2230/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u3.c.obj 2025-08-26T19:45:33.4578597Z [2231/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u1.c.obj 2025-08-26T19:45:33.5055991Z [2232/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u3.c.obj 2025-08-26T19:45:33.5069039Z [2233/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u2.c.obj 2025-08-26T19:45:33.5410898Z [2234/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.obj 2025-08-26T19:45:33.5507310Z [2235/7555] 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-08-26T19:45:33.5552721Z [2236/7555] 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-08-26T19:45:33.5701897Z [2237/7555] 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-08-26T19:45:33.6171575Z [2238/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.obj 2025-08-26T19:45:33.6276106Z [2239/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.obj 2025-08-26T19:45:33.6500532Z [2240/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.obj 2025-08-26T19:45:33.6555941Z [2241/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u1.c.obj 2025-08-26T19:45:33.6568675Z [2242/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u2-acc2.c.obj 2025-08-26T19:45:33.6752942Z [2243/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u3-acc3.c.obj 2025-08-26T19:45:33.7304487Z [2244/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc2.c.obj 2025-08-26T19:45:33.7399687Z [2245/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u1.c.obj 2025-08-26T19:45:33.7680918Z [2246/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u3-acc3.c.obj 2025-08-26T19:45:33.7734705Z [2247/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u2-acc2.c.obj 2025-08-26T19:45:33.7750827Z [2248/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc2.c.obj 2025-08-26T19:45:33.7928742Z [2249/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc4.c.obj 2025-08-26T19:45:33.8377365Z [2250/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u1.c.obj 2025-08-26T19:45:33.8629761Z [2251/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u2-acc2.c.obj 2025-08-26T19:45:33.8779149Z [2252/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u3-acc3.c.obj 2025-08-26T19:45:33.8828221Z [2253/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc2.c.obj 2025-08-26T19:45:33.8885141Z [2254/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u1.c.obj 2025-08-26T19:45:33.8977489Z [2255/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u2-acc2.c.obj 2025-08-26T19:45:33.9553408Z [2256/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u3-acc3.c.obj 2025-08-26T19:45:33.9733454Z [2257/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc2.c.obj 2025-08-26T19:45:33.9903282Z [2258/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar.c.obj 2025-08-26T19:45:33.9950419Z [2259/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar-pipelined.c.obj 2025-08-26T19:45:34.0001794Z [2260/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar-pipelined.c.obj 2025-08-26T19:45:34.0014965Z [2261/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar.c.obj 2025-08-26T19:45:34.0658577Z [2262/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar-pipelined.c.obj 2025-08-26T19:45:34.0820740Z [2263/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar.c.obj 2025-08-26T19:45:34.1027316Z [2264/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar-pipelined.c.obj 2025-08-26T19:45:34.1121103Z [2265/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u1.c.obj 2025-08-26T19:45:34.1255692Z [2266/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u4.c.obj 2025-08-26T19:45:34.1273327Z [2267/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u2.c.obj 2025-08-26T19:45:34.1828569Z [2268/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u1.c.obj 2025-08-26T19:45:34.2031604Z [2269/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u2.c.obj 2025-08-26T19:45:34.2194563Z [2270/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u4.c.obj 2025-08-26T19:45:34.2383432Z [2271/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u1.c.obj 2025-08-26T19:45:34.2512602Z [2272/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u4.c.obj 2025-08-26T19:45:34.2530543Z [2273/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u8.c.obj 2025-08-26T19:45:34.3049310Z [2274/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u1.c.obj 2025-08-26T19:45:34.3240917Z [2275/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u4.c.obj 2025-08-26T19:45:34.3353180Z [2276/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u8.c.obj 2025-08-26T19:45:34.3577080Z [2277/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u1.c.obj 2025-08-26T19:45:34.3704954Z [2278/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u2.c.obj 2025-08-26T19:45:34.3767104Z [2279/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u4.c.obj 2025-08-26T19:45:34.4274460Z [2280/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u1.c.obj 2025-08-26T19:45:34.4390347Z [2281/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u2.c.obj 2025-08-26T19:45:34.4781952Z [2282/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u1.c.obj 2025-08-26T19:45:34.4898947Z [2283/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u2.c.obj 2025-08-26T19:45:34.4974992Z [2284/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u4.c.obj 2025-08-26T19:45:34.5049057Z [2285/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u4.c.obj 2025-08-26T19:45:34.5484470Z [2286/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u1.c.obj 2025-08-26T19:45:34.5543043Z [2287/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u2.c.obj 2025-08-26T19:45:34.5916860Z [2288/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u4.c.obj 2025-08-26T19:45:34.6084239Z [2289/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u1.c.obj 2025-08-26T19:45:34.6154108Z [2290/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u2.c.obj 2025-08-26T19:45:34.6302548Z [2291/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u4.c.obj 2025-08-26T19:45:34.6622008Z [2292/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u2.c.obj 2025-08-26T19:45:34.6720934Z [2293/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u1.c.obj 2025-08-26T19:45:34.7073124Z [2294/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u4.c.obj 2025-08-26T19:45:34.7267790Z [2295/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u1.c.obj 2025-08-26T19:45:34.7321809Z [2296/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u2.c.obj 2025-08-26T19:45:34.7423956Z [2297/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u4.c.obj 2025-08-26T19:45:34.7855210Z [2298/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u1.c.obj 2025-08-26T19:45:34.7973647Z [2299/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u2.c.obj 2025-08-26T19:45:34.8272907Z [2300/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u4.c.obj 2025-08-26T19:45:34.8525385Z [2301/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u1.c.obj 2025-08-26T19:45:34.8539134Z [2302/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u4.c.obj 2025-08-26T19:45:34.8599573Z [2303/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u8.c.obj 2025-08-26T19:45:34.8808764Z [2304/7555] 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-08-26T19:45:34.9124387Z [2305/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u1.c.obj 2025-08-26T19:45:34.9138400Z [2306/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u2.c.obj 2025-08-26T19:45:34.9543212Z [2307/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u4.c.obj 2025-08-26T19:45:34.9778581Z [2308/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u4.c.obj 2025-08-26T19:45:34.9794497Z [2309/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u2.c.obj 2025-08-26T19:45:34.9851606Z [2310/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u1.c.obj 2025-08-26T19:45:35.0032531Z [2311/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u1.c.obj 2025-08-26T19:45:35.0357545Z [2312/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u2.c.obj 2025-08-26T19:45:35.0423383Z [2313/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u4.c.obj 2025-08-26T19:45:35.0719654Z [2314/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u1.c.obj 2025-08-26T19:45:35.0981267Z [2315/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u4.c.obj 2025-08-26T19:45:35.0994351Z [2316/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u2.c.obj 2025-08-26T19:45:35.1057526Z [2317/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u1.c.obj 2025-08-26T19:45:35.1222810Z [2318/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u2.c.obj 2025-08-26T19:45:35.1520279Z [2319/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u4.c.obj 2025-08-26T19:45:35.1578408Z [2320/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u1.c.obj 2025-08-26T19:45:35.1928341Z [2321/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u2.c.obj 2025-08-26T19:45:35.2184309Z [2322/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u1.c.obj 2025-08-26T19:45:35.2244056Z [2323/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u4.c.obj 2025-08-26T19:45:35.2288270Z [2324/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u2.c.obj 2025-08-26T19:45:35.2374295Z [2325/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u1.c.obj 2025-08-26T19:45:35.2652498Z [2326/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u2.c.obj 2025-08-26T19:45:35.2901125Z [2327/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u8.c.obj 2025-08-26T19:45:35.3085772Z [2328/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u1.c.obj 2025-08-26T19:45:35.3457031Z [2329/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u5.c.obj 2025-08-26T19:45:35.3519987Z [2330/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u6.c.obj 2025-08-26T19:45:35.3537682Z [2331/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u3.c.obj 2025-08-26T19:45:35.3600312Z [2332/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u1.c.obj 2025-08-26T19:45:35.3868405Z [2333/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u2.c.obj 2025-08-26T19:45:35.4168284Z [2334/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u3.c.obj 2025-08-26T19:45:35.4299592Z [2335/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u4.c.obj 2025-08-26T19:45:35.4630540Z [2336/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u5.c.obj 2025-08-26T19:45:35.4732361Z [2337/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u6.c.obj 2025-08-26T19:45:35.4790873Z [2338/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-scalar.c.obj 2025-08-26T19:45:35.4939335Z [2339/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u1.c.obj 2025-08-26T19:45:35.5122328Z [2340/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u2.c.obj 2025-08-26T19:45:35.5279815Z [2341/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-scalar-log.c.obj 2025-08-26T19:45:35.5746720Z [2342/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u1.c.obj 2025-08-26T19:45:35.5821078Z [2343/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c2-minmax-scalar-2x.c.obj 2025-08-26T19:45:35.5876432Z [2344/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-scalar-2x.c.obj 2025-08-26T19:45:35.5934847Z [2345/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u2.c.obj 2025-08-26T19:45:35.6131363Z [2346/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u1.c.obj 2025-08-26T19:45:35.6344461Z [2347/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u2.c.obj 2025-08-26T19:45:35.6564893Z [2348/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u4.c.obj 2025-08-26T19:45:35.6957014Z [2349/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u2.c.obj 2025-08-26T19:45:35.7051011Z [2350/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u2.c.obj 2025-08-26T19:45:35.7111242Z [2351/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u2.c.obj 2025-08-26T19:45:35.7199016Z [2352/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u2.c.obj 2025-08-26T19:45:35.7424134Z [2353/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u2.c.obj 2025-08-26T19:45:35.7586110Z [2354/7555] 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-08-26T19:45:35.7723606Z [2355/7555] 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-08-26T19:45:35.8142177Z [2356/7555] 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-08-26T19:45:35.8342394Z [2357/7555] 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-08-26T19:45:35.8404962Z [2358/7555] 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-08-26T19:45:35.8465996Z [2359/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u1.c.obj 2025-08-26T19:45:35.8687589Z [2360/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u2.c.obj 2025-08-26T19:45:35.8827990Z [2361/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u4.c.obj 2025-08-26T19:45:35.8889169Z [2362/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u2.c.obj 2025-08-26T19:45:35.9318066Z [2363/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u4.c.obj 2025-08-26T19:45:35.9716777Z [2364/7555] 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-08-26T19:45:35.9812423Z [2365/7555] 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-08-26T19:45:35.9863263Z [2366/7555] 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-08-26T19:45:36.0025176Z [2367/7555] 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-08-26T19:45:36.0267717Z [2368/7555] 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-08-26T19:45:36.0334407Z [2369/7555] 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-08-26T19:45:36.0725946Z [2370/7555] 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-08-26T19:45:36.1102231Z [2371/7555] 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-08-26T19:45:36.1262226Z [2372/7555] 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-08-26T19:45:36.1317933Z [2373/7555] 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-08-26T19:45:36.1456724Z [2374/7555] 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-08-26T19:45:36.1769692Z [2375/7555] 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-08-26T19:45:36.1852126Z [2376/7555] 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-08-26T19:45:36.2111417Z [2377/7555] 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-08-26T19:45:36.2584239Z [2378/7555] 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-08-26T19:45:36.2634452Z [2379/7555] 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-08-26T19:45:36.2794425Z [2380/7555] 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-08-26T19:45:36.2845125Z [2381/7555] 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-08-26T19:45:36.3187318Z [2382/7555] 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-08-26T19:45:36.3308627Z [2383/7555] 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-08-26T19:45:36.3478509Z [2384/7555] 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-08-26T19:45:36.4011782Z [2385/7555] 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-08-26T19:45:36.4102484Z [2386/7555] 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-08-26T19:45:36.4182680Z [2387/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:36.4240359Z [2388/7555] 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-08-26T19:45:36.4473440Z [2389/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:36.4716059Z [2390/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:36.4782074Z [2391/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:36.5263813Z [2392/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:36.5338053Z [2393/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:36.5517968Z [2394/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:36.5561782Z [2395/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:36.5934689Z [2396/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:36.6028696Z [2397/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:36.6441017Z [2398/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:36.6592667Z [2399/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:36.6606679Z [2400/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:36.6855143Z [2401/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:36.6867273Z [2402/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:36.7183881Z [2403/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:36.7240088Z [2404/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:36.7686888Z [2405/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:36.7896835Z [2406/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:36.7911145Z [2407/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:36.8097521Z [2408/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:36.8112670Z [2409/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:36.8582999Z [2410/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:36.8641795Z [2411/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:36.8964287Z [2412/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:36.9124806Z [2413/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:36.9339369Z [2414/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:36.9352519Z [2415/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:36.9410424Z [2416/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:36.9758072Z [2417/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-08-26T19:45:37.0050818Z [2418/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:37.0248326Z [2419/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-08-26T19:45:37.0475663Z [2420/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:37.0669927Z [2421/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:37.0737524Z [2422/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-08-26T19:45:37.0754869Z [2423/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:37.1039147Z [2424/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:37.1223516Z [2425/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:37.1455332Z [2426/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:37.1795390Z [2427/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:37.1945380Z [2428/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:37.2013799Z [2429/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:37.2076593Z [2430/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u2.c.obj 2025-08-26T19:45:37.2239146Z [2431/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u3.c.obj 2025-08-26T19:45:37.2389578Z [2432/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-gio-scalar.c.obj 2025-08-26T19:45:37.2572844Z [2433/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-goi-scalar.c.obj 2025-08-26T19:45:37.2898828Z [2434/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-gio-scalar.c.obj 2025-08-26T19:45:37.3170808Z [2435/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-gio-scalar.c.obj 2025-08-26T19:45:37.3183338Z [2436/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-scalar.c.obj 2025-08-26T19:45:37.3259153Z [2437/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-goi-scalar.c.obj 2025-08-26T19:45:37.3353328Z [2438/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-gio-scalar.c.obj 2025-08-26T19:45:37.3600560Z [2439/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-gio-scalar.c.obj 2025-08-26T19:45:37.3717601Z [2440/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-goi-scalar.c.obj 2025-08-26T19:45:37.4047599Z [2441/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-gio-scalar.c.obj 2025-08-26T19:45:37.4379354Z [2442/7555] 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-08-26T19:45:37.4399102Z [2443/7555] 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-08-26T19:45:37.4459850Z [2444/7555] 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-08-26T19:45:37.4675572Z [2445/7555] 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-08-26T19:45:37.4875155Z [2446/7555] 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-08-26T19:45:37.4961701Z [2447/7555] 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-08-26T19:45:37.5312655Z [2448/7555] 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-08-26T19:45:37.5593573Z [2449/7555] 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-08-26T19:45:37.5696495Z [2450/7555] 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-08-26T19:45:37.5844851Z [2451/7555] 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-08-26T19:45:37.5935208Z [2452/7555] 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-08-26T19:45:37.6175353Z [2453/7555] 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-08-26T19:45:37.6232696Z [2454/7555] 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-08-26T19:45:37.6554434Z [2455/7555] 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-08-26T19:45:37.6798381Z [2456/7555] 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-08-26T19:45:37.7018657Z [2457/7555] 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-08-26T19:45:37.7174273Z [2458/7555] 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-08-26T19:45:37.7389521Z [2459/7555] 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-08-26T19:45:37.7451112Z [2460/7555] 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-08-26T19:45:37.7556759Z [2461/7555] 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-08-26T19:45:37.7843832Z [2462/7555] 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-08-26T19:45:37.8123905Z [2463/7555] 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-08-26T19:45:37.8320599Z [2464/7555] 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-08-26T19:45:37.8540504Z [2465/7555] 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-08-26T19:45:37.8649268Z [2466/7555] 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-08-26T19:45:37.8714102Z [2467/7555] 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-08-26T19:45:37.8805743Z [2468/7555] 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-08-26T19:45:37.9109977Z [2469/7555] 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-08-26T19:45:37.9449862Z [2470/7555] 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-08-26T19:45:37.9644018Z [2471/7555] 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-08-26T19:45:37.9784661Z [2472/7555] 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-08-26T19:45:37.9996675Z [2473/7555] 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-08-26T19:45:38.0266211Z [2474/7555] 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-08-26T19:45:38.0343378Z [2475/7555] 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-08-26T19:45:38.0792523Z [2476/7555] 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-08-26T19:45:38.0880815Z [2477/7555] 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-08-26T19:45:38.0933243Z [2478/7555] 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-08-26T19:45:38.1172150Z [2479/7555] 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-08-26T19:45:38.1228597Z [2480/7555] 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-08-26T19:45:38.1468900Z [2481/7555] 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-08-26T19:45:38.1647454Z [2482/7555] 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-08-26T19:45:38.2152531Z [2483/7555] 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-08-26T19:45:38.2322830Z [2484/7555] 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-08-26T19:45:38.2590908Z [2485/7555] 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-08-26T19:45:38.2611689Z [2486/7555] 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-08-26T19:45:38.2662118Z [2487/7555] 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-08-26T19:45:38.2863672Z [2488/7555] 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-08-26T19:45:38.3049369Z [2489/7555] 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-08-26T19:45:38.3573090Z [2490/7555] 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-08-26T19:45:38.3739775Z [2491/7555] 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-08-26T19:45:38.4073017Z [2492/7555] 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-08-26T19:45:38.4086658Z [2493/7555] 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-08-26T19:45:38.4099550Z [2494/7555] 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-08-26T19:45:38.4294394Z [2495/7555] 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-08-26T19:45:38.4353121Z [2496/7555] 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-08-26T19:45:38.4986196Z [2497/7555] 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-08-26T19:45:38.5209158Z [2498/7555] 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-08-26T19:45:38.5530921Z [2499/7555] 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-08-26T19:45:38.5542836Z [2500/7555] 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-08-26T19:45:38.5606779Z [2501/7555] 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-08-26T19:45:38.5659058Z [2502/7555] 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-08-26T19:45:38.5758034Z [2503/7555] 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-08-26T19:45:38.6436360Z [2504/7555] 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-08-26T19:45:38.6746854Z [2505/7555] 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-08-26T19:45:38.6907294Z [2506/7555] 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-08-26T19:45:38.7004169Z [2507/7555] 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-08-26T19:45:38.7095139Z [2508/7555] 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-08-26T19:45:38.7107836Z [2509/7555] 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-08-26T19:45:38.7160814Z [2510/7555] 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-08-26T19:45:38.7886788Z [2511/7555] 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-08-26T19:45:38.8190163Z [2512/7555] 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-08-26T19:45:38.8364849Z [2513/7555] 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-08-26T19:45:38.8459930Z [2514/7555] 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-08-26T19:45:38.8512645Z [2515/7555] 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-08-26T19:45:38.8582568Z [2516/7555] 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-08-26T19:45:38.8876205Z [2517/7555] 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-08-26T19:45:38.9255418Z [2518/7555] 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-08-26T19:45:38.9797804Z [2519/7555] 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-08-26T19:45:38.9847179Z [2520/7555] 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-08-26T19:45:38.9899688Z [2521/7555] 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-08-26T19:45:38.9952598Z [2522/7555] 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-08-26T19:45:39.0013218Z [2523/7555] 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-08-26T19:45:39.0359455Z [2524/7555] 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-08-26T19:45:39.0373532Z [2525/7555] 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-08-26T19:45:39.0955575Z [2526/7555] 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-08-26T19:45:39.1010725Z [2527/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u1.c.obj 2025-08-26T19:45:39.1094753Z [2528/7555] 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-08-26T19:45:39.1171307Z [2529/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u2.c.obj 2025-08-26T19:45:39.1184573Z [2530/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u2.c.obj 2025-08-26T19:45:39.1540444Z [2531/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u2.c.obj 2025-08-26T19:45:39.1608156Z [2532/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u2.c.obj 2025-08-26T19:45:39.2166416Z [2533/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u2.c.obj 2025-08-26T19:45:39.2263724Z [2534/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u1.c.obj 2025-08-26T19:45:39.2363189Z [2535/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u1.c.obj 2025-08-26T19:45:39.2379882Z [2536/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u2.c.obj 2025-08-26T19:45:39.2439151Z [2537/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u1.c.obj 2025-08-26T19:45:39.2796211Z [2538/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u2.c.obj 2025-08-26T19:45:39.2870037Z [2539/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-08-26T19:45:39.3412365Z [2540/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-08-26T19:45:39.3552093Z [2541/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:39.3664231Z [2542/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:39.3716192Z [2543/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:39.3984741Z [2544/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:39.4081930Z [2545/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:39.4139207Z [2546/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:39.4699919Z [2547/7555] Generating C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterLazy.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/variable_factories.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyIr.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNonNativeIr.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_variable_methods.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nn_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_fft_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_linalg_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nested_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_sparse_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_special_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_enum_tag.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.h, C:/actions-runner/_work/pytorch/pytorch/torch/testing/_internal/generated/annotated_fn_args.py, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.cpp 2025-08-26T19:45:39.4798949Z [2548/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:39.4935937Z [2549/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:39.5021891Z [2550/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:39.5263699Z [2551/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:39.5316560Z [2552/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:45:39.5385569Z [2553/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:45:39.5398781Z [2554/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:45:39.8841789Z [2555/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\AccumulateType.cpp.obj 2025-08-26T19:45:39.9380223Z [2556/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Dispatch.cpp.obj 2025-08-26T19:45:40.0976085Z [2557/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DeviceAccelerator.cpp.obj 2025-08-26T19:45:40.1424350Z [2558/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Context.cpp.obj 2025-08-26T19:45:40.3287080Z [2559/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CPUGeneratorImpl.cpp.obj 2025-08-26T19:45:40.3410702Z [2560/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FuncTorchTLS.cpp.obj 2025-08-26T19:45:40.5584728Z [2561/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\EmptyTensor.cpp.obj 2025-08-26T19:45:40.6220549Z [2562/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ConjugateFallback.cpp.obj 2025-08-26T19:45:40.8767349Z [2563/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DynamicLibrary.cpp.obj 2025-08-26T19:45:41.0372728Z [2564/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ExpandUtils.cpp.obj 2025-08-26T19:45:41.3687796Z [2565/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalStorageImpl.cpp.obj 2025-08-26T19:45:41.5535903Z [2566/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalTensorWrapper.cpp.obj 2025-08-26T19:45:41.6230101Z [2567/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalizeFallbackKernel.cpp.obj 2025-08-26T19:45:41.9019145Z [2568/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapMode.cpp.obj 2025-08-26T19:45:42.0005213Z [2569/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedTensorImpl.cpp.obj 2025-08-26T19:45:42.5143940Z [2570/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MemoryOverlap.cpp.obj 2025-08-26T19:45:42.6544287Z [2571/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MapAllocator.cpp.obj 2025-08-26T19:45:42.9954978Z [2572/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CachedTensorUtils.cpp.obj 2025-08-26T19:45:43.0838590Z [2573/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DLConvertor.cpp.obj 2025-08-26T19:45:43.1780475Z [2574/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelNative.cpp.obj 2025-08-26T19:45:43.3914305Z [2575/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NamedTensorUtils.cpp.obj 2025-08-26T19:45:43.7768238Z [2576/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalInverses.cpp.obj 2025-08-26T19:45:44.0826904Z [2577/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelCommon.cpp.obj 2025-08-26T19:45:44.2435461Z [2578/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\PythonTorchFunctionTLS.cpp.obj 2025-08-26T19:45:44.3339843Z [2579/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelThreadPoolNative.cpp.obj 2025-08-26T19:45:44.4159752Z [2580/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SequenceNumber.cpp.obj 2025-08-26T19:45:44.4468386Z [2581/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SavedTensorHooks.cpp.obj 2025-08-26T19:45:44.4685147Z [2582/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedFallback.cpp.obj 2025-08-26T19:45:44.6714815Z [2583/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelOpenMP.cpp.obj 2025-08-26T19:45:44.9232058Z [2584/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchingRegistrations.cpp.obj 2025-08-26T19:45:45.1513019Z [2585/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapTransforms.cpp.obj 2025-08-26T19:45:45.1783096Z [2586/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ScalarOps.cpp.obj 2025-08-26T19:45:45.2255481Z [2587/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorGeometry.cpp.obj 2025-08-26T19:45:45.6346199Z [2588/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorMeta.cpp.obj 2025-08-26T19:45:45.8987208Z [2589/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIndexing.cpp.obj 2025-08-26T19:45:46.1244368Z [2590/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorNames.cpp.obj 2025-08-26T19:45:46.1859082Z [2591/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NestedTensorImpl.cpp.obj 2025-08-26T19:45:46.1937955Z [2592/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIterator.cpp.obj 2025-08-26T19:45:46.4073006Z [2593/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalPythonObjects.cpp.obj 2025-08-26T19:45:46.8309689Z [2594/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\StorageUtils.cpp.obj 2025-08-26T19:45:47.3600676Z [2595/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Version.cpp.obj 2025-08-26T19:45:47.3720911Z [2596/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\VmapModeRegistrations.cpp.obj 2025-08-26T19:45:47.4820735Z [2597/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\FlushDenormal.cpp.obj 2025-08-26T19:45:47.5659215Z [2598/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\Utils.cpp.obj 2025-08-26T19:45:47.8607270Z [2599/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseTensorImpl.cpp.obj 2025-08-26T19:45:47.9264163Z [2600/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CPUGuardImpl.cpp.obj 2025-08-26T19:45:47.9711833Z [2601/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseCsrTensorImpl.cpp.obj 2025-08-26T19:45:48.4018254Z [2602/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CUDAHooksInterface.cpp.obj 2025-08-26T19:45:48.4285682Z [2603/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HIPHooksInterface.cpp.obj 2025-08-26T19:45:48.5143091Z [2604/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HPUHooksInterface.cpp.obj 2025-08-26T19:45:48.5412182Z [2605/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Utils.cpp.obj 2025-08-26T19:45:48.8705848Z [2606/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\IPUHooksInterface.cpp.obj 2025-08-26T19:45:48.9305233Z [2607/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MAIAHooksInterface.cpp.obj 2025-08-26T19:45:49.0259192Z [2608/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MTIAHooksInterface.cpp.obj 2025-08-26T19:45:49.1035314Z [2609/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MPSHooksInterface.cpp.obj 2025-08-26T19:45:49.1615604Z [2610/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorUtils.cpp.obj 2025-08-26T19:45:49.2068364Z [2611/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MetaGuardImpl.cpp.obj 2025-08-26T19:45:49.4362922Z [2612/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\PrivateUse1HooksInterface.cpp.obj 2025-08-26T19:45:49.5812168Z [2613/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\XPUHooksInterface.cpp.obj 2025-08-26T19:45:49.7097960Z [2614/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalState.cpp.obj 2025-08-26T19:45:50.2125892Z [2615/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\ADInterpreters.cpp.obj 2025-08-26T19:45:50.4773010Z [2616/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ZeroTensorFallback.cpp.obj 2025-08-26T19:45:50.9935054Z [2617/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\autocast_mode.cpp.obj 2025-08-26T19:45:52.9201312Z [2618/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesActivation.cpp.obj 2025-08-26T19:45:53.0691785Z [2619/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesBinaryOps.cpp.obj 2025-08-26T19:45:53.1722128Z [2620/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesConvolution.cpp.obj 2025-08-26T19:45:53.3705646Z [2621/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDecompositions.cpp.obj 2025-08-26T19:45:53.5698403Z [2622/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDynamic.cpp.obj 2025-08-26T19:45:54.0114313Z [2623/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesFactory.cpp.obj 2025-08-26T19:45:54.1841450Z [2624/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesHelper.cpp.obj 2025-08-26T19:45:54.9554564Z [2625/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesIndexing.cpp.obj 2025-08-26T19:45:56.7505445Z [2626/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLinearAlgebra.cpp.obj 2025-08-26T19:45:56.7774621Z [2627/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLoss.cpp.obj 2025-08-26T19:45:56.8963265Z [2628/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesModules.cpp.obj 2025-08-26T19:45:57.0879711Z [2629/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesNorm.cpp.obj 2025-08-26T19:45:57.3612333Z [2630/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesPooling.cpp.obj 2025-08-26T19:45:57.8462368Z [2631/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesRandomness.cpp.obj 2025-08-26T19:45:57.9392327Z [2632/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesReduceOps.cpp.obj 2025-08-26T19:45:58.0225519Z [2633/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedTensorImpl.cpp.obj 2025-08-26T19:45:58.6813454Z [2634/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesScatterOps.cpp.obj 2025-08-26T19:45:58.9801453Z [2635/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\FunctionalizeInterpreter.cpp.obj 2025-08-26T19:45:59.0358888Z [2636/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\Interpreter.cpp.obj 2025-08-26T19:46:00.0811140Z [2637/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PlumbingHelper.cpp.obj 2025-08-26T19:46:00.5934474Z [2638/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesUnaryOps.cpp.obj 2025-08-26T19:46:00.6276940Z [2639/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesViews.cpp.obj 2025-08-26T19:46:00.6808675Z [2640/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedFallback.cpp.obj 2025-08-26T19:46:01.1561622Z [2641/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\DynamicLayer.cpp.obj 2025-08-26T19:46:01.1767806Z [2642/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\TensorWrapper.cpp.obj 2025-08-26T19:46:01.2459510Z [2643/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenGeneral.cpp.obj 2025-08-26T19:46:01.6644043Z [2644/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\CachingHostAllocator.cpp.obj 2025-08-26T19:46:01.6768060Z [2645/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\record_function.cpp.obj 2025-08-26T19:46:01.7412781Z [2646/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyBatchingRegistrations.cpp.obj 2025-08-26T19:46:01.8095886Z [2647/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapInterpreter.cpp.obj 2025-08-26T19:46:02.1318398Z [2648/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\BackendSelectFallbackKernel.cpp.obj 2025-08-26T19:46:02.1615425Z [2649/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dimname.cpp.obj 2025-08-26T19:46:02.1788613Z [2650/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypePropertiesRegistry.cpp.obj 2025-08-26T19:46:02.3256347Z [2651/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyVmapTransforms.cpp.obj 2025-08-26T19:46:02.5381410Z [2652/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypeProperties.cpp.obj 2025-08-26T19:46:02.6828369Z [2653/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dict.cpp.obj 2025-08-26T19:46:02.6915493Z [2654/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\GeneratorForPrivateuseone.cpp.obj 2025-08-26T19:46:02.7389966Z [2655/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PyTorchOperatorHacks.cpp.obj 2025-08-26T19:46:03.0101967Z [2656/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Generator.cpp.obj 2025-08-26T19:46:03.1259301Z [2657/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Formatting.cpp.obj 2025-08-26T19:46:03.1392862Z [2658/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NestedIntSymNodeImpl.cpp.obj 2025-08-26T19:46:03.2209564Z [2659/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\List.cpp.obj 2025-08-26T19:46:03.2800711Z [2660/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedTensor.cpp.obj 2025-08-26T19:46:03.4436407Z [2661/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Range.cpp.obj 2025-08-26T19:46:03.4621469Z [2662/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\MetaFallbackKernel.cpp.obj 2025-08-26T19:46:03.6356961Z [2663/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedRegistrations.cpp.obj 2025-08-26T19:46:03.9802523Z [2664/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonFallbackKernel.cpp.obj 2025-08-26T19:46:04.0611434Z [2665/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonOpRegistrationTrampoline.cpp.obj 2025-08-26T19:46:04.1024740Z [2666/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Vitals.cpp.obj 2025-08-26T19:46:04.2809711Z [2667/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Tensor.cpp.obj 2025-08-26T19:46:04.3031778Z [2668/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapModeRegistrations.cpp.obj 2025-08-26T19:46:04.3386162Z [2669/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TorchDispatchUtils.cpp.obj 2025-08-26T19:46:04.4139854Z [2670/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableHooksInterface.cpp.obj 2025-08-26T19:46:04.4863952Z [2671/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\blob.cpp.obj 2025-08-26T19:46:04.4979097Z [2672/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableFallbackKernel.cpp.obj 2025-08-26T19:46:04.8485983Z [2673/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\ObservedOperators.cpp.obj 2025-08-26T19:46:04.8614070Z [2674/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\adaption.cpp.obj 2025-08-26T19:46:05.0463553Z [2675/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\boxing\KernelFunction.cpp.obj 2025-08-26T19:46:05.1940596Z [2676/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\class_type.cpp.obj 2025-08-26T19:46:05.2733508Z [2677/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\custom_class.cpp.obj 2025-08-26T19:46:05.3638991Z [2678/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\DispatchKeyExtractor.cpp.obj 2025-08-26T19:46:05.4977413Z [2679/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\Dispatcher.cpp.obj 2025-08-26T19:46:05.5377872Z [2680/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\OperatorEntry.cpp.obj 2025-08-26T19:46:05.5488919Z [2681/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\interned_strings.cpp.obj 2025-08-26T19:46:05.7190583Z [2682/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dynamic_type.cpp.obj 2025-08-26T19:46:05.7576378Z [2683/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\function_schema.cpp.obj 2025-08-26T19:46:05.9037786Z [2684/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\operator_name.cpp.obj 2025-08-26T19:46:05.9263059Z [2685/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\register_symbols.cpp.obj 2025-08-26T19:46:06.1214504Z [2686/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ivalue.cpp.obj 2025-08-26T19:46:06.2108742Z [2687/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\library.cpp.obj 2025-08-26T19:46:06.3499955Z [2688/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\infer_schema.cpp.obj 2025-08-26T19:46:06.4600923Z [2689/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\op_registration.cpp.obj 2025-08-26T19:46:06.4798419Z [2690/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\error_report.cpp.obj 2025-08-26T19:46:06.5743250Z [2691/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\tensor_type.cpp.obj 2025-08-26T19:46:06.6513310Z [2692/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type.cpp.obj 2025-08-26T19:46:06.7994592Z [2693/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type_factory.cpp.obj 2025-08-26T19:46:06.8321955Z [2694/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\lexer.cpp.obj 2025-08-26T19:46:06.8477886Z [2695/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\union_type.cpp.obj 2025-08-26T19:46:06.9866203Z [2696/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\strtod.cpp.obj 2025-08-26T19:46:07.1546473Z [2697/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\function_schema_parser.cpp.obj 2025-08-26T19:46:07.3898920Z [2698/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_type_parser.cpp.obj 2025-08-26T19:46:07.5132457Z [2699/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\source_range.cpp.obj 2025-08-26T19:46:07.7168240Z [2700/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling2d.cpp.obj 2025-08-26T19:46:07.7788586Z [2701/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling.cpp.obj 2025-08-26T19:46:07.8155162Z [2702/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Activation.cpp.obj 2025-08-26T19:46:07.8325741Z [2703/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling3d.cpp.obj 2025-08-26T19:46:07.8411363Z [2704/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling3d.cpp.obj 2025-08-26T19:46:08.1472319Z [2705/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AffineGridGenerator.cpp.obj 2025-08-26T19:46:08.3449827Z [2706/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AmpKernels.cpp.obj 2025-08-26T19:46:08.4459133Z [2707/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AutogradComposite.cpp.obj 2025-08-26T19:46:08.6543743Z [2708/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool2d.cpp.obj 2025-08-26T19:46:08.7673525Z [2709/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool3d.cpp.obj 2025-08-26T19:46:08.8718651Z [2710/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebraKernel.cpp.obj 2025-08-26T19:46:08.9170407Z [2711/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebra.cpp.obj 2025-08-26T19:46:08.9417499Z [2712/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BlasKernel.cpp.obj 2025-08-26T19:46:08.9583674Z [2713/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BinaryOps.cpp.obj 2025-08-26T19:46:09.1753038Z [2714/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Blas.cpp.obj 2025-08-26T19:46:09.4414934Z [2715/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Bucketization.cpp.obj 2025-08-26T19:46:09.7476794Z [2716/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUFallback.cpp.obj 2025-08-26T19:46:09.7908572Z [2717/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ComparisonUtils.cpp.obj 2025-08-26T19:46:09.8529111Z [2718/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ChanelShuffle.cpp.obj 2025-08-26T19:46:09.9223471Z [2719/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Col2Im.cpp.obj 2025-08-26T19:46:09.9461679Z [2720/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Constraints.cpp.obj 2025-08-26T19:46:10.2058896Z [2721/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUBlas.cpp.obj 2025-08-26T19:46:10.4897605Z [2722/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Convolution.cpp.obj 2025-08-26T19:46:10.5109771Z [2723/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM2d.cpp.obj 2025-08-26T19:46:10.7283634Z [2724/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionTBC.cpp.obj 2025-08-26T19:46:10.7837573Z [2725/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM3d.cpp.obj 2025-08-26T19:46:10.8155637Z [2726/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Correlation.cpp.obj 2025-08-26T19:46:10.8432655Z [2727/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DispatchStub.cpp.obj 2025-08-26T19:46:10.8599153Z [2728/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Copy.cpp.obj 2025-08-26T19:46:10.9234651Z [2729/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Cross.cpp.obj 2025-08-26T19:46:11.1563782Z [2730/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool2d.cpp.obj 2025-08-26T19:46:11.4828174Z [2731/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool3d.cpp.obj 2025-08-26T19:46:11.7157508Z [2732/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distance.cpp.obj 2025-08-26T19:46:11.7944867Z [2733/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Dropout.cpp.obj 2025-08-26T19:46:11.7976541Z [2734/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Embedding.cpp.obj 2025-08-26T19:46:11.8712506Z [2735/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\EmbeddingBag.cpp.obj 2025-08-26T19:46:11.8812561Z [2736/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distributions.cpp.obj 2025-08-26T19:46:11.9135094Z [2737/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Fill.cpp.obj 2025-08-26T19:46:12.1399096Z [2738/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ForeachOpsKernels.cpp.obj 2025-08-26T19:46:12.3467061Z [2739/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool2d.cpp.obj 2025-08-26T19:46:12.6408343Z [2740/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool3d.cpp.obj 2025-08-26T19:46:12.7169104Z [2741/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdagrad.cpp.obj 2025-08-26T19:46:12.7360039Z [2742/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FunctionOfAMatrixUtils.cpp.obj 2025-08-26T19:46:12.8180998Z [2743/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdam.cpp.obj 2025-08-26T19:46:12.8452043Z [2744/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedSGD.cpp.obj 2025-08-26T19:46:12.9165134Z [2745/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GatedLinearUnit.cpp.obj 2025-08-26T19:46:13.2056757Z [2746/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GridSampler.cpp.obj 2025-08-26T19:46:13.3379913Z [2747/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Histogram.cpp.obj 2025-08-26T19:46:13.6405229Z [2748/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Im2Col.cpp.obj 2025-08-26T19:46:13.6619702Z [2749/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Integration.cpp.obj 2025-08-26T19:46:13.6887685Z [2750/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\IndexingUtils.cpp.obj 2025-08-26T19:46:13.7465319Z [2751/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Lerp.cpp.obj 2025-08-26T19:46:13.7741930Z [2752/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LegacyBatching.cpp.obj 2025-08-26T19:46:13.8083755Z [2753/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Itertools.cpp.obj 2025-08-26T19:46:14.2170679Z [2754/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Linear.cpp.obj 2025-08-26T19:46:14.6542395Z [2755/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossCTC.cpp.obj 2025-08-26T19:46:14.6581862Z [2756/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LinearAlgebra.cpp.obj 2025-08-26T19:46:14.6729057Z [2757/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiLabelMargin.cpp.obj 2025-08-26T19:46:14.7250463Z [2758/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiMargin.cpp.obj 2025-08-26T19:46:14.7628204Z [2759/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Loss.cpp.obj 2025-08-26T19:46:14.7714543Z [2760/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL.cpp.obj 2025-08-26T19:46:14.8128077Z [2761/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL2d.cpp.obj 2025-08-26T19:46:15.1507023Z [2762/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxPooling.cpp.obj 2025-08-26T19:46:15.5376219Z [2763/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MetaTensor.cpp.obj 2025-08-26T19:46:15.5593493Z [2764/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxUnpooling.cpp.obj 2025-08-26T19:46:15.5796930Z [2765/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Memory.cpp.obj 2025-08-26T19:46:15.6787518Z [2766/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NNPACK.cpp.obj 2025-08-26T19:46:15.7458866Z [2767/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose2d.cpp.obj 2025-08-26T19:46:15.7533774Z [2768/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose3d.cpp.obj 2025-08-26T19:46:15.8345258Z [2769/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveDilatedConvolution.cpp.obj 2025-08-26T19:46:16.1498580Z [2770/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NamedTensor.cpp.obj 2025-08-26T19:46:16.5570575Z [2771/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Onehot.cpp.obj 2025-08-26T19:46:16.5731371Z [2772/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Normalization.cpp.obj 2025-08-26T19:46:16.6191886Z [2773/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PackedSequence.cpp.obj 2025-08-26T19:46:16.6288502Z [2774/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NegateFallback.cpp.obj 2025-08-26T19:46:16.6461436Z [2775/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PointwiseOps.cpp.obj 2025-08-26T19:46:16.7035198Z [2776/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PadNd.cpp.obj 2025-08-26T19:46:16.7160574Z [2777/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PixelShuffle.cpp.obj 2025-08-26T19:46:17.0724975Z [2778/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pooling.cpp.obj 2025-08-26T19:46:17.5347830Z [2779/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\QuantizedLinear.cpp.obj 2025-08-26T19:46:17.5511346Z [2780/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pow.cpp.obj 2025-08-26T19:46:17.6243746Z [2781/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RangeFactories.cpp.obj 2025-08-26T19:46:17.6651175Z [2782/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceAllOps.cpp.obj 2025-08-26T19:46:17.6726406Z [2783/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReflectionPad.cpp.obj 2025-08-26T19:46:17.7624160Z [2784/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RNN.cpp.obj 2025-08-26T19:46:17.7988521Z [2785/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceOps.cpp.obj 2025-08-26T19:46:18.0701638Z [2786/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Repeat.cpp.obj 2025-08-26T19:46:18.4573028Z [2787/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReplicationPadding.cpp.obj 2025-08-26T19:46:18.5814826Z [2788/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Resize.cpp.obj 2025-08-26T19:46:18.6357436Z [2789/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RowwisePrune.cpp.obj 2025-08-26T19:46:18.6445759Z [2790/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SegmentReduce.cpp.obj 2025-08-26T19:46:18.6664155Z [2791/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Scalar.cpp.obj 2025-08-26T19:46:18.6917780Z [2792/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOps.cpp.obj 2025-08-26T19:46:18.9422082Z [2793/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOpsUtils.cpp.obj 2025-08-26T19:46:19.0457432Z [2794/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SoftMax.cpp.obj 2025-08-26T19:46:19.4752525Z [2795/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Sorting.cpp.obj 2025-08-26T19:46:19.6530386Z [2796/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SummaryOps.cpp.obj 2025-08-26T19:46:19.6798262Z [2797/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SpectralOps.cpp.obj 2025-08-26T19:46:19.8533352Z [2798/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorCompare.cpp.obj 2025-08-26T19:46:20.0855279Z [2799/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorFactories.cpp.obj 2025-08-26T19:46:20.4476064Z [2800/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorIteratorReduce.cpp.obj 2025-08-26T19:46:20.6309140Z [2801/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorProperties.cpp.obj 2025-08-26T19:46:20.8546521Z [2802/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorTransformations.cpp.obj 2025-08-26T19:46:20.9425555Z [2803/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorShape.cpp.obj 2025-08-26T19:46:21.0313100Z [2804/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TestOps.cpp.obj 2025-08-26T19:46:21.3531076Z [2805/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold2d.cpp.obj 2025-08-26T19:46:21.4080951Z [2806/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TriangularOps.cpp.obj 2025-08-26T19:46:21.6274647Z [2807/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TypeProperties.cpp.obj 2025-08-26T19:46:21.9773836Z [2808/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnaryOps.cpp.obj 2025-08-26T19:46:22.0448526Z [2809/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SparseTensorUtils.cpp.obj 2025-08-26T19:46:22.1668395Z [2810/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorAdvancedIndexing.cpp.obj 2025-08-26T19:46:22.2814073Z [2811/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnfoldBackward.cpp.obj 2025-08-26T19:46:22.3789800Z [2812/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold3d.cpp.obj 2025-08-26T19:46:22.3969103Z [2813/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorConversions.cpp.obj 2025-08-26T19:46:22.4589534Z [2814/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unique.cpp.obj 2025-08-26T19:46:22.5504969Z [2815/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSample.cpp.obj 2025-08-26T19:46:23.0116425Z [2816/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBicubic2d.cpp.obj 2025-08-26T19:46:23.0551642Z [2817/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBilinear2d.cpp.obj 2025-08-26T19:46:23.1856229Z [2818/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleLinear1d.cpp.obj 2025-08-26T19:46:23.2378615Z [2819/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest1d.cpp.obj 2025-08-26T19:46:23.4112627Z [2820/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest2d.cpp.obj 2025-08-26T19:46:23.4301035Z [2821/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest3d.cpp.obj 2025-08-26T19:46:23.4555115Z [2822/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\VariableMethodStubs.cpp.obj 2025-08-26T19:46:23.4964755Z [2823/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleTrilinear3d.cpp.obj 2025-08-26T19:46:24.0304618Z [2824/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\WeightNorm.cpp.obj 2025-08-26T19:46:24.0513931Z [2825/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\group_norm.cpp.obj 2025-08-26T19:46:24.0899900Z [2826/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\prim_native_functions.cpp.obj 2025-08-26T19:46:24.1729011Z [2827/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\layer_norm.cpp.obj 2025-08-26T19:46:24.3653092Z [2828/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.cpp.obj 2025-08-26T19:46:24.4138936Z [2829/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\library.cpp.obj 2025-08-26T19:46:24.5045714Z [2830/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear.cpp.obj 2025-08-26T19:46:24.8644443Z [2831/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\verbose_wrapper.cpp.obj 2025-08-26T19:46:25.0889153Z [2832/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_dynamic.cpp.obj 2025-08-26T19:46:25.1473841Z [2833/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_prepack.cpp.obj 2025-08-26T19:46:25.3297061Z [2834/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_unpack.cpp.obj 2025-08-26T19:46:25.4150683Z [2835/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ParamUtils.cpp.obj 2025-08-26T19:46:25.4548533Z [2836/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\FlattenIndicesKernel.cpp.obj 2025-08-26T19:46:25.9127254Z [2837/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SoftMax.cpp.obj 2025-08-26T19:46:26.1354265Z [2838/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBinaryOpIntersectionKernel.cpp.obj 2025-08-26T19:46:26.1823358Z [2839/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlas.cpp.obj 2025-08-26T19:46:26.3004794Z [2840/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlasImpl.cpp.obj 2025-08-26T19:46:26.3922573Z [2841/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensor.cpp.obj 2025-08-26T19:46:26.5795685Z [2842/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensorMath.cpp.obj 2025-08-26T19:46:26.8606660Z [2843/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseFactories.cpp.obj 2025-08-26T19:46:27.1421412Z [2844/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseMatMul.cpp.obj 2025-08-26T19:46:27.1989154Z [2845/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensor.cpp.obj 2025-08-26T19:46:27.3021953Z [2846/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensorMath.cpp.obj 2025-08-26T19:46:27.4403109Z [2847/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseUnaryOps.cpp.obj 2025-08-26T19:46:27.4881001Z [2848/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_deserialize.cpp.obj 2025-08-26T19:46:27.6367425Z [2849/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ValidateCompressedIndicesKernel.cpp.obj 2025-08-26T19:46:27.7169624Z [2850/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_serialize.cpp.obj 2025-08-26T19:46:30.3893244Z [2851/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorAliases.cpp.obj 2025-08-26T19:46:30.5788562Z [2852/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBinaryOps.cpp.obj 2025-08-26T19:46:30.6750320Z [2853/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBackward.cpp.obj 2025-08-26T19:46:30.7884993Z [2854/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorFactories.cpp.obj 2025-08-26T19:46:30.9202163Z [2855/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMatmul.cpp.obj 2025-08-26T19:46:30.9890259Z [2856/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMath.cpp.obj 2025-08-26T19:46:31.0799380Z [2857/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorTransformerFunctions.cpp.obj 2025-08-26T19:46:31.0887377Z [2858/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizerBase.cpp.obj 2025-08-26T19:46:31.1744288Z [2859/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUnaryOps.cpp.obj 2025-08-26T19:46:31.3631447Z [2860/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUtils.cpp.obj 2025-08-26T19:46:31.4219891Z [2861/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizer.cpp.obj 2025-08-26T19:46:31.4848736Z [2862/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ACLUtils.cpp.obj 2025-08-26T19:46:32.4903583Z [2863/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AdaptiveAveragePooling.cpp.obj 2025-08-26T19:46:33.4587792Z [2864/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool2d.cpp.obj 2025-08-26T19:46:34.2823215Z [2865/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\Copy.cpp.obj 2025-08-26T19:46:34.3588283Z [2866/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerChannelAffine.cpp.obj 2025-08-26T19:46:34.4615178Z [2867/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool3d.cpp.obj 2025-08-26T19:46:34.5169091Z [2868/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerTensorAffine.cpp.obj 2025-08-26T19:46:34.5911686Z [2869/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\QTensor.cpp.obj 2025-08-26T19:46:34.6519739Z [2870/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorAdvancedIndexing.cpp.obj 2025-08-26T19:46:34.7113228Z [2871/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorCompare.cpp.obj 2025-08-26T19:46:34.7815457Z [2872/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorFactories.cpp.obj 2025-08-26T19:46:35.3158909Z [2873/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ChannelShuffle.cpp.obj 2025-08-26T19:46:35.3367274Z [2874/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\BinaryOps.cpp.obj 2025-08-26T19:46:35.4154465Z [2875/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\RuyUtils.cpp.obj 2025-08-26T19:46:35.5245456Z [2876/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\IntReprQuant.cpp.obj 2025-08-26T19:46:35.6349563Z [2877/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Normalization.cpp.obj 2025-08-26T19:46:35.6514453Z [2878/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\MakePerTensorQuantizedTensor.cpp.obj 2025-08-26T19:46:35.7299904Z [2879/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ReduceOps.cpp.obj 2025-08-26T19:46:35.7446989Z [2880/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\LinearUnpackImpl.cpp.obj 2025-08-26T19:46:35.7998975Z [2881/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Pooling.cpp.obj 2025-08-26T19:46:36.3566795Z [2882/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Sorting.cpp.obj 2025-08-26T19:46:36.4415649Z [2883/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorOperators.cpp.obj 2025-08-26T19:46:36.5075635Z [2884/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\init_qnnpack.cpp.obj 2025-08-26T19:46:36.5372075Z [2885/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorShape.cpp.obj 2025-08-26T19:46:36.6060369Z [2886/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleBilinear2d.cpp.obj 2025-08-26T19:46:36.6553308Z [2887/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest2d.cpp.obj 2025-08-26T19:46:36.7349018Z [2888/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest3d.cpp.obj 2025-08-26T19:46:37.0535834Z [2889/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fbgemm_utils.cpp.obj 2025-08-26T19:46:37.3187172Z [2890/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fused_obs_fake_quant.cpp.obj 2025-08-26T19:46:37.5097044Z [2891/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qclamp.cpp.obj 2025-08-26T19:46:37.7786346Z [2892/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv.cpp.obj 2025-08-26T19:46:37.8280026Z [2893/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_dynamic.cpp.obj 2025-08-26T19:46:37.8410130Z [2894/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_prepack.cpp.obj 2025-08-26T19:46:38.2914356Z [2895/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qelu.cpp.obj 2025-08-26T19:46:38.4922398Z [2896/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag.cpp.obj 2025-08-26T19:46:38.7520266Z [2897/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qgelu.cpp.obj 2025-08-26T19:46:38.7817716Z [2898/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_prepack.cpp.obj 2025-08-26T19:46:38.9040094Z [2899/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_unpack.cpp.obj 2025-08-26T19:46:39.1787041Z [2900/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\XnnpackUtils.cpp.obj 2025-08-26T19:46:39.2860732Z [2901/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardsigmoid.cpp.obj 2025-08-26T19:46:39.4876411Z [2902/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardswish.cpp.obj 2025-08-26T19:46:40.0131377Z [2903/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_dynamic.cpp.obj 2025-08-26T19:46:40.1036168Z [2904/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_prepack.cpp.obj 2025-08-26T19:46:40.1331195Z [2905/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear.cpp.obj 2025-08-26T19:46:40.4708651Z [2906/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qnormalization.cpp.obj 2025-08-26T19:46:40.5234590Z [2907/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_unpack_impl.cpp.obj 2025-08-26T19:46:40.5398012Z [2908/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmul.cpp.obj 2025-08-26T19:46:40.6773718Z [2909/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qdropout.cpp.obj 2025-08-26T19:46:41.0858545Z [2910/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qrelu.cpp.obj 2025-08-26T19:46:41.1715086Z [2911/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsigmoid.cpp.obj 2025-08-26T19:46:41.4669129Z [2912/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qtanh.cpp.obj 2025-08-26T19:46:41.4857815Z [2913/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\library.cpp.obj 2025-08-26T19:46:41.5361800Z [2914/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\MklAllocationHelper.cpp.obj 2025-08-26T19:46:41.5593415Z [2915/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qthreshold.cpp.obj 2025-08-26T19:46:41.8399918Z [2916/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qconv_unpack.cpp.obj 2025-08-26T19:46:42.0937989Z [2917/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\LinearAlgebra.cpp.obj 2025-08-26T19:46:42.4480333Z [2918/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseBlasImpl.cpp.obj 2025-08-26T19:46:42.5669404Z [2919/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SpectralOps.cpp.obj 2025-08-26T19:46:42.7163458Z [2920/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmatmul.cpp.obj 2025-08-26T19:46:43.0335181Z [2921/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\BinaryOps.cpp.obj 2025-08-26T19:46:43.0441046Z [2922/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseCsrLinearAlgebra.cpp.obj 2025-08-26T19:46:43.2972953Z [2923/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Conv.cpp.obj 2025-08-26T19:46:43.6184826Z [2924/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsoftmax.cpp.obj 2025-08-26T19:46:43.6689790Z [2925/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Copy.cpp.obj 2025-08-26T19:46:43.8828045Z [2926/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\IDeepRegistration.cpp.obj 2025-08-26T19:46:43.8880122Z [2927/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Gelu.cpp.obj 2025-08-26T19:46:44.4781220Z [2928/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNCommon.cpp.obj 2025-08-26T19:46:44.5503206Z [2929/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qlinear_unpack.cpp.obj 2025-08-26T19:46:44.6918693Z [2930/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Linear.cpp.obj 2025-08-26T19:46:44.8682240Z [2931/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Matmul.cpp.obj 2025-08-26T19:46:44.9322443Z [2932/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MkldnnTensorMath.cpp.obj 2025-08-26T19:46:45.0079299Z [2933/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Normalization.cpp.obj 2025-08-26T19:46:45.2364987Z [2934/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNConversions.cpp.obj 2025-08-26T19:46:45.7388119Z [2935/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Pooling.cpp.obj 2025-08-26T19:46:46.0258279Z [2936/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\ConvPrepack.cpp.obj 2025-08-26T19:46:46.1416176Z [2937/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Relu.cpp.obj 2025-08-26T19:46:46.3261166Z [2938/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\SoftMax.cpp.obj 2025-08-26T19:46:46.8334079Z [2939/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorFactories.cpp.obj 2025-08-26T19:46:47.0924244Z [2940/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorShape.cpp.obj 2025-08-26T19:46:47.1956945Z [2941/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\UnaryOps.cpp.obj 2025-08-26T19:46:47.4739868Z [2942/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Utils.cpp.obj 2025-08-26T19:46:47.8286657Z [2943/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\attention.cpp.obj 2025-08-26T19:46:48.0423688Z [2944/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\sdp_utils_cpp.cpp.obj 2025-08-26T19:46:48.1838308Z [2945/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\OpContext.cpp.obj 2025-08-26T19:46:48.2570899Z [2946/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\transformer.cpp.obj 2025-08-26T19:46:48.3652700Z [2947/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Prelu.cpp.obj 2025-08-26T19:46:48.3972089Z [2948/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\utils\Factory.cpp.obj 2025-08-26T19:46:48.6328973Z [2949/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RNN.cpp.obj 2025-08-26T19:46:48.7081687Z [2950/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RegisterMkldnnOpContextClass.cpp.obj 2025-08-26T19:46:48.7233980Z [2951/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Activation.cpp.obj 2025-08-26T19:46:48.7443794Z [2952/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Init.cpp.obj 2025-08-26T19:46:48.8151613Z [2953/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Shim.cpp.obj 2025-08-26T19:46:48.9166182Z [2954/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\AveragePooling.cpp.obj 2025-08-26T19:46:49.1071711Z [2955/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\ChannelShuffle.cpp.obj 2025-08-26T19:46:49.1402239Z [2956/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Convolution.cpp.obj 2025-08-26T19:46:49.3221540Z [2957/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Linear.cpp.obj 2025-08-26T19:46:49.4668241Z [2958/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\MaxPooling.cpp.obj 2025-08-26T19:46:49.6206502Z [2959/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\OpContext.cpp.obj 2025-08-26T19:46:49.7370244Z [2960/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\RegisterOpContextClass.cpp.obj 2025-08-26T19:46:50.4982736Z [2961/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_1.cpp.obj 2025-08-26T19:46:50.5137807Z [2962/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_0.cpp.obj 2025-08-26T19:46:50.7092282Z [2963/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterBackendSelect.cpp.obj 2025-08-26T19:46:50.7318872Z [2964/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_2.cpp.obj 2025-08-26T19:46:50.8133548Z [2965/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_3.cpp.obj 2025-08-26T19:46:50.9006878Z [2966/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_4.cpp.obj 2025-08-26T19:46:51.0284946Z [2967/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CompositeViewCopyKernels.cpp.obj 2025-08-26T19:46:51.2698960Z [2968/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Functions.cpp.obj 2025-08-26T19:46:51.7621790Z [2969/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutogradNestedTensor_0.cpp.obj 2025-08-26T19:46:52.2396220Z [2970/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutograd_0.cpp.obj 2025-08-26T19:46:52.3229558Z [2971/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutogradNonFunctional_0.cpp.obj 2025-08-26T19:46:52.3765612Z [2972/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutograd_0.cpp.obj 2025-08-26T19:46:52.4603026Z [2973/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_0.cpp.obj 2025-08-26T19:46:52.6116311Z [2974/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_1.cpp.obj 2025-08-26T19:46:52.6848463Z [2975/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_2.cpp.obj 2025-08-26T19:46:52.9827166Z [2976/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_3.cpp.obj 2025-08-26T19:46:53.2479103Z [2977/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_0.cpp.obj 2025-08-26T19:46:53.6693027Z [2978/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMkldnnCPU_0.cpp.obj 2025-08-26T19:46:53.7736886Z [2979/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorCPU_0.cpp.obj 2025-08-26T19:46:53.8339159Z [2980/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_1.cpp.obj 2025-08-26T19:46:53.8818762Z [2981/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_3.cpp.obj 2025-08-26T19:46:53.9208121Z [2982/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_2.cpp.obj 2025-08-26T19:46:54.1019594Z [2983/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorHPU_0.cpp.obj 2025-08-26T19:46:54.2180242Z [2984/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMeta_0.cpp.obj 2025-08-26T19:46:54.2818991Z [2985/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorMeta_0.cpp.obj 2025-08-26T19:46:54.6348097Z [2986/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorXPU_0.cpp.obj 2025-08-26T19:46:54.8602781Z [2987/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedCPU_0.cpp.obj 2025-08-26T19:46:54.8789228Z [2988/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSchema.cpp.obj 2025-08-26T19:46:54.8927633Z [2989/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedMeta_0.cpp.obj 2025-08-26T19:46:55.0181930Z [2990/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCPU_0.cpp.obj 2025-08-26T19:46:55.7287837Z [2991/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenOpList.cpp.obj 2025-08-26T19:46:55.7387264Z [2992/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPU_add.cpp.obj 2025-08-26T19:46:55.7516300Z [2993/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrCPU_0.cpp.obj 2025-08-26T19:46:55.7763431Z [2994/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrXPU_0.cpp.obj 2025-08-26T19:46:55.7795553Z [2995/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterZeroTensor_0.cpp.obj 2025-08-26T19:46:55.7828343Z [2996/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMeta_0.cpp.obj 2025-08-26T19:46:55.7921355Z [2997/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseXPU_0.cpp.obj 2025-08-26T19:46:55.7955481Z [2998/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMeta_0.cpp.obj 2025-08-26T19:46:56.2156499Z [2999/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_model_loader.cpp.obj 2025-08-26T19:46:56.2233443Z [3000/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_wrapper.cpp.obj 2025-08-26T19:46:56.3931285Z [3001/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:56.5949352Z [3002/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\QTensorImpl.cpp.obj 2025-08-26T19:46:56.6056337Z [3003/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TensorMethods.cpp.obj 2025-08-26T19:46:56.8328176Z [3004/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:56.9834161Z [3005/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:57.2290345Z [3006/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:57.2548331Z [3007/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:57.5841819Z [3008/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:57.6982614Z [3009/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:58.0058213Z [3010/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:58.1678375Z [3011/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:58.2350423Z [3012/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:58.2557025Z [3013/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:58.3324403Z [3014/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:58.8469017Z [3015/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:58.8843361Z [3016/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:59.1673629Z [3017/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:59.1843378Z [3018/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_register.cpp.obj 2025-08-26T19:46:59.2611470Z [3019/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\Quantizer.cpp.obj 2025-08-26T19:46:59.2693681Z [3020/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:59.2849087Z [3021/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_bind.cpp.obj 2025-08-26T19:46:59.4831247Z [3022/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:59.5660356Z [3023/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:59.8644241Z [3024/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:59.8834594Z [3025/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:46:59.9064369Z [3026/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:00.0331110Z [3027/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:00.1539139Z [3028/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:00.2263257Z [3029/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:00.4548989Z [3030/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:00.4635676Z [3031/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:00.5235557Z [3032/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:00.5744896Z [3033/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:00.7277984Z [3034/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:00.8122382Z [3035/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:01.0303017Z [3036/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:01.0487767Z [3037/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:01.0739670Z [3038/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:01.0927346Z [3039/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:01.3843789Z [3040/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:01.3991625Z [3041/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:01.6570418Z [3042/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:01.7080222Z [3043/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:01.8023901Z [3044/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:01.9438151Z [3045/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:01.9611234Z [3046/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:02.0586828Z [3047/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:02.0826248Z [3048/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:02.2626420Z [3049/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:02.3687623Z [3050/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:02.4915018Z [3051/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:02.5891435Z [3052/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:02.6998696Z [3053/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:02.7043772Z [3054/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:02.7987707Z [3055/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:03.1201853Z [3056/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:03.2742084Z [3057/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:03.2744142Z 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-08-26T19:47:03.2746190Z 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-08-26T19:47:03.2749141Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-08-26T19:47:03.2753900Z 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-08-26T19:47:03.2756650Z with 2025-08-26T19:47:03.2756937Z [ 2025-08-26T19:47:03.2757578Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-08-26T19:47:03.2758308Z ] 2025-08-26T19:47:03.2760659Z 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-08-26T19:47:03.2764476Z 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-08-26T19:47:03.2768253Z with 2025-08-26T19:47:03.2768573Z [ 2025-08-26T19:47:03.2769477Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-08-26T19:47:03.2770201Z ] 2025-08-26T19:47:03.2773596Z 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-08-26T19:47:03.2777447Z with 2025-08-26T19:47:03.2777735Z [ 2025-08-26T19:47:03.2778339Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t, 2025-08-26T19:47:03.2779714Z data_t=at::vec::DEFAULT::Vectorized, 2025-08-26T19:47:03.2781155Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-08-26T19:47:03.2782808Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-08-26T19:47:03.2783762Z ] 2025-08-26T19:47:03.2785180Z 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-08-26T19:47:03.2786711Z with 2025-08-26T19:47:03.2787002Z [ 2025-08-26T19:47:03.2787314Z scalar_t=float, 2025-08-26T19:47:03.2788447Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &), 2025-08-26T19:47:03.3260824Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-08-26T19:47:03.3261703Z ] 2025-08-26T19:47:03.3262566Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(177): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-08-26T19:47:03.3263430Z with 2025-08-26T19:47:03.3263611Z [ 2025-08-26T19:47:03.3264180Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-08-26T19:47:03.3264798Z ] 2025-08-26T19:47:03.3265432Z [3058/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:03.4752807Z [3059/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:03.4865779Z [3060/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:03.5059523Z [3061/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:03.5890992Z [3062/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:03.6739046Z [3063/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:03.6928067Z [3064/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:03.9588032Z [3065/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:03.9589459Z 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-08-26T19:47:03.9590699Z 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-08-26T19:47:03.9591778Z 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-08-26T19:47:04.0820465Z 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-08-26T19:47:04.0825250Z [3066/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:04.1081998Z [3067/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\mkl\SparseBlas.cpp.obj 2025-08-26T19:47:04.3266408Z [3068/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:04.3560606Z [3069/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:04.3757660Z [3070/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:04.4500130Z [3071/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:04.4615494Z [3072/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.DEFAULT.cpp.obj 2025-08-26T19:47:04.5986562Z [3073/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\crc.cc.obj 2025-08-26T19:47:04.6821438Z [3074/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\read_adapter_interface.cc.obj 2025-08-26T19:47:04.6894386Z [3075/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\istream_adapter.cc.obj 2025-08-26T19:47:04.6907380Z [3076/7555] Building C object caffe2\CMakeFiles\torch_cpu.dir\__\third_party\miniz-3.0.2\miniz.c.obj 2025-08-26T19:47:04.7906331Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-08-26T19:47:04.7907402Z 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-08-26T19:47:04.7908305Z [3077/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\file_adapter.cc.obj 2025-08-26T19:47:04.8119019Z [3078/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\vulkan\Context.cpp.obj 2025-08-26T19:47:04.8205708Z [3079/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\inline_container.cc.obj 2025-08-26T19:47:04.8711040Z [3080/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\thread_pool_guard.cpp.obj 2025-08-26T19:47:04.8861692Z [3081/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\metal\Context.cpp.obj 2025-08-26T19:47:04.9924752Z [3082/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\string_utils.cc.obj 2025-08-26T19:47:05.0567067Z [3083/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\pthreadpool-cpp.cc.obj 2025-08-26T19:47:05.1078744Z [3084/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\ThreadPool.cc.obj 2025-08-26T19:47:05.2533323Z [3085/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\perfkernels\embedding_lookup_idx.cc.obj 2025-08-26T19:47:05.2849091Z [3086/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\proto_wrap.cc.obj 2025-08-26T19:47:05.7779086Z [3087/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\core\common.cc.obj 2025-08-26T19:47:05.8805807Z [3088/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ViewFuncs.cpp.obj 2025-08-26T19:47:07.1024661Z [3089/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_0.cpp.obj 2025-08-26T19:47:07.1145521Z [3090/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_1.cpp.obj 2025-08-26T19:47:08.4468293Z [3091/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_2.cpp.obj 2025-08-26T19:47:08.4597174Z [3092/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_3.cpp.obj 2025-08-26T19:47:08.5600163Z [3093/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\Functions.cpp.obj 2025-08-26T19:47:08.7242159Z [3094/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_0.cpp.obj 2025-08-26T19:47:08.8081298Z [3095/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_2.cpp.obj 2025-08-26T19:47:08.8551917Z [3096/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_1.cpp.obj 2025-08-26T19:47:09.0017488Z [3097/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_3.cpp.obj 2025-08-26T19:47:09.1480729Z [3098/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_4.cpp.obj 2025-08-26T19:47:09.6951558Z [3099/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.cpp.obj 2025-08-26T19:47:09.6996948Z [3100/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_4.cpp.obj 2025-08-26T19:47:09.7300463Z [3101/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_0.cpp.obj 2025-08-26T19:47:09.7635722Z [3102/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.cpp.obj 2025-08-26T19:47:09.8430400Z [3103/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_1.cpp.obj 2025-08-26T19:47:10.0313984Z [3104/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterAutogradLazy.cpp.obj 2025-08-26T19:47:10.2172818Z [3105/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterLazy.cpp.obj 2025-08-26T19:47:11.0535330Z [3106/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_meta.cpp.obj 2025-08-26T19:47:11.0609772Z [3107/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\cpp_hook.cpp.obj 2025-08-26T19:47:11.0641829Z [3108/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd.cpp.obj 2025-08-26T19:47:11.0709828Z [3109/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\anomaly_mode.cpp.obj 2025-08-26T19:47:11.0787085Z [3110/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_not_implemented_fallback.cpp.obj 2025-08-26T19:47:11.2387462Z [3111/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\engine.cpp.obj 2025-08-26T19:47:11.8933216Z [3112/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\forward_grad.cpp.obj 2025-08-26T19:47:12.2659888Z [3113/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\utils.cpp.obj 2025-08-26T19:47:12.9200178Z [3114/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\LazyNativeFunctions.cpp.obj 2025-08-26T19:47:13.2643939Z [3115/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_metadata.cpp.obj 2025-08-26T19:47:13.4879946Z [3116/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\custom_function.cpp.obj 2025-08-26T19:47:13.9047130Z [3117/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\jit_decomp_interface.cpp.obj 2025-08-26T19:47:14.3040539Z [3118/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_kineto.cpp.obj 2025-08-26T19:47:14.5159828Z [3119/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\basic_ops.cpp.obj 2025-08-26T19:47:14.5445386Z [3120/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\function.cpp.obj 2025-08-26T19:47:14.5595572Z [3121/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_legacy.cpp.obj 2025-08-26T19:47:14.5843072Z [3122/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\tensor.cpp.obj 2025-08-26T19:47:14.8455149Z [3123/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\record_function_ops.cpp.obj 2025-08-26T19:47:14.8522579Z [3124/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\utils\warnings.cpp.obj 2025-08-26T19:47:14.9087974Z [3125/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\accumulate_grad.cpp.obj 2025-08-26T19:47:15.2647076Z [3126/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\saved_variable.cpp.obj 2025-08-26T19:47:15.4713368Z [3127/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_buffer.cpp.obj 2025-08-26T19:47:15.5105556Z [3128/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable_info.cpp.obj 2025-08-26T19:47:15.6021293Z [3129/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\dynamo\compiled_autograd.cpp.obj 2025-08-26T19:47:15.8499359Z [3130/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.cpp.obj 2025-08-26T19:47:15.9796351Z [3131/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_package\model_package_loader.cpp.obj 2025-08-26T19:47:16.0349296Z [3132/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner.cpp.obj 2025-08-26T19:47:16.2876408Z [3133/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\mkldnn_tensor.cpp.obj 2025-08-26T19:47:16.7064157Z [3134/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\oss_proxy_executor.cpp.obj 2025-08-26T19:47:16.7220646Z [3135/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\tensor_converter.cpp.obj 2025-08-26T19:47:16.8388631Z [3136/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_common.cpp.obj 2025-08-26T19:47:17.4400785Z [3137/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module.cpp.obj 2025-08-26T19:47:17.7659872Z [3138/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_handler.cpp.obj 2025-08-26T19:47:17.7770709Z [3139/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\object.cpp.obj 2025-08-26T19:47:17.9349783Z [3140/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_info.cpp.obj 2025-08-26T19:47:18.0949511Z [3141/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable.cpp.obj 2025-08-26T19:47:18.5289643Z [3142/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_detail.cpp.obj 2025-08-26T19:47:18.7571398Z [3143/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_interface.cpp.obj 2025-08-26T19:47:18.8309817Z [3144/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_resolver.cpp.obj 2025-08-26T19:47:19.4874639Z [3145/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\inductor_ops.cpp.obj 2025-08-26T19:47:19.5815828Z [3146/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\function_impl.cpp.obj 2025-08-26T19:47:19.7481815Z [3147/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_cpu.cpp.obj 2025-08-26T19:47:20.7193100Z [3148/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\builtin_functions.cpp.obj 2025-08-26T19:47:21.0135301Z [3149/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\canonicalize_modified_loop.cpp.obj 2025-08-26T19:47:21.2203586Z [3150/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\edit_distance.cpp.obj 2025-08-26T19:47:21.4806729Z [3151/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\codegen.cpp.obj 2025-08-26T19:47:21.7093165Z [3152/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\compiler.cpp.obj 2025-08-26T19:47:21.7866874Z [3153/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\convert_to_ssa.cpp.obj 2025-08-26T19:47:22.1432035Z [3154/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\executor.cpp.obj 2025-08-26T19:47:22.1500215Z [3155/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\name_mangler.cpp.obj 2025-08-26T19:47:22.2288558Z [3156/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\exit_transforms.cpp.obj 2025-08-26T19:47:22.4746333Z [3157/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\fallback.cpp.obj 2025-08-26T19:47:22.5585640Z [3158/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\interface.cpp.obj 2025-08-26T19:47:22.5774788Z [3159/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\inline_loop_condition.cpp.obj 2025-08-26T19:47:22.5968691Z [3160/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\parser.cpp.obj 2025-08-26T19:47:22.8793295Z [3161/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\ir_emitter.cpp.obj 2025-08-26T19:47:23.0988601Z [3162/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\kernel_cache.cpp.obj 2025-08-26T19:47:23.2428327Z [3163/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_matching.cpp.obj 2025-08-26T19:47:23.2771312Z [3164/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\script_type_parser.cpp.obj 2025-08-26T19:47:23.5396901Z [3165/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\sugared_value.cpp.obj 2025-08-26T19:47:23.6039463Z [3166/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\alias_analysis.cpp.obj 2025-08-26T19:47:23.6223783Z [3167/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\versioned_symbols.cpp.obj 2025-08-26T19:47:23.6815069Z [3168/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\tracer.cpp.obj 2025-08-26T19:47:23.8920630Z [3169/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\attributes.cpp.obj 2025-08-26T19:47:24.3084595Z [3170/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\graph_utils.cpp.obj 2025-08-26T19:47:24.3276448Z [3171/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\ir.cpp.obj 2025-08-26T19:47:24.5611814Z [3172/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\irparser.cpp.obj 2025-08-26T19:47:24.5772055Z [3173/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\scope.cpp.obj 2025-08-26T19:47:24.6838015Z [3174/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\node_hashing.cpp.obj 2025-08-26T19:47:24.7464504Z [3175/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\subgraph_matcher.cpp.obj 2025-08-26T19:47:24.9064937Z [3176/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\type_hashing.cpp.obj 2025-08-26T19:47:25.3405600Z [3177/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_log.cpp.obj 2025-08-26T19:47:25.4050335Z [3178/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_opt_limit.cpp.obj 2025-08-26T19:47:25.5546196Z [3179/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\runtime_compatibility.cpp.obj 2025-08-26T19:47:25.6914461Z [3180/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\model_compatibility.cpp.obj 2025-08-26T19:47:25.7303797Z [3181/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\function.cpp.obj 2025-08-26T19:47:26.0536539Z [3182/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import.cpp.obj 2025-08-26T19:47:26.3835884Z [3183/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\registry.cpp.obj 2025-08-26T19:47:26.4693709Z [3184/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\module.cpp.obj 2025-08-26T19:47:26.6363882Z [3185/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\backend.cpp.obj 2025-08-26T19:47:26.6383044Z [3186/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\observer.cpp.obj 2025-08-26T19:47:26.6721845Z [3187/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\constants.cpp.obj 2025-08-26T19:47:27.2986402Z [3188/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\interpreter.cpp.obj 2025-08-26T19:47:27.4614653Z [3189/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_bytecode.cpp.obj 2025-08-26T19:47:27.5552739Z [3190/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\prim_ops_registery.cpp.obj 2025-08-26T19:47:27.5596835Z [3191/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_operators.cpp.obj 2025-08-26T19:47:28.1073276Z [3192/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\context.cpp.obj 2025-08-26T19:47:28.2733756Z [3193/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\flatbuffer_loader.cpp.obj 2025-08-26T19:47:28.3918838Z [3194/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\quantization.cpp.obj 2025-08-26T19:47:28.5383774Z [3195/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\type_parser.cpp.obj 2025-08-26T19:47:28.5548337Z [3196/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\upgrader_mobile.cpp.obj 2025-08-26T19:47:28.6473929Z [3197/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\promoted_prim_ops.cpp.obj 2025-08-26T19:47:28.7056825Z [3198/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\utils.cpp.obj 2025-08-26T19:47:28.7873941Z [3199/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\version_map.cpp.obj 2025-08-26T19:47:29.1760964Z [3200/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\aot_compiler.cpp.obj 2025-08-26T19:47:29.2316119Z [3201/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders.cpp.obj 2025-08-26T19:47:29.3594023Z [3202/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders_entry.cpp.obj 2025-08-26T19:47:29.3850512Z [3203/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\register_ops_common_utils.cpp.obj 2025-08-26T19:47:29.6475119Z [3204/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\add_if_then_else.cpp.obj 2025-08-26T19:47:29.6826166Z [3205/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\annotate_warns.cpp.obj 2025-08-26T19:47:30.2514250Z [3206/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.cpp.obj 2025-08-26T19:47:30.2554899Z [3207/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize.cpp.obj 2025-08-26T19:47:30.4304101Z [3208/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\check_strict_fusion.cpp.obj 2025-08-26T19:47:30.7364576Z [3209/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\common_subexpression_elimination.cpp.obj 2025-08-26T19:47:31.2328301Z [3210/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_pooling.cpp.obj 2025-08-26T19:47:31.3442565Z [3211/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\concat_opt.cpp.obj 2025-08-26T19:47:31.4910654Z [3212/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_propagation.cpp.obj 2025-08-26T19:47:31.8187354Z [3213/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_autodiff_subgraphs.cpp.obj 2025-08-26T19:47:32.2258918Z [3214/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\bailout_graph.cpp.obj 2025-08-26T19:47:32.3293842Z [3215/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_functional_graphs.cpp.obj 2025-08-26T19:47:32.4589781Z [3216/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\batch_mm.cpp.obj 2025-08-26T19:47:32.4779552Z [3217/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.cpp.obj 2025-08-26T19:47:32.5325009Z [3218/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dead_code_elimination.cpp.obj 2025-08-26T19:47:32.8553378Z [3219/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\decompose_ops.cpp.obj 2025-08-26T19:47:32.9628807Z [3220/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_profiling.cpp.obj 2025-08-26T19:47:33.1798316Z [3221/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_undefinedness.cpp.obj 2025-08-26T19:47:33.2615541Z [3222/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\device_type_analysis.cpp.obj 2025-08-26T19:47:33.4139228Z [3223/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dtype_analysis.cpp.obj 2025-08-26T19:47:33.4710661Z [3224/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\eliminate_no_ops.cpp.obj 2025-08-26T19:47:33.5379202Z [3225/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\erase_number_types.cpp.obj 2025-08-26T19:47:33.6246119Z [3226/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fixup_trace_scope_blocks.cpp.obj 2025-08-26T19:47:33.8980155Z [3227/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_conv_bn.cpp.obj 2025-08-26T19:47:34.0030595Z [3228/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_linear_bn.cpp.obj 2025-08-26T19:47:34.3572443Z [3229/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_concat_linear.cpp.obj 2025-08-26T19:47:34.4934467Z [3230/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.cpp.obj 2025-08-26T19:47:34.5698800Z [3231/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_folding.cpp.obj 2025-08-26T19:47:34.6299838Z [3232/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_graph_optimizations.cpp.obj 2025-08-26T19:47:34.6777774Z [3233/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_folding.cpp.obj 2025-08-26T19:47:34.9948704Z [3234/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_transpose.cpp.obj 2025-08-26T19:47:35.4192586Z [3235/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_linear.cpp.obj 2025-08-26T19:47:35.5472029Z [3236/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_relu.cpp.obj 2025-08-26T19:47:35.6862884Z [3237/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_rewrite_helper.cpp.obj 2025-08-26T19:47:36.0751716Z [3238/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\hoist_conv_packed_params.cpp.obj 2025-08-26T19:47:36.4461602Z [3239/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_autodiff_subgraphs.cpp.obj 2025-08-26T19:47:36.5804896Z [3240/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_fork_wait.cpp.obj 2025-08-26T19:47:36.7405549Z [3241/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_forked_closures.cpp.obj 2025-08-26T19:47:36.8572691Z [3242/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\freeze_module.cpp.obj 2025-08-26T19:47:37.1643407Z [3243/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inliner.cpp.obj 2025-08-26T19:47:37.4856742Z [3244/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inplace_check.cpp.obj 2025-08-26T19:47:37.8247749Z [3245/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\integer_value_refinement.cpp.obj 2025-08-26T19:47:37.9529001Z [3246/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lift_closures.cpp.obj 2025-08-26T19:47:38.0464143Z [3247/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_ops_to_mkldnn.cpp.obj 2025-08-26T19:47:38.1203184Z [3248/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_fuser.cpp.obj 2025-08-26T19:47:38.2883945Z [3249/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\guard_elimination.cpp.obj 2025-08-26T19:47:38.5451522Z [3250/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\loop_unrolling.cpp.obj 2025-08-26T19:47:38.9266064Z [3251/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_grad_of.cpp.obj 2025-08-26T19:47:38.9621191Z [3252/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_tuples.cpp.obj 2025-08-26T19:47:39.3232595Z [3253/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\normalize_ops.cpp.obj 2025-08-26T19:47:39.5806276Z [3254/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\pass_manager.cpp.obj 2025-08-26T19:47:39.9820141Z [3255/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole.cpp.obj 2025-08-26T19:47:39.9895839Z [3256/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_alias_sensitive.cpp.obj 2025-08-26T19:47:40.2475984Z [3257/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\insert_guards.cpp.obj 2025-08-26T19:47:40.3994859Z [3258/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_dict_idioms.cpp.obj 2025-08-26T19:47:40.7151833Z [3259/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_list_idioms.cpp.obj 2025-08-26T19:47:40.7610688Z [3260/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\liveness.cpp.obj 2025-08-26T19:47:40.9848251Z [3261/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_non_tensor.cpp.obj 2025-08-26T19:47:41.0500608Z [3262/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\prepack_folding.cpp.obj 2025-08-26T19:47:41.2670179Z [3263/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\dedup_module_uses.cpp.obj 2025-08-26T19:47:41.5226242Z [3264/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\quantization_type.cpp.obj 2025-08-26T19:47:41.6376637Z [3265/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\metal_rewrite.cpp.obj 2025-08-26T19:47:41.7599739Z [3266/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\fusion_passes.cpp.obj 2025-08-26T19:47:41.8322570Z [3267/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\helper.cpp.obj 2025-08-26T19:47:41.9933742Z [3268/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\mkldnn_rewrite.cpp.obj 2025-08-26T19:47:42.1348439Z [3269/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_quant_dequant.cpp.obj 2025-08-26T19:47:42.1607867Z [3270/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_observers.cpp.obj 2025-08-26T19:47:42.7029440Z [3271/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\refine_tuple_types.cpp.obj 2025-08-26T19:47:42.7798572Z [3272/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_dropout.cpp.obj 2025-08-26T19:47:42.9121697Z [3273/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_exceptions.cpp.obj 2025-08-26T19:47:43.1180505Z [3274/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_expands.cpp.obj 2025-08-26T19:47:43.2202684Z [3275/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_redundant_profiles.cpp.obj 2025-08-26T19:47:43.2374364Z [3276/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_mutation.cpp.obj 2025-08-26T19:47:43.7647211Z [3277/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\replacement_of_old_operators.cpp.obj 2025-08-26T19:47:43.7987390Z [3278/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\requires_grad_analysis.cpp.obj 2025-08-26T19:47:43.9577619Z [3279/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\restore_mutation.cpp.obj 2025-08-26T19:47:44.0305269Z [3280/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\finalize.cpp.obj 2025-08-26T19:47:44.1863880Z [3281/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\shape_analysis.cpp.obj 2025-08-26T19:47:44.3427814Z [3282/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\subgraph_rewrite.cpp.obj 2025-08-26T19:47:44.8068924Z [3283/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_cache.cpp.obj 2025-08-26T19:47:44.8218468Z [3284/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_analysis.cpp.obj 2025-08-26T19:47:45.2099377Z [3285/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.cpp.obj 2025-08-26T19:47:45.3586055Z [3286/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\register_packed_params.cpp.obj 2025-08-26T19:47:45.4103894Z [3287/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\memory_dag.cpp.obj 2025-08-26T19:47:45.8156550Z [3288/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\optimization_utils.cpp.obj 2025-08-26T19:47:45.8256944Z [3289/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\op_registry.cpp.obj 2025-08-26T19:47:46.2264993Z [3290/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\subgraph_utils.cpp.obj 2025-08-26T19:47:46.4081928Z [3291/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\value_refinement_utils.cpp.obj 2025-08-26T19:47:46.4810996Z [3292/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\variadic_ops.cpp.obj 2025-08-26T19:47:46.4863636Z [3293/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\utf8_decoding_ignore.cpp.obj 2025-08-26T19:47:46.4879760Z [3294/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\update_graph_executor_opt.cpp.obj 2025-08-26T19:47:46.8784655Z [3295/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\specialize_autogradzero.cpp.obj 2025-08-26T19:47:47.4729699Z [3296/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\argument_spec.cpp.obj 2025-08-26T19:47:47.5261233Z [3297/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\autodiff.cpp.obj 2025-08-26T19:47:47.6392849Z [3298/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\tensorexpr_fuser.cpp.obj 2025-08-26T19:47:47.6924777Z 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-08-26T19:47:47.6926149Z 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-08-26T19:47:47.6927255Z [3299/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.cpp.obj 2025-08-26T19:47:47.7031669Z [3300/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry.cpp.obj 2025-08-26T19:47:47.8256839Z [3301/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\instruction.cpp.obj 2025-08-26T19:47:47.9521875Z [3302/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry_util.cpp.obj 2025-08-26T19:47:48.0400647Z [3303/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_exception.cpp.obj 2025-08-26T19:47:48.3760446Z [3304/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\logging.cpp.obj 2025-08-26T19:47:48.6997118Z [3305/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\preprocess_graph.cpp.obj 2025-08-26T19:47:48.9554902Z [3306/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\print_handler.cpp.obj 2025-08-26T19:47:49.4878595Z [3307/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\vulkan_rewrite.cpp.obj 2025-08-26T19:47:49.5261601Z [3308/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\xnnpack_rewrite.cpp.obj 2025-08-26T19:47:51.1459559Z [3309/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\graph_executor.cpp.obj 2025-08-26T19:47:51.2232835Z [3310/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter.cpp.obj 2025-08-26T19:47:51.4264204Z [3311/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\frame.cpp.obj 2025-08-26T19:47:51.5827618Z [3312/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_trace.cpp.obj 2025-08-26T19:47:51.8784402Z [3313/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\slice_indices_adjust.cpp.obj 2025-08-26T19:47:51.9276387Z [3314/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\operator.cpp.obj 2025-08-26T19:47:52.2517341Z [3315/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\script_profile.cpp.obj 2025-08-26T19:47:52.2551500Z [3316/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\serialized_shape_function_registry.cpp.obj 2025-08-26T19:47:52.6388205Z [3317/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_graph_executor_impl.cpp.obj 2025-08-26T19:47:52.8988492Z [3318/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\fusion.cpp.obj 2025-08-26T19:47:53.1055586Z [3319/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_record.cpp.obj 2025-08-26T19:47:53.2440848Z [3320/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_ops_utils.cpp.obj 2025-08-26T19:47:53.3694508Z [3321/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\memory_planner.cpp.obj 2025-08-26T19:47:53.3882515Z [3322/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\impl.cpp.obj 2025-08-26T19:47:54.1830589Z [3323/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\passes.cpp.obj 2025-08-26T19:47:54.4364560Z [3324/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_script.cpp.obj 2025-08-26T19:47:54.5402826Z [3325/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry.cpp.obj 2025-08-26T19:47:55.0568724Z [3326/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\simple_graph_executor_impl.cpp.obj 2025-08-26T19:47:55.2692128Z [3327/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry_util.cpp.obj 2025-08-26T19:47:55.6418366Z [3328/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\callstack_debug_info_serialization.cpp.obj 2025-08-26T19:47:55.7862620Z [3329/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\generated_ops.cpp.obj 2025-08-26T19:47:56.1984848Z [3330/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_export_helpers.cpp.obj 2025-08-26T19:47:56.4370105Z [3331/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\native_ops.cpp.obj 2025-08-26T19:47:56.7196816Z [3332/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_read.cpp.obj 2025-08-26T19:47:56.8528454Z [3333/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\vararg_functions.cpp.obj 2025-08-26T19:47:56.9625105Z [3334/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\ops.cpp.obj 2025-08-26T19:47:56.9796392Z [3335/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_source.cpp.obj 2025-08-26T19:47:57.2743278Z [3336/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\te_wrapper.cpp.obj 2025-08-26T19:47:57.2881426Z [3337/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickle.cpp.obj 2025-08-26T19:47:57.9341138Z [3338/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\python_print.cpp.obj 2025-08-26T19:47:58.0262134Z [3339/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\type_name_uniquer.cpp.obj 2025-08-26T19:47:58.0540820Z [3340/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\source_range_serialization.cpp.obj 2025-08-26T19:47:58.7453427Z [3341/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import.cpp.obj 2025-08-26T19:48:00.0249763Z [3342/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler.cpp.obj 2025-08-26T19:48:00.2997777Z [3343/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler_helper.cpp.obj 2025-08-26T19:48:00.8354414Z [3344/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\unpickler.cpp.obj 2025-08-26T19:48:00.9084110Z [3345/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\block_codegen.cpp.obj 2025-08-26T19:48:01.4522229Z [3346/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_inference.cpp.obj 2025-08-26T19:48:01.4969960Z [3347/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\codegen.cpp.obj 2025-08-26T19:48:01.5442511Z [3348/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_overlap.cpp.obj 2025-08-26T19:48:01.7271221Z [3349/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_registry.cpp.obj 2025-08-26T19:48:02.3485988Z [3350/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\cpp_codegen.cpp.obj 2025-08-26T19:48:02.4156115Z [3351/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\intrinsic_symbols.cpp.obj 2025-08-26T19:48:03.3624591Z [3352/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir.cpp.obj 2025-08-26T19:48:03.6270025Z [3353/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\eval.cpp.obj 2025-08-26T19:48:03.7894476Z [3354/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\expr.cpp.obj 2025-08-26T19:48:04.3074064Z [3355/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_codegen.cpp.obj 2025-08-26T19:48:04.7921472Z [3356/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions.cpp.obj 2025-08-26T19:48:04.9211023Z [3357/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_core.cpp.obj 2025-08-26T19:48:05.1757911Z [3358/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\graph_opt.cpp.obj 2025-08-26T19:48:05.2420532Z [3359/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\hash_provider.cpp.obj 2025-08-26T19:48:05.3371956Z [3360/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_codegen.cpp.obj 2025-08-26T19:48:05.4055917Z [3361/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_jit.cpp.obj 2025-08-26T19:48:06.8269380Z [3362/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_cloner.cpp.obj 2025-08-26T19:48:07.0900991Z [3363/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_mutator.cpp.obj 2025-08-26T19:48:07.2547458Z [3364/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_printer.cpp.obj 2025-08-26T19:48:07.7805876Z [3365/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_simplifier.cpp.obj 2025-08-26T19:48:07.7807272Z 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-08-26T19:48:07.7808160Z with 2025-08-26T19:48:07.7808399Z [ 2025-08-26T19:48:07.7808621Z T=int 2025-08-26T19:48:07.7808834Z ] 2025-08-26T19:48:07.7809506Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-08-26T19:48:08.3406656Z 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-08-26T19:48:08.3408883Z with 2025-08-26T19:48:08.3409244Z [ 2025-08-26T19:48:08.3409601Z T=int 2025-08-26T19:48:08.3409931Z ] 2025-08-26T19:48:08.3410830Z [3366/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_verifier.cpp.obj 2025-08-26T19:48:08.3874538Z [3367/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_visitor.cpp.obj 2025-08-26T19:48:08.9506165Z [3368/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest.cpp.obj 2025-08-26T19:48:09.0359566Z [3369/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\kernel.cpp.obj 2025-08-26T19:48:10.3661317Z [3370/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest_randomization.cpp.obj 2025-08-26T19:48:10.6910769Z [3371/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp.obj 2025-08-26T19:48:10.6913224Z 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-08-26T19:48:10.6914336Z with 2025-08-26T19:48:10.6914600Z [ 2025-08-26T19:48:10.6914857Z T=int 2025-08-26T19:48:10.6915072Z ] 2025-08-26T19:48:10.6915819Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-08-26T19:48:10.8865026Z 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-08-26T19:48:10.8867383Z with 2025-08-26T19:48:10.8868173Z [ 2025-08-26T19:48:10.8868570Z T=int 2025-08-26T19:48:10.8868976Z ] 2025-08-26T19:48:10.8869767Z [3372/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\lowerings.cpp.obj 2025-08-26T19:48:11.4727182Z [3373/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\conv2d.cpp.obj 2025-08-26T19:48:11.9710114Z [3374/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\misc.cpp.obj 2025-08-26T19:48:12.0383562Z [3375/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\matmul.cpp.obj 2025-08-26T19:48:12.4678550Z [3376/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\reduction.cpp.obj 2025-08-26T19:48:12.5828004Z [3377/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\norm.cpp.obj 2025-08-26T19:48:12.6932820Z [3378/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\pointwise.cpp.obj 2025-08-26T19:48:12.8913951Z [3379/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\types.cpp.obj 2025-08-26T19:48:12.9542205Z [3380/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\tensor.cpp.obj 2025-08-26T19:48:13.5095776Z [3381/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\unique_name_manager.cpp.obj 2025-08-26T19:48:13.7523031Z [3382/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\file_check.cpp.obj 2025-08-26T19:48:13.8843087Z [3383/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\hooks_for_testing.cpp.obj 2025-08-26T19:48:13.9543513Z [3384/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_device.cpp.obj 2025-08-26T19:48:14.0123861Z [3385/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\quantization.cpp.obj 2025-08-26T19:48:14.2151747Z [3386/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\config.cpp.obj 2025-08-26T19:48:14.3011435Z [3387/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\reduction.cpp.obj 2025-08-26T19:48:14.5527362Z [3388/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\softmax.cpp.obj 2025-08-26T19:48:14.5713665Z [3389/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_interface.cpp.obj 2025-08-26T19:48:14.8284520Z [3390/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\lowering_context.cpp.obj 2025-08-26T19:48:14.8567137Z [3391/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\hash.cpp.obj 2025-08-26T19:48:14.9784713Z [3392/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\debug_util.cpp.obj 2025-08-26T19:48:15.2830455Z [3393/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\helpers.cpp.obj 2025-08-26T19:48:15.3092021Z [3394/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir.cpp.obj 2025-08-26T19:48:15.5122473Z [3395/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\registerizer.cpp.obj 2025-08-26T19:48:15.5123755Z 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-08-26T19:48:15.5124704Z with 2025-08-26T19:48:15.5124969Z [ 2025-08-26T19:48:15.5125163Z T=int 2025-08-26T19:48:15.5125361Z ] 2025-08-26T19:48:15.5126028Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-08-26T19:48:15.5520230Z 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-08-26T19:48:15.5522167Z with 2025-08-26T19:48:15.5522452Z [ 2025-08-26T19:48:15.5522660Z T=int 2025-08-26T19:48:15.5522856Z ] 2025-08-26T19:48:15.5523302Z [3396/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\multi_wait.cpp.obj 2025-08-26T19:48:15.5966099Z [3397/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_dump_util.cpp.obj 2025-08-26T19:48:15.6432928Z [3398/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_metadata.cpp.obj 2025-08-26T19:48:15.8939162Z [3399/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_util.cpp.obj 2025-08-26T19:48:15.9029064Z [3400/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\permutation_util.cpp.obj 2025-08-26T19:48:15.9221580Z [3401/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\lazy_graph_executor.cpp.obj 2025-08-26T19:48:16.0057054Z [3402/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\metrics.cpp.obj 2025-08-26T19:48:16.3785377Z [3403/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\arithmetic_ir_ops.cpp.obj 2025-08-26T19:48:16.4559089Z [3404/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\thread_pool.cpp.obj 2025-08-26T19:48:16.6136332Z [3405/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\utils.cpp.obj 2025-08-26T19:48:16.6498799Z [3406/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape.cpp.obj 2025-08-26T19:48:16.8469389Z [3407/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\counters.cpp.obj 2025-08-26T19:48:16.9401981Z [3408/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor.cpp.obj 2025-08-26T19:48:16.9434167Z [3409/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_util.cpp.obj 2025-08-26T19:48:16.9498939Z [3410/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\events.cpp.obj 2025-08-26T19:48:16.9654926Z [3411/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_impl.cpp.obj 2025-08-26T19:48:17.4284911Z [3412/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\trie.cpp.obj 2025-08-26T19:48:17.8024335Z [3413/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\mtia\profiler\MTIAMemoryProfiler.cpp.obj 2025-08-26T19:48:17.9375347Z [3414/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\data_flow.cpp.obj 2025-08-26T19:48:17.9406034Z [3415/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\combined_traceback.cpp.obj 2025-08-26T19:48:17.9609099Z [3416/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\collection.cpp.obj 2025-08-26T19:48:18.0277345Z [3417/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_shim.cpp.obj 2025-08-26T19:48:18.0575562Z [3418/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_client_interface.cpp.obj 2025-08-26T19:48:18.2739612Z [3419/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\perf.cpp.obj 2025-08-26T19:48:18.3184921Z [3420/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\observer.cpp.obj 2025-08-26T19:48:18.6294241Z [3421/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\base.cpp.obj 2025-08-26T19:48:18.7329206Z [3422/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\python_tracer.cpp.obj 2025-08-26T19:48:18.8021124Z [3423/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind_fb.cpp.obj 2025-08-26T19:48:18.8641559Z [3424/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\vulkan.cpp.obj 2025-08-26T19:48:18.9503026Z [3425/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind.cpp.obj 2025-08-26T19:48:18.9585820Z [3426/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\nvtx_observer.cpp.obj 2025-08-26T19:48:19.0426952Z [3427/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\itt_observer.cpp.obj 2025-08-26T19:48:19.1475719Z [3428/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\cpp_stacktraces.cpp.obj 2025-08-26T19:48:19.1944258Z [3429/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\privateuse1_observer.cpp.obj 2025-08-26T19:48:19.2289201Z [3430/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\execution_trace_observer.cpp.obj 2025-08-26T19:48:19.5379145Z [3431/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape_inference.cpp.obj 2025-08-26T19:48:19.8900771Z [3432/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\schema_info.cpp.obj 2025-08-26T19:48:19.9002994Z [3433/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\util.cpp.obj 2025-08-26T19:48:19.9789626Z [3434/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\variadic.cpp.obj 2025-08-26T19:48:20.2821973Z [3435/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_graph.cpp.obj 2025-08-26T19:48:20.6579248Z [3436/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_inplace_ops.cpp.obj 2025-08-26T19:48:20.9329196Z [3437/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\check_alias_annotation.cpp.obj 2025-08-26T19:48:20.9514550Z [3438/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_c10_ops.cpp.obj 2025-08-26T19:48:22.1515027Z [3439/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\Graph.cpp.obj 2025-08-26T19:48:22.2222417Z [3440/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\ModelRunner.cpp.obj 2025-08-26T19:48:22.3785892Z [3441/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\tensor_flatten.cpp.obj 2025-08-26T19:48:22.8085600Z [3442/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\cuda\interface.cpp.obj 2025-08-26T19:48:22.8888738Z [3443/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\autocast.cpp.obj 2025-08-26T19:48:22.9048067Z [3444/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-08-26T19:48:23.3403662Z [3445/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphPasses.cpp.obj 2025-08-26T19:48:23.4431407Z [3446/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-08-26T19:48:23.5015932Z [3447/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\Serialization.cpp.obj 2025-08-26T19:48:23.6340471Z [3448/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops.cpp.obj 2025-08-26T19:48:23.8111216Z [3449/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Placement.cpp.obj 2025-08-26T19:48:23.9151053Z [3450/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphUtils.cpp.obj 2025-08-26T19:48:23.9637054Z [3451/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops_fulljit.cpp.obj 2025-08-26T19:48:24.0050842Z [3452/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\DelegateExecutor.cpp.obj 2025-08-26T19:48:24.2811859Z [3453/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_special_ops.cpp.obj 2025-08-26T19:48:24.4765524Z [3454/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-08-26T19:48:24.5596946Z [3455/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ExecutionPlanner.cpp.obj 2025-08-26T19:48:24.5855411Z [3456/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ExecutionFrame.cpp.obj 2025-08-26T19:48:24.7810079Z [3457/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Executor.cpp.obj 2025-08-26T19:48:24.9307983Z [3458/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\GraphExecutorBase.cpp.obj 2025-08-26T19:48:25.0520019Z [3459/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\common\FileUtil.cpp.obj 2025-08-26T19:48:25.1219523Z [3460/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ConstantFolder.cpp.obj 2025-08-26T19:48:25.1979984Z [3461/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\OpKernel.cpp.obj 2025-08-26T19:48:25.3432578Z [3462/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\SerialGraphExecutor.cpp.obj 2025-08-26T19:48:25.4826370Z [3463/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\FunctionSchema.cpp.obj 2025-08-26T19:48:25.5394620Z [3464/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\Bump.cpp.obj 2025-08-26T19:48:25.5840564Z [3465/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\GreedyBySize.cpp.obj 2025-08-26T19:48:25.6927070Z [3466/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Weights.cpp.obj 2025-08-26T19:48:25.9275862Z [3467/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\detail\ITree.cpp.obj 2025-08-26T19:48:26.1359455Z [3468/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\C10Kernel.cpp.obj 2025-08-26T19:48:26.2150543Z [3469/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\AutoFunctionalizeKernel.cpp.obj 2025-08-26T19:48:26.2359337Z [3470/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\HigherOrderKernel.cpp.obj 2025-08-26T19:48:26.3662712Z [3471/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\DisjointStorageGroups.cpp.obj 2025-08-26T19:48:26.6059454Z [3472/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ParallelGraphExecutor.cpp.obj 2025-08-26T19:48:26.6539977Z [3473/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\CallTorchBindKernel.cpp.obj 2025-08-26T19:48:27.1738601Z [3474/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\AliasAnalyzer.cpp.obj 2025-08-26T19:48:27.2797609Z [3475/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\LayoutPlanner.cpp.obj 2025-08-26T19:48:27.3304764Z [3476/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\LayoutManager.cpp.obj 2025-08-26T19:48:28.3404754Z [3477/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\passes\SubgraphRewriter.cpp.obj 2025-08-26T19:48:28.4964624Z [3478/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\passes\pass_manager\GraphPasses.cpp.obj 2025-08-26T19:48:29.3984665Z [3479/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelFactory.cpp.obj 2025-08-26T19:48:29.4170687Z [3480/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\passes\pass_manager\PassManager.cpp.obj 2025-08-26T19:48:29.7031586Z [3481/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\PrimKernelRegistry.cpp.obj 2025-08-26T19:48:29.9784828Z [3482/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\config.cpp.obj 2025-08-26T19:48:30.3083824Z [3483/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\NativeKernels.cpp.obj 2025-08-26T19:48:30.4851761Z [3484/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\dynamic_ir.cpp.obj 2025-08-26T19:48:30.5037018Z [3485/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\debug_info.cpp.obj 2025-08-26T19:48:30.5665942Z [3486/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\GeneratedStaticDispatchKernels.cpp.obj 2025-08-26T19:48:30.6867228Z [3487/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelRegistry.cpp.obj 2025-08-26T19:48:31.0280281Z [3488/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\device_data.cpp.obj 2025-08-26T19:48:31.1387144Z [3489/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\GeneratedNativeStaticDispatchKernels.cpp.obj 2025-08-26T19:48:31.3891978Z [3490/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\generic.cpp.obj 2025-08-26T19:48:31.5795100Z [3491/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\tensor_aten_ops.cpp.obj 2025-08-26T19:48:32.1420149Z [3492/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_lowering_context.cpp.obj 2025-08-26T19:48:32.1737859Z [3493/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_autograd_functions.cpp.obj 2025-08-26T19:48:32.2763681Z [3494/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelHandlerRegistry.cpp.obj 2025-08-26T19:48:32.5309924Z [3495/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node.cpp.obj 2025-08-26T19:48:33.0540585Z [3496/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_backend_impl.cpp.obj 2025-08-26T19:48:33.1809045Z [3497/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_eager_fallback.cpp.obj 2025-08-26T19:48:33.2452673Z [3498/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\export_data.cpp.obj 2025-08-26T19:48:34.1076280Z [3499/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node_lowering.cpp.obj 2025-08-26T19:48:34.5985056Z [3500/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import_data.cpp.obj 2025-08-26T19:48:34.9654315Z [3501/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_native_functions.cpp.obj 2025-08-26T19:48:34.9688430Z [3502/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\out_types.cpp.obj 2025-08-26T19:48:35.3135792Z [3503/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\itt_wrapper.cpp.obj 2025-08-26T19:48:35.6191419Z [3504/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\itt.cpp.obj 2025-08-26T19:48:35.6980317Z [3505/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\TraceTypeManual.cpp.obj 2025-08-26T19:48:35.8165414Z [3506/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\optim\sgd.cpp.obj 2025-08-26T19:48:35.9929217Z [3507/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\random.cpp.obj 2025-08-26T19:48:36.6483679Z [3508/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\sequential.cpp.obj 2025-08-26T19:48:36.6644085Z [3509/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport.cpp.obj 2025-08-26T19:48:36.7427936Z [3510/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\jit.cpp.obj 2025-08-26T19:48:36.7931454Z [3511/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\flatbuffer_serializer.cpp.obj 2025-08-26T19:48:36.8298745Z [3512/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\FunctionsManual.cpp.obj 2025-08-26T19:48:36.8834311Z [3513/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport_manager.cpp.obj 2025-08-26T19:48:37.1734812Z [3514/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\onnx.cpp.obj 2025-08-26T19:48:37.2354039Z [3515/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\byte_order.cpp.obj 2025-08-26T19:48:37.4829777Z [3516/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backoff.cpp.obj 2025-08-26T19:48:37.7754314Z [3517/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_bytecode.cpp.obj 2025-08-26T19:48:37.8811708Z [3518/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module_save.cpp.obj 2025-08-26T19:48:38.5785170Z [3519/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\VariableTypeManual.cpp.obj 2025-08-26T19:48:38.7488676Z [3520/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FileStore.cpp.obj 2025-08-26T19:48:40.3875070Z [3521/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_module.cpp.obj 2025-08-26T19:48:40.4645951Z [3522/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export.cpp.obj 2025-08-26T19:48:40.6395425Z [3523/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.cpp.obj 2025-08-26T19:48:41.0645446Z [3524/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backend.cpp.obj 2025-08-26T19:48:41.3917307Z [3525/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ParamCommsUtils.cpp.obj 2025-08-26T19:48:41.6067298Z [3526/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\PrefixStore.cpp.obj 2025-08-26T19:48:41.7122876Z [3527/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Functional.cpp.obj 2025-08-26T19:48:41.7422065Z [3528/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupMPI.cpp.obj 2025-08-26T19:48:41.8981882Z [3529/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FlightRecorder.cpp.obj 2025-08-26T19:48:42.4348332Z [3530/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GlooDeviceFactory.cpp.obj 2025-08-26T19:48:42.5904584Z [3531/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GroupRegistry.cpp.obj 2025-08-26T19:48:42.6968034Z [3532/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Store.cpp.obj 2025-08-26T19:48:43.8799334Z [3533/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreLibUvBackend.cpp.obj 2025-08-26T19:48:44.1289730Z [3534/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Ops.cpp.obj 2025-08-26T19:48:45.0512652Z [3535/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroup.cpp.obj 2025-08-26T19:48:45.3976622Z [3536/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupGloo.cpp.obj 2025-08-26T19:48:45.5610590Z [3537/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupWrapper.cpp.obj 2025-08-26T19:48:45.7123042Z [3538/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStore.cpp.obj 2025-08-26T19:48:45.8332531Z [3539/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\Handlers.cpp.obj 2025-08-26T19:48:46.0654252Z [3540/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\cuda\StreamBlock.cpp.obj 2025-08-26T19:48:46.0912785Z [3541/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.cpp.obj 2025-08-26T19:48:46.1960233Z [3542/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreBackend.cpp.obj 2025-08-26T19:48:46.2913508Z [3543/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\debug.cpp.obj 2025-08-26T19:48:46.4033162Z [3544/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\WorkerServer.cpp.obj 2025-08-26T19:48:46.5956616Z [3545/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Utils.cpp.obj 2025-08-26T19:48:46.6480413Z [3546/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logging.cpp.obj 2025-08-26T19:48:47.3950703Z [3547/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\socket.cpp.obj 2025-08-26T19:48:47.5149232Z [3548/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\sequence_num.cpp.obj 2025-08-26T19:48:47.7412082Z [3549/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Work.cpp.obj 2025-08-26T19:48:47.9969789Z [3550/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\comm.cpp.obj 2025-08-26T19:48:48.3462463Z [3551/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\cuda.cpp.obj 2025-08-26T19:48:49.8324135Z [3552/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\quantization\quantization.cpp.obj 2025-08-26T19:48:50.0214786Z [3553/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logger.cpp.obj 2025-08-26T19:48:50.1464047Z 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-08-26T19:48:50.1465536Z [3554/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\default_comm_hooks.cpp.obj 2025-08-26T19:48:50.2190604Z [3555/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\reducer.cpp.obj 2025-08-26T19:48:50.4982273Z [3556/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\enum.cpp.obj 2025-08-26T19:48:50.9402604Z [3557/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.cpp.obj 2025-08-26T19:48:51.0528643Z [3558/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.cpp.obj 2025-08-26T19:48:51.4519839Z [3559/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\datasets\mnist.cpp.obj 2025-08-26T19:48:51.4845309Z [3560/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\imethod.cpp.obj 2025-08-26T19:48:51.6378802Z [3561/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\mps.cpp.obj 2025-08-26T19:48:51.8962762Z [3562/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\distributed.cpp.obj 2025-08-26T19:48:53.4970751Z [3563/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\random.cpp.obj 2025-08-26T19:48:53.6239620Z [3564/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\sequential.cpp.obj 2025-08-26T19:48:53.6453633Z [3565/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\stream.cpp.obj 2025-08-26T19:48:54.6782717Z [3566/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize.cpp.obj 2025-08-26T19:48:54.9288930Z [3567/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\init.cpp.obj 2025-08-26T19:48:55.0729302Z [3568/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\module.cpp.obj 2025-08-26T19:48:55.1990007Z [3569/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\_functions.cpp.obj 2025-08-26T19:48:55.5627656Z [3570/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\activation.cpp.obj 2025-08-26T19:48:57.1330663Z [3571/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\adaptive.cpp.obj 2025-08-26T19:48:57.3177743Z [3572/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\batchnorm.cpp.obj 2025-08-26T19:48:57.3363868Z [3573/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\normalization.cpp.obj 2025-08-26T19:48:58.3012448Z [3574/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\instancenorm.cpp.obj 2025-08-26T19:48:58.5215402Z [3575/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\conv.cpp.obj 2025-08-26T19:48:58.6095492Z [3576/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\dropout.cpp.obj 2025-08-26T19:48:58.8045964Z [3577/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\distance.cpp.obj 2025-08-26T19:48:59.2287332Z [3578/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\embedding.cpp.obj 2025-08-26T19:49:00.7951031Z [3579/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\fold.cpp.obj 2025-08-26T19:49:00.9395026Z [3580/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\linear.cpp.obj 2025-08-26T19:49:00.9732514Z [3581/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\loss.cpp.obj 2025-08-26T19:49:01.9472457Z [3582/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\padding.cpp.obj 2025-08-26T19:49:02.3131899Z [3583/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pixelshuffle.cpp.obj 2025-08-26T19:49:02.3817927Z [3584/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pooling.cpp.obj 2025-08-26T19:49:02.4582567Z [3585/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\rnn.cpp.obj 2025-08-26T19:49:02.8397421Z [3586/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\upsampling.cpp.obj 2025-08-26T19:49:04.3871861Z [3587/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\activation.cpp.obj 2025-08-26T19:49:04.4982163Z [3588/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\transformer.cpp.obj 2025-08-26T19:49:04.5988211Z [3589/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\container\functional.cpp.obj 2025-08-26T19:49:05.4134396Z [3590/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\adaptive.cpp.obj 2025-08-26T19:49:05.8151183Z [3591/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\batchnorm.cpp.obj 2025-08-26T19:49:05.9064027Z [3592/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\instancenorm.cpp.obj 2025-08-26T19:49:05.9282898Z [3593/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\embedding.cpp.obj 2025-08-26T19:49:06.4054849Z [3594/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\normalization.cpp.obj 2025-08-26T19:49:07.8606490Z [3595/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\dropout.cpp.obj 2025-08-26T19:49:07.9069542Z [3596/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\conv.cpp.obj 2025-08-26T19:49:08.0096509Z [3597/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\linear.cpp.obj 2025-08-26T19:49:08.8260890Z [3598/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\padding.cpp.obj 2025-08-26T19:49:09.3400433Z [3599/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\pooling.cpp.obj 2025-08-26T19:49:09.3817447Z [3600/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\rnn.cpp.obj 2025-08-26T19:49:09.4605657Z [3601/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\vision.cpp.obj 2025-08-26T19:49:10.0469292Z [3602/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\transformer.cpp.obj 2025-08-26T19:49:11.4922703Z [3603/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adam.cpp.obj 2025-08-26T19:49:11.5834000Z [3604/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adagrad.cpp.obj 2025-08-26T19:49:11.6587709Z [3605/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adamw.cpp.obj 2025-08-26T19:49:12.3072670Z [3606/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\lr_scheduler.cpp.obj 2025-08-26T19:49:12.4468794Z [3607/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\lbfgs.cpp.obj 2025-08-26T19:49:12.4775698Z [3608/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\step_lr.cpp.obj 2025-08-26T19:49:12.5158208Z [3609/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\reduce_on_plateau_scheduler.cpp.obj 2025-08-26T19:49:12.8247329Z [3610/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\optimizer.cpp.obj 2025-08-26T19:49:12.9880331Z [3611/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\rmsprop.cpp.obj 2025-08-26T19:49:13.0007614Z [3612/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\xpu.cpp.obj 2025-08-26T19:49:13.0796817Z [3613/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX2.cpp.obj 2025-08-26T19:49:13.0798196Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:13.0799940Z 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-08-26T19:49:13.1408456Z 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-08-26T19:49:13.1411004Z 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-08-26T19:49:13.1412228Z [3614/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\serialize.cpp.obj 2025-08-26T19:49:13.5835714Z [3615/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX2.cpp.obj 2025-08-26T19:49:13.5836866Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:13.5838149Z 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-08-26T19:49:13.6060230Z 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-08-26T19:49:13.6061860Z 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-08-26T19:49:13.6062995Z [3616/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX2.cpp.obj 2025-08-26T19:49:13.6064190Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:13.6065497Z 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-08-26T19:49:13.6501410Z 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-08-26T19:49:13.6503670Z 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-08-26T19:49:13.6505613Z [3617/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX2.cpp.obj 2025-08-26T19:49:13.6507555Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:13.6509649Z 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-08-26T19:49:13.7813946Z 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-08-26T19:49:13.7816791Z 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-08-26T19:49:13.7818828Z [3618/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\sgd.cpp.obj 2025-08-26T19:49:13.9388022Z [3619/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX2.cpp.obj 2025-08-26T19:49:13.9390217Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:13.9392602Z 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-08-26T19:49:14.1127366Z 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-08-26T19:49:14.1128998Z 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-08-26T19:49:14.1130369Z [3620/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:14.1131636Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:14.1133074Z 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-08-26T19:49:14.4788163Z 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-08-26T19:49:14.4790445Z 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-08-26T19:49:14.4791690Z [3621/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:14.4792805Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:14.4794130Z 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-08-26T19:49:14.5301469Z 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-08-26T19:49:14.5305035Z 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-08-26T19:49:14.5307255Z [3622/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX2.cpp.obj 2025-08-26T19:49:14.5308571Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:14.5310055Z 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-08-26T19:49:14.5525373Z 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-08-26T19:49:14.5527928Z 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-08-26T19:49:14.5530081Z [3623/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:14.5532203Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:14.5534590Z 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-08-26T19:49:14.6603896Z 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-08-26T19:49:14.6605296Z 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-08-26T19:49:14.6606496Z [3624/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:14.6607733Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:14.6609524Z 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-08-26T19:49:14.6856773Z 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-08-26T19:49:14.6858199Z 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-08-26T19:49:14.6859649Z [3625/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:14.6860885Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:14.6862259Z 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-08-26T19:49:14.8039926Z 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-08-26T19:49:14.8042479Z 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-08-26T19:49:14.8044954Z [3626/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:14.8047013Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:14.8049468Z 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-08-26T19:49:15.1984466Z 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-08-26T19:49:15.1986557Z 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-08-26T19:49:15.1988750Z [3627/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX2.cpp.obj 2025-08-26T19:49:15.1990751Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:15.1993137Z 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-08-26T19:49:15.3403231Z 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-08-26T19:49:15.3405763Z 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-08-26T19:49:15.3408401Z [3628/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:15.3410475Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:15.3412928Z 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-08-26T19:49:15.5085513Z 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-08-26T19:49:15.5087305Z 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-08-26T19:49:15.5089442Z [3629/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:15.5091428Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:15.5094383Z 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-08-26T19:49:15.5426553Z 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-08-26T19:49:15.5428898Z 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-08-26T19:49:15.5430935Z [3630/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:15.5433172Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:15.5435472Z 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-08-26T19:49:15.7862099Z 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-08-26T19:49:15.7864104Z 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-08-26T19:49:15.7865980Z [3631/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:15.7867704Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:15.7869718Z 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-08-26T19:49:15.8003652Z 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-08-26T19:49:15.8006190Z 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-08-26T19:49:15.8008345Z [3632/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:15.8010426Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:15.8012952Z 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-08-26T19:49:15.8435871Z 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-08-26T19:49:15.8437328Z 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-08-26T19:49:15.8438531Z [3633/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\input-archive.cpp.obj 2025-08-26T19:49:15.8876541Z [3634/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\output-archive.cpp.obj 2025-08-26T19:49:15.9287610Z [3635/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:15.9289954Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:15.9292567Z 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-08-26T19:49:16.1796966Z 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-08-26T19:49:16.1799487Z 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-08-26T19:49:16.1801926Z [3636/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX2.cpp.obj 2025-08-26T19:49:16.1804067Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:16.1806478Z 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-08-26T19:49:16.2372224Z 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-08-26T19:49:16.2374794Z 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-08-26T19:49:16.2376873Z [3637/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:16.2378940Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:16.2381428Z 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-08-26T19:49:16.4860805Z 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-08-26T19:49:16.4862786Z 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-08-26T19:49:16.4864482Z [3638/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:16.4866326Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:16.4868531Z 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-08-26T19:49:16.4932986Z 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-08-26T19:49:16.4934423Z 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-08-26T19:49:16.4935629Z [3639/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:16.4936719Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:16.4938329Z 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-08-26T19:49:16.5641985Z 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-08-26T19:49:16.5643520Z 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-08-26T19:49:16.5644744Z [3640/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:16.5646044Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:16.5648387Z 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-08-26T19:49:16.7324977Z 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-08-26T19:49:16.7327414Z 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-08-26T19:49:16.7329500Z [3641/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:16.7331545Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:16.7333958Z 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-08-26T19:49:16.7719673Z 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-08-26T19:49:16.7722297Z 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-08-26T19:49:16.7724671Z [3642/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:16.7726932Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:16.9452203Z 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-08-26T19:49:16.9454810Z 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-08-26T19:49:16.9457284Z 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-08-26T19:49:16.9459461Z [3643/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:16.9461577Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:16.9463983Z 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-08-26T19:49:16.9561311Z 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-08-26T19:49:16.9562746Z 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-08-26T19:49:16.9564357Z [3644/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:16.9566709Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:16.9569141Z 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-08-26T19:49:17.1317082Z 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-08-26T19:49:17.1319480Z 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-08-26T19:49:17.1321481Z [3645/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:17.1323510Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:17.1336424Z 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-08-26T19:49:17.2516845Z 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-08-26T19:49:17.2519361Z 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-08-26T19:49:17.2521381Z [3646/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:17.2523328Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:17.2525671Z 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-08-26T19:49:17.3601265Z 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-08-26T19:49:17.3603761Z 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-08-26T19:49:17.3605857Z [3647/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:17.3607738Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:17.3610399Z 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-08-26T19:49:17.3766469Z 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-08-26T19:49:17.3769299Z 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-08-26T19:49:17.3771605Z [3648/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:17.3773669Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:17.3776168Z 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-08-26T19:49:17.3842947Z 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-08-26T19:49:17.3845752Z 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-08-26T19:49:17.3847950Z [3649/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:17.3850109Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:17.3852594Z 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-08-26T19:49:17.4759694Z 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-08-26T19:49:17.4762231Z 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-08-26T19:49:17.4764360Z [3650/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:17.4766428Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:17.4768722Z 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-08-26T19:49:17.8493356Z 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-08-26T19:49:17.8495853Z 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-08-26T19:49:17.8498065Z [3651/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:17.8500098Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:17.8502483Z 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-08-26T19:49:17.8677200Z 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-08-26T19:49:17.8678546Z 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-08-26T19:49:17.8679718Z [3652/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:17.8681532Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:17.8683849Z 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-08-26T19:49:18.0551972Z 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-08-26T19:49:18.0554322Z 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-08-26T19:49:18.0556515Z [3653/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:18.0558389Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:18.0560632Z 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-08-26T19:49:18.1035234Z 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-08-26T19:49:18.1037628Z 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-08-26T19:49:18.1039641Z [3654/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:18.1041578Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:18.1043805Z 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-08-26T19:49:18.1785565Z 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-08-26T19:49:18.1786898Z 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-08-26T19:49:18.1788041Z [3655/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:18.1789163Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:18.2244279Z 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-08-26T19:49:18.2246902Z 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-08-26T19:49:18.2249369Z 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-08-26T19:49:18.2251457Z [3656/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX2.cpp.obj 2025-08-26T19:49:18.2253417Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:18.2255880Z 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-08-26T19:49:18.2807497Z 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-08-26T19:49:18.2810021Z 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-08-26T19:49:18.2812200Z [3657/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:18.2815359Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:18.2817736Z 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-08-26T19:49:18.4779560Z 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-08-26T19:49:18.4781103Z 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-08-26T19:49:18.4782318Z [3658/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:18.4783633Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:18.5654920Z 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-08-26T19:49:18.5656479Z 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-08-26T19:49:18.5658223Z 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-08-26T19:49:18.5659462Z [3659/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:18.5660540Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:18.5662345Z 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-08-26T19:49:18.6903751Z 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-08-26T19:49:18.6906436Z 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-08-26T19:49:18.6908319Z [3660/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:18.6910214Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:18.6912240Z 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-08-26T19:49:18.8000681Z 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-08-26T19:49:18.8002150Z 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-08-26T19:49:18.8003256Z [3661/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:18.8836179Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:18.8838942Z [3662/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:18.9963441Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:18.9965372Z [3663/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:18.9967365Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:18.9969689Z 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-08-26T19:49:19.1053295Z 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-08-26T19:49:19.1054799Z 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-08-26T19:49:19.1056034Z [3664/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:19.1057211Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:19.1058511Z 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-08-26T19:49:19.1168680Z 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-08-26T19:49:19.1170288Z 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-08-26T19:49:19.1171722Z [3665/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:19.1172980Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:19.1174428Z 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-08-26T19:49:19.1417669Z 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-08-26T19:49:19.1420249Z 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-08-26T19:49:19.1422499Z [3666/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:19.1424490Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:19.1426873Z 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-08-26T19:49:19.4948652Z 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-08-26T19:49:19.4951085Z 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-08-26T19:49:19.4953427Z [3667/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:19.4955697Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:19.4958021Z 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-08-26T19:49:19.6735981Z 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-08-26T19:49:19.6737408Z 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-08-26T19:49:19.6738694Z [3668/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:19.6739928Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:19.6741260Z 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-08-26T19:49:19.6742656Z 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-08-26T19:49:19.6744041Z 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-08-26T19:49:19.6745349Z 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-08-26T19:49:19.6746569Z 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-08-26T19:49:19.6748435Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-08-26T19:49:19.6750918Z 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-08-26T19:49:19.6752315Z with 2025-08-26T19:49:19.6752517Z [ 2025-08-26T19:49:19.6752915Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-08-26T19:49:19.6753356Z ] 2025-08-26T19:49:19.6755059Z 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-08-26T19:49:19.6758507Z 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-08-26T19:49:19.6760814Z with 2025-08-26T19:49:19.6761019Z [ 2025-08-26T19:49:19.6761372Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-08-26T19:49:19.6761813Z ] 2025-08-26T19:49:19.6763726Z 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-08-26T19:49:19.6765687Z with 2025-08-26T19:49:19.6765877Z [ 2025-08-26T19:49:19.6766288Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t, 2025-08-26T19:49:19.6766778Z data_t=at::vec::AVX2::Vectorized, 2025-08-26T19:49:19.6767639Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-08-26T19:49:19.6768735Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-08-26T19:49:19.6769432Z ] 2025-08-26T19:49:19.6770464Z 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-08-26T19:49:19.6771627Z with 2025-08-26T19:49:19.6771825Z [ 2025-08-26T19:49:19.6772083Z scalar_t=float, 2025-08-26T19:49:19.6772657Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &), 2025-08-26T19:49:19.6773485Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-08-26T19:49:19.6774106Z ] 2025-08-26T19:49:19.6774981Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(177): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-08-26T19:49:19.6775953Z with 2025-08-26T19:49:19.6776247Z [ 2025-08-26T19:49:19.7314293Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-08-26T19:49:19.7314963Z ] 2025-08-26T19:49:19.7315523Z [3669/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:19.7316707Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:19.7318278Z 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-08-26T19:49:19.7877396Z 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-08-26T19:49:19.7879991Z 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-08-26T19:49:19.7882173Z [3670/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX2.cpp.obj 2025-08-26T19:49:19.7884515Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:19.7886939Z 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-08-26T19:49:19.8234246Z 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-08-26T19:49:19.8235617Z 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-08-26T19:49:19.8236764Z [3671/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:19.8804313Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:19.8806393Z [3672/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:19.9887135Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:19.9888297Z [3673/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:19.9889326Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:19.9890725Z 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-08-26T19:49:20.1104804Z 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-08-26T19:49:20.1107506Z 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-08-26T19:49:20.1109726Z [3674/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:20.1111853Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:20.1114378Z 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-08-26T19:49:20.2002666Z 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-08-26T19:49:20.2005401Z 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-08-26T19:49:20.2007336Z [3675/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:20.4331767Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:20.4332943Z [3676/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:20.4334214Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:20.4335802Z 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-08-26T19:49:20.5342562Z 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-08-26T19:49:20.5345059Z 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-08-26T19:49:20.5347502Z 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-08-26T19:49:20.5349937Z [3677/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:20.5351953Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:20.5353413Z 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-08-26T19:49:20.6852829Z 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-08-26T19:49:20.6855353Z 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-08-26T19:49:20.6857427Z [3678/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:20.6859450Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:20.6861861Z 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-08-26T19:49:20.7518317Z 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-08-26T19:49:20.7519641Z 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-08-26T19:49:20.7520765Z [3679/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX2.cpp.obj 2025-08-26T19:49:20.7521898Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:20.7523197Z 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-08-26T19:49:20.8004336Z 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-08-26T19:49:20.8005808Z 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-08-26T19:49:20.8006873Z [3680/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX512.cpp.obj 2025-08-26T19:49:20.8181403Z [3681/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX2.cpp.obj 2025-08-26T19:49:20.8182535Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:20.8184146Z 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-08-26T19:49:20.8227233Z 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-08-26T19:49:20.8229449Z 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-08-26T19:49:20.8231441Z [3682/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:20.8232661Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:20.8234040Z 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-08-26T19:49:20.8747991Z 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-08-26T19:49:20.8750500Z 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-08-26T19:49:20.8752661Z [3683/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX2.cpp.obj 2025-08-26T19:49:20.8754539Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:49:20.8755982Z 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-08-26T19:49:21.1585483Z 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-08-26T19:49:21.1588511Z 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-08-26T19:49:21.1590949Z [3684/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX512.cpp.obj 2025-08-26T19:49:21.2745902Z [3685/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX512.cpp.obj 2025-08-26T19:49:21.3811826Z [3686/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX512.cpp.obj 2025-08-26T19:49:21.5504649Z [3687/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX512.cpp.obj 2025-08-26T19:49:21.6733592Z [3688/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:21.8164489Z [3689/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:21.8551289Z [3690/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:21.9141421Z [3691/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:21.9164120Z [3692/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX512.cpp.obj 2025-08-26T19:49:22.0078296Z [3693/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:22.2756990Z [3694/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:22.4851130Z [3695/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:22.5030614Z [3696/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX512.cpp.obj 2025-08-26T19:49:22.6182165Z [3697/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:22.7855328Z [3698/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:22.8452797Z [3699/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:22.9555389Z [3700/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:23.0848111Z [3701/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX512.cpp.obj 2025-08-26T19:49:23.1896673Z [3702/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:23.2247670Z [3703/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:23.2570817Z [3704/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:23.5529588Z [3705/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:23.6664118Z [3706/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:23.6939145Z [3707/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:23.8033992Z [3708/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:23.9211714Z [3709/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:23.9880823Z [3710/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:24.1499200Z [3711/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:24.2559681Z [3712/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:24.2711328Z [3713/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:24.3085714Z [3714/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:24.3278129Z [3715/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:24.4047566Z [3716/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:24.8522203Z [3717/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:24.8684285Z [3718/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:25.0811722Z [3719/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:25.1695866Z [3720/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX512.cpp.obj 2025-08-26T19:49:25.1984287Z [3721/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:25.2101192Z [3722/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:25.2405736Z [3723/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:25.3587343Z [3724/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:25.5991753Z [3725/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:25.7463374Z [3726/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:25.7920839Z [3727/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:25.8069017Z [3728/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:26.1076270Z [3729/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:26.1214491Z [3730/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:26.1766301Z [3731/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:26.1961232Z [3732/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:26.4754384Z [3733/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:26.7196564Z [3734/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:26.7198646Z 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-08-26T19:49:26.7200833Z 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-08-26T19:49:26.7203881Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-08-26T19:49:26.7210381Z 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-08-26T19:49:26.7213254Z with 2025-08-26T19:49:26.7213610Z [ 2025-08-26T19:49:26.7214976Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-08-26T19:49:26.7215730Z ] 2025-08-26T19:49:26.7218150Z 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-08-26T19:49:26.7224300Z 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-08-26T19:49:26.7227808Z with 2025-08-26T19:49:26.7228134Z [ 2025-08-26T19:49:26.7228818Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-08-26T19:49:26.7229644Z ] 2025-08-26T19:49:26.7232777Z 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-08-26T19:49:26.7236074Z with 2025-08-26T19:49:26.7236445Z [ 2025-08-26T19:49:26.7237083Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t, 2025-08-26T19:49:26.7237962Z data_t=at::vec::AVX512::Vectorized, 2025-08-26T19:49:26.7239252Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-08-26T19:49:26.7241043Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-08-26T19:49:26.7242069Z ] 2025-08-26T19:49:26.7243785Z 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-08-26T19:49:26.7246065Z with 2025-08-26T19:49:26.7246469Z [ 2025-08-26T19:49:26.7246840Z scalar_t=float, 2025-08-26T19:49:26.7247912Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &), 2025-08-26T19:49:26.7562339Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-08-26T19:49:26.7563481Z ] 2025-08-26T19:49:26.7565061Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(177): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-08-26T19:49:26.7566838Z with 2025-08-26T19:49:26.7567213Z [ 2025-08-26T19:49:26.7568415Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-08-26T19:49:26.7569562Z ] 2025-08-26T19:49:26.7570566Z [3735/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX512.cpp.obj 2025-08-26T19:49:26.8396814Z [3736/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:26.8514780Z [3737/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:26.8974652Z [3738/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:26.9338501Z [3739/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:27.1895712Z [3740/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:27.2143970Z [3741/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:27.4241669Z [3742/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:27.4982075Z [3743/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:27.7881184Z 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-08-26T19:49:27.7882453Z [3744/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:27.8172133Z [3745/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:27.9361511Z [3746/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX512.cpp.obj 2025-08-26T19:49:27.9398676Z [3747/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX512.cpp.obj 2025-08-26T19:49:27.9818495Z [3748/7555] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX512.cpp.obj 2025-08-26T19:49:28.1175928Z [3749/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAContext.cpp.obj 2025-08-26T19:49:28.6910030Z [3750/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\EmptyTensor.cpp.obj 2025-08-26T19:49:28.7061425Z [3751/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CuSparseHandlePool.cpp.obj 2025-08-26T19:49:28.8339723Z [3752/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Exceptions.cpp.obj 2025-08-26T19:49:28.8993804Z [3753/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseDescriptors.cpp.obj 2025-08-26T19:49:28.9277420Z [3754/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CachingHostAllocator.cpp.obj 2025-08-26T19:49:29.0889664Z [3755/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_basic.cpp.obj 2025-08-26T19:49:29.1083557Z [3756/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_complex.cpp.obj 2025-08-26T19:49:29.4314336Z [3757/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\PeerToPeerAccess.cpp.obj 2025-08-26T19:49:29.6964447Z [3758/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\LazyNVRTC.cpp.obj 2025-08-26T19:49:29.7313638Z [3759/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGeneratorImpl.cpp.obj 2025-08-26T19:49:29.8008706Z [3760/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGraph.cpp.obj 2025-08-26T19:49:29.9460588Z [3761/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\CUDAHooks.cpp.obj 2025-08-26T19:49:30.1798354Z [3762/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cpp.obj 2025-08-26T19:49:30.1976127Z [3763/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Resize.cpp.obj 2025-08-26T19:49:30.2456525Z [3764/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cpp.obj 2025-08-26T19:49:30.5454506Z [3765/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvPlaceholders.cpp.obj 2025-08-26T19:49:30.8331453Z [3766/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\AffineGridGenerator.cpp.obj 2025-08-26T19:49:30.8595846Z [3767/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\BatchNorm.cpp.obj 2025-08-26T19:49:31.0509030Z [3768/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvShared.cpp.obj 2025-08-26T19:49:31.3724121Z [3769/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v7.cpp.obj 2025-08-26T19:49:31.3871840Z [3770/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\GridSampler.cpp.obj 2025-08-26T19:49:31.5980180Z [3771/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v8.cpp.obj 2025-08-26T19:49:31.6962103Z [3772/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\LossCTC.cpp.obj 2025-08-26T19:49:31.9453404Z [3773/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\BatchNorm_miopen.cpp.obj 2025-08-26T19:49:32.0769257Z [3774/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\RNN.cpp.obj 2025-08-26T19:49:32.2572582Z [3775/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\Conv_miopen.cpp.obj 2025-08-26T19:49:32.2726562Z [3776/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\RNN_miopen.cpp.obj 2025-08-26T19:49:33.3653719Z [3777/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\BinaryOps.cpp.obj 2025-08-26T19:49:34.6883077Z [3778/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerUtils.cpp.obj 2025-08-26T19:49:34.7156866Z [3779/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\MHA.cpp.obj 2025-08-26T19:49:34.8220084Z [3780/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cpp.obj 2025-08-26T19:49:35.7083011Z [3781/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Conv.cpp.obj 2025-08-26T19:49:35.7409480Z [3782/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvUnpackImpl.cpp.obj 2025-08-26T19:49:35.7982019Z [3783/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvPrepack.cpp.obj 2025-08-26T19:49:36.8871728Z [3784/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\sdp_utils.cpp.obj 2025-08-26T19:49:37.0281133Z [3785/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Linear.cpp.obj 2025-08-26T19:49:37.7647576Z [3786/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Handle.cpp.obj 2025-08-26T19:49:38.0815158Z [3787/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\cuSPARSELtOps.cpp.obj 2025-08-26T19:49:38.2118554Z [3788/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Pooling.cpp.obj 2025-08-26T19:49:38.2374665Z [3789/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearUnpackImpl.cpp.obj 2025-08-26T19:49:38.3424490Z [3790/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearPrepack.cpp.obj 2025-08-26T19:49:39.2831661Z [3791/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\AutocastRNN.cpp.obj 2025-08-26T19:49:39.2968804Z [3792/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\distributed\c10d\reducer_cuda.cpp.obj 2025-08-26T19:49:39.4131469Z [3793/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.cpp.obj 2025-08-26T19:49:40.0380567Z [3794/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Sleep.cu.obj 2025-08-26T19:49:40.4046856Z Sleep.cu 2025-08-26T19:49:40.4047291Z tmpxft_0000168c_00000000-7_Sleep.cudafe1.cpp 2025-08-26T19:49:40.4048328Z [3795/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Descriptors.cpp.obj 2025-08-26T19:49:41.1877085Z [3796/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Types.cpp.obj 2025-08-26T19:49:42.0221442Z [3797/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorFactories.cu.obj 2025-08-26T19:49:43.3513235Z TensorFactories.cu 2025-08-26T19:49:43.3513786Z tmpxft_000017c8_00000000-7_TensorFactories.cudafe1.cpp 2025-08-26T19:49:43.3514432Z [3798/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortKeys.cu.obj 2025-08-26T19:49:43.3564486Z cub-RadixSortKeys.cu 2025-08-26T19:49:43.3564949Z tmpxft_00000494_00000000-7_cub-RadixSortKeys.cudafe1.cpp 2025-08-26T19:49:43.3566179Z [3799/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-1.cu.obj 2025-08-26T19:49:43.4643039Z cub-RadixSortPairs-int32-1.cu 2025-08-26T19:49:43.4643799Z tmpxft_00001578_00000000-7_cub-RadixSortPairs-int32-1.cudafe1.cpp 2025-08-26T19:49:43.4645206Z [3800/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-f16-8.cu.obj 2025-08-26T19:49:43.7842400Z cub-RadixSortPairs-f16-8.cu 2025-08-26T19:49:43.7843143Z tmpxft_00001784_00000000-7_cub-RadixSortPairs-f16-8.cudafe1.cpp 2025-08-26T19:49:43.7844424Z [3801/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-2.cu.obj 2025-08-26T19:49:44.0722848Z cub-RadixSortPairs-int32-2.cu 2025-08-26T19:49:44.0723950Z tmpxft_000016f0_00000000-7_cub-RadixSortPairs-int32-2.cudafe1.cpp 2025-08-26T19:49:44.0725748Z [3802/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-4.cu.obj 2025-08-26T19:49:45.0902239Z cub-RadixSortPairs-int32-4.cu 2025-08-26T19:49:45.0902950Z tmpxft_000012c0_00000000-7_cub-RadixSortPairs-int32-4.cudafe1.cpp 2025-08-26T19:49:45.0904108Z [3803/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-1.cu.obj 2025-08-26T19:49:45.7511299Z cub-RadixSortPairs-int64-1.cu 2025-08-26T19:49:45.7512023Z tmpxft_000014d8_00000000-7_cub-RadixSortPairs-int64-1.cudafe1.cpp 2025-08-26T19:49:45.7513324Z [3804/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-2.cu.obj 2025-08-26T19:49:47.1097611Z cub-RadixSortPairs-int64-2.cu 2025-08-26T19:49:47.1098365Z tmpxft_000016f8_00000000-7_cub-RadixSortPairs-int64-2.cudafe1.cpp 2025-08-26T19:49:47.1099731Z [3805/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-4.cu.obj 2025-08-26T19:49:47.1933802Z cub-RadixSortPairs-int64-4.cu 2025-08-26T19:49:47.1934940Z tmpxft_00001314_00000000-7_cub-RadixSortPairs-int64-4.cudafe1.cpp 2025-08-26T19:49:47.1936279Z [3806/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-scalars.cu.obj 2025-08-26T19:49:47.2693326Z cub-RadixSortPairs-scalars.cu 2025-08-26T19:49:47.2693793Z tmpxft_000003ec_00000000-7_cub-RadixSortPairs-scalars.cudafe1.cpp 2025-08-26T19:49:47.2694509Z [3807/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint16-8.cu.obj 2025-08-26T19:49:47.4231184Z cub-RadixSortPairs-uint16-8.cu 2025-08-26T19:49:47.4231971Z tmpxft_00000ae4_00000000-7_cub-RadixSortPairs-uint16-8.cudafe1.cpp 2025-08-26T19:49:47.4233303Z [3808/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint32-8.cu.obj 2025-08-26T19:49:47.7252331Z cub-RadixSortPairs-uint32-8.cu 2025-08-26T19:49:47.7253439Z tmpxft_000017f0_00000000-7_cub-RadixSortPairs-uint32-8.cudafe1.cpp 2025-08-26T19:49:47.7255111Z [3809/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\IndexUtils.cu.obj 2025-08-26T19:49:47.8171888Z IndexUtils.cu 2025-08-26T19:49:47.8172751Z tmpxft_00001040_00000000-7_IndexUtils.cudafe1.cpp 2025-08-26T19:49:47.8173982Z [3810/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint64-8.cu.obj 2025-08-26T19:49:48.7662363Z cub-RadixSortPairs-uint64-8.cu 2025-08-26T19:49:48.7663585Z tmpxft_0000097c_00000000-7_cub-RadixSortPairs-uint64-8.cudafe1.cpp 2025-08-26T19:49:48.7664251Z [3811/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub.cu.obj 2025-08-26T19:49:49.8583767Z cub.cu 2025-08-26T19:49:49.8584068Z tmpxft_00001498_00000000-7_cub.cudafe1.cpp 2025-08-26T19:49:49.8584653Z [3812/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AbsKernel.cu.obj 2025-08-26T19:49:49.9212933Z AbsKernel.cu 2025-08-26T19:49:49.9213422Z tmpxft_000016b4_00000000-7_AbsKernel.cudafe1.cpp 2025-08-26T19:49:49.9214882Z [3813/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationEluKernel.cu.obj 2025-08-26T19:49:49.9765701Z ActivationEluKernel.cu 2025-08-26T19:49:49.9766351Z tmpxft_00001288_00000000-7_ActivationEluKernel.cudafe1.cpp 2025-08-26T19:49:49.9767564Z [3814/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGeluKernel.cu.obj 2025-08-26T19:49:50.2598446Z ActivationGeluKernel.cu 2025-08-26T19:49:50.2599112Z tmpxft_000017c8_00000000-7_ActivationGeluKernel.cudafe1.cpp 2025-08-26T19:49:50.2600374Z [3815/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGluKernel.cu.obj 2025-08-26T19:49:50.4336617Z ActivationGluKernel.cu 2025-08-26T19:49:50.4337254Z tmpxft_00001758_00000000-7_ActivationGluKernel.cudafe1.cpp 2025-08-26T19:49:50.4339118Z [3816/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardshrinkKernel.cu.obj 2025-08-26T19:49:50.5032031Z ActivationHardshrinkKernel.cu 2025-08-26T19:49:50.5033713Z tmpxft_000014f0_00000000-7_ActivationHardshrinkKernel.cudafe1.cpp 2025-08-26T19:49:50.5034950Z [3817/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\jiterator.cu.obj 2025-08-26T19:49:51.4407631Z jiterator.cu 2025-08-26T19:49:51.4408137Z tmpxft_000008d0_00000000-7_jiterator.cudafe1.cpp 2025-08-26T19:49:51.4409421Z [3818/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardsigmoidKernel.cu.obj 2025-08-26T19:49:52.5466792Z ActivationHardsigmoidKernel.cu 2025-08-26T19:49:52.5467254Z tmpxft_00000384_00000000-7_ActivationHardsigmoidKernel.cudafe1.cpp 2025-08-26T19:49:52.5468018Z [3819/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardswishKernel.cu.obj 2025-08-26T19:49:52.5772753Z ActivationHardswishKernel.cu 2025-08-26T19:49:52.5773815Z tmpxft_000010c4_00000000-7_ActivationHardswishKernel.cudafe1.cpp 2025-08-26T19:49:52.5775156Z [3820/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardtanhKernel.cu.obj 2025-08-26T19:49:52.6019617Z ActivationHardtanhKernel.cu 2025-08-26T19:49:52.6020058Z tmpxft_0000042c_00000000-7_ActivationHardtanhKernel.cudafe1.cpp 2025-08-26T19:49:52.6021143Z [3821/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLeakyReluKernel.cu.obj 2025-08-26T19:49:52.8379274Z ActivationLeakyReluKernel.cu 2025-08-26T19:49:52.8380021Z tmpxft_00000260_00000000-7_ActivationLeakyReluKernel.cudafe1.cpp 2025-08-26T19:49:52.8381349Z [3822/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLogSigmoidKernel.cu.obj 2025-08-26T19:49:53.0296696Z ActivationLogSigmoidKernel.cu 2025-08-26T19:49:53.0297477Z tmpxft_00001558_00000000-7_ActivationLogSigmoidKernel.cudafe1.cpp 2025-08-26T19:49:53.0298857Z [3823/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationMishKernel.cu.obj 2025-08-26T19:49:53.1697809Z ActivationMishKernel.cu 2025-08-26T19:49:53.1698600Z tmpxft_000011d0_00000000-7_ActivationMishKernel.cudafe1.cpp 2025-08-26T19:49:53.1701018Z [3824/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationPreluKernel.cu.obj 2025-08-26T19:49:54.1337906Z ActivationPreluKernel.cu 2025-08-26T19:49:54.1338449Z tmpxft_00000980_00000000-7_ActivationPreluKernel.cudafe1.cpp 2025-08-26T19:49:54.1340110Z [3825/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSiluKernel.cu.obj 2025-08-26T19:49:55.2315168Z ActivationSiluKernel.cu 2025-08-26T19:49:55.2315802Z tmpxft_00000084_00000000-7_ActivationSiluKernel.cudafe1.cpp 2025-08-26T19:49:55.2317089Z [3826/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftplusKernel.cu.obj 2025-08-26T19:49:55.3335661Z ActivationSoftplusKernel.cu 2025-08-26T19:49:55.3336309Z tmpxft_000005e0_00000000-7_ActivationSoftplusKernel.cudafe1.cpp 2025-08-26T19:49:55.3337062Z [3827/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftshrinkKernel.cu.obj 2025-08-26T19:49:55.3796924Z ActivationSoftshrinkKernel.cu 2025-08-26T19:49:55.3797735Z tmpxft_00000f8c_00000000-7_ActivationSoftshrinkKernel.cudafe1.cpp 2025-08-26T19:49:55.3799117Z [3828/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationThresholdKernel.cu.obj 2025-08-26T19:49:56.1936687Z ActivationThresholdKernel.cu 2025-08-26T19:49:56.1937428Z tmpxft_000016a0_00000000-7_ActivationThresholdKernel.cudafe1.cpp 2025-08-26T19:49:56.1938857Z [3829/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling.cu.obj 2025-08-26T19:49:56.3491269Z AdaptiveAveragePooling.cu 2025-08-26T19:49:56.3491969Z tmpxft_00001268_00000000-7_AdaptiveAveragePooling.cudafe1.cpp 2025-08-26T19:49:56.3493227Z [3830/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling3d.cu.obj 2025-08-26T19:49:56.5821070Z AdaptiveAveragePooling3d.cu 2025-08-26T19:49:56.5821782Z tmpxft_000012c0_00000000-7_AdaptiveAveragePooling3d.cudafe1.cpp 2025-08-26T19:49:56.5823145Z [3831/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling2d.cu.obj 2025-08-26T19:49:57.4766466Z AdaptiveMaxPooling2d.cu 2025-08-26T19:49:57.4767318Z tmpxft_00001128_00000000-7_AdaptiveMaxPooling2d.cudafe1.cpp 2025-08-26T19:49:57.4768791Z [3832/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling3d.cu.obj 2025-08-26T19:49:58.5029535Z AdaptiveMaxPooling3d.cu 2025-08-26T19:49:58.5030235Z tmpxft_000015bc_00000000-7_AdaptiveMaxPooling3d.cudafe1.cpp 2025-08-26T19:49:58.5031669Z [3833/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool3d.cu.obj 2025-08-26T19:49:58.5058912Z AveragePool3d.cu 2025-08-26T19:49:58.5059427Z tmpxft_000015a0_00000000-7_AveragePool3d.cudafe1.cpp 2025-08-26T19:49:58.5060631Z [3834/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool2d.cu.obj 2025-08-26T19:49:58.6092944Z AveragePool2d.cu 2025-08-26T19:49:58.6093505Z tmpxft_000016f0_00000000-7_AveragePool2d.cudafe1.cpp 2025-08-26T19:49:58.6094627Z [3835/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AmpKernels.cu.obj 2025-08-26T19:49:58.7907221Z AmpKernels.cu 2025-08-26T19:49:58.7907906Z tmpxft_00001480_00000000-7_AmpKernels.cudafe1.cpp 2025-08-26T19:49:58.7909272Z [3836/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryBitwiseOpsKernels.cu.obj 2025-08-26T19:49:59.0246443Z BinaryBitwiseOpsKernels.cu 2025-08-26T19:49:59.0247660Z tmpxft_00000848_00000000-7_BinaryBitwiseOpsKernels.cudafe1.cpp 2025-08-26T19:49:59.0249209Z [3837/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivFloorKernel.cu.obj 2025-08-26T19:49:59.2599331Z BinaryDivFloorKernel.cu 2025-08-26T19:49:59.2599948Z tmpxft_00000414_00000000-7_BinaryDivFloorKernel.cudafe1.cpp 2025-08-26T19:49:59.2601244Z [3838/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTrueKernel.cu.obj 2025-08-26T19:50:00.1951306Z BinaryDivTrueKernel.cu 2025-08-26T19:50:00.1951951Z tmpxft_00000e34_00000000-7_BinaryDivTrueKernel.cudafe1.cpp 2025-08-26T19:50:00.1953466Z [3839/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTruncKernel.cu.obj 2025-08-26T19:50:01.1927867Z BinaryDivTruncKernel.cu 2025-08-26T19:50:01.1928347Z tmpxft_00001518_00000000-7_BinaryDivTruncKernel.cudafe1.cpp 2025-08-26T19:50:01.1929070Z [3840/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryLogicalOpsKernels.cu.obj 2025-08-26T19:50:01.2225020Z BinaryLogicalOpsKernels.cu 2025-08-26T19:50:01.2225467Z tmpxft_00001548_00000000-7_BinaryLogicalOpsKernels.cudafe1.cpp 2025-08-26T19:50:01.2226182Z [3841/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryGeometricKernels.cu.obj 2025-08-26T19:50:01.2869909Z BinaryGeometricKernels.cu 2025-08-26T19:50:01.2872014Z tmpxft_000001a0_00000000-7_BinaryGeometricKernels.cudafe1.cpp 2025-08-26T19:50:01.2873258Z [3842/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscBackwardOpsKernels.cu.obj 2025-08-26T19:50:01.4749873Z BinaryMiscBackwardOpsKernels.cu 2025-08-26T19:50:01.4750790Z tmpxft_00001724_00000000-7_BinaryMiscBackwardOpsKernels.cudafe1.cpp 2025-08-26T19:50:01.4752087Z [3843/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscOpsKernels.cu.obj 2025-08-26T19:50:01.8207103Z BinaryMiscOpsKernels.cu 2025-08-26T19:50:01.8207817Z tmpxft_000017a0_00000000-7_BinaryMiscOpsKernels.cudafe1.cpp 2025-08-26T19:50:01.8209082Z [3844/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMulKernel.cu.obj 2025-08-26T19:50:01.9831610Z BinaryMulKernel.cu 2025-08-26T19:50:01.9832379Z tmpxft_0000127c_00000000-7_BinaryMulKernel.cudafe1.cpp 2025-08-26T19:50:01.9834689Z [3845/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryRemainderKernel.cu.obj 2025-08-26T19:50:02.8419811Z BinaryRemainderKernel.cu 2025-08-26T19:50:02.8420489Z tmpxft_0000146c_00000000-7_BinaryRemainderKernel.cudafe1.cpp 2025-08-26T19:50:02.8421762Z [3846/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryShiftOpsKernels.cu.obj 2025-08-26T19:50:04.2080568Z BinaryShiftOpsKernels.cu 2025-08-26T19:50:04.2081263Z tmpxft_00000d68_00000000-7_BinaryShiftOpsKernels.cudafe1.cpp 2025-08-26T19:50:04.2082824Z [3847/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareEQKernel.cu.obj 2025-08-26T19:50:04.3337538Z CompareEQKernel.cu 2025-08-26T19:50:04.3337907Z tmpxft_000016cc_00000000-7_CompareEQKernel.cudafe1.cpp 2025-08-26T19:50:04.3338538Z [3848/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CUDAScalar.cu.obj 2025-08-26T19:50:04.4871907Z CUDAScalar.cu 2025-08-26T19:50:04.4872399Z tmpxft_00001740_00000000-7_CUDAScalar.cudafe1.cpp 2025-08-26T19:50:04.4873571Z [3849/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareKernels.cu.obj 2025-08-26T19:50:04.5558281Z CompareKernels.cu 2025-08-26T19:50:04.5561261Z tmpxft_00000594_00000000-7_CompareKernels.cudafe1.cpp 2025-08-26T19:50:04.5562399Z [3850/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Bucketization.cu.obj 2025-08-26T19:50:04.6433293Z Bucketization.cu 2025-08-26T19:50:04.6433932Z tmpxft_00001668_00000000-7_Bucketization.cudafe1.cpp 2025-08-26T19:50:04.6435033Z [3851/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Col2Im.cu.obj 2025-08-26T19:50:05.3066595Z Col2Im.cu 2025-08-26T19:50:05.3070499Z tmpxft_000003bc_00000000-7_Col2Im.cudafe1.cpp 2025-08-26T19:50:05.3072416Z [3852/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ComplexKernel.cu.obj 2025-08-26T19:50:06.1875247Z ComplexKernel.cu 2025-08-26T19:50:06.1875821Z tmpxft_00000560_00000000-7_ComplexKernel.cudafe1.cpp 2025-08-26T19:50:06.1876921Z [3853/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ConvolutionMM2d.cu.obj 2025-08-26T19:50:07.1361463Z ConvolutionMM2d.cu 2025-08-26T19:50:07.1361850Z tmpxft_0000110c_00000000-7_ConvolutionMM2d.cudafe1.cpp 2025-08-26T19:50:07.1362661Z [3854/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CopysignKernel.cu.obj 2025-08-26T19:50:07.7218065Z CopysignKernel.cu 2025-08-26T19:50:07.7218678Z tmpxft_00001680_00000000-7_CopysignKernel.cudafe1.cpp 2025-08-26T19:50:07.7219789Z [3855/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Copy.cu.obj 2025-08-26T19:50:07.8209229Z Copy.cu 2025-08-26T19:50:07.8209636Z tmpxft_000017ec_00000000-7_Copy.cudafe1.cpp 2025-08-26T19:50:07.8210702Z [3856/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CrossKernel.cu.obj 2025-08-26T19:50:08.4142490Z CrossKernel.cu 2025-08-26T19:50:08.4143066Z tmpxft_000009d0_00000000-7_CrossKernel.cudafe1.cpp 2025-08-26T19:50:08.4144322Z [3857/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumminmaxKernel.cu.obj 2025-08-26T19:50:08.5557946Z CumminmaxKernel.cu 2025-08-26T19:50:08.5559055Z tmpxft_00000f5c_00000000-7_CumminmaxKernel.cudafe1.cpp 2025-08-26T19:50:08.5560605Z [3858/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumprodKernel.cu.obj 2025-08-26T19:50:09.2729492Z CumprodKernel.cu 2025-08-26T19:50:09.2730017Z tmpxft_00001388_00000000-7_CumprodKernel.cudafe1.cpp 2025-08-26T19:50:09.2731214Z [3859/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumsumKernel.cu.obj 2025-08-26T19:50:09.5897935Z CumsumKernel.cu 2025-08-26T19:50:09.5898476Z tmpxft_0000140c_00000000-7_CumsumKernel.cudafe1.cpp 2025-08-26T19:50:09.5908040Z [3860/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv2d.cu.obj 2025-08-26T19:50:10.4661181Z DepthwiseConv2d.cu 2025-08-26T19:50:10.4661751Z tmpxft_00000f08_00000000-7_DepthwiseConv2d.cudafe1.cpp 2025-08-26T19:50:10.4662995Z [3861/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv3d.cu.obj 2025-08-26T19:50:11.1368770Z DepthwiseConv3d.cu 2025-08-26T19:50:11.1369297Z tmpxft_00000ecc_00000000-7_DepthwiseConv3d.cudafe1.cpp 2025-08-26T19:50:11.1370591Z [3862/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool3d.cu.obj 2025-08-26T19:50:11.2319750Z DilatedMaxPool3d.cu 2025-08-26T19:50:11.2320373Z tmpxft_000016a0_00000000-7_DilatedMaxPool3d.cudafe1.cpp 2025-08-26T19:50:11.2321476Z [3863/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool2d.cu.obj 2025-08-26T19:50:11.7781588Z DilatedMaxPool2d.cu 2025-08-26T19:50:11.7782210Z tmpxft_00000520_00000000-7_DilatedMaxPool2d.cudafe1.cpp 2025-08-26T19:50:11.7783405Z [3864/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistanceKernel.cu.obj 2025-08-26T19:50:11.9578298Z DistanceKernel.cu 2025-08-26T19:50:11.9579172Z tmpxft_00000e98_00000000-7_DistanceKernel.cudafe1.cpp 2025-08-26T19:50:11.9580508Z [3865/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionBernoulli.cu.obj 2025-08-26T19:50:12.3301565Z DistributionBernoulli.cu 2025-08-26T19:50:12.3302300Z tmpxft_00001758_00000000-7_DistributionBernoulli.cudafe1.cpp 2025-08-26T19:50:12.3304210Z [3866/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionCauchyKernel.cu.obj 2025-08-26T19:50:12.4995612Z DistributionCauchyKernel.cu 2025-08-26T19:50:12.4997029Z tmpxft_000016b0_00000000-7_DistributionCauchyKernel.cudafe1.cpp 2025-08-26T19:50:12.4999199Z [3867/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionExponentialKernel.cu.obj 2025-08-26T19:50:13.4491064Z DistributionExponentialKernel.cu 2025-08-26T19:50:13.4491857Z tmpxft_00001788_00000000-7_DistributionExponentialKernel.cudafe1.cpp 2025-08-26T19:50:13.4493181Z [3868/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionGeometricKernel.cu.obj 2025-08-26T19:50:14.2298172Z DistributionGeometricKernel.cu 2025-08-26T19:50:14.2298690Z tmpxft_00000f8c_00000000-7_DistributionGeometricKernel.cudafe1.cpp 2025-08-26T19:50:14.2299525Z [3869/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionLogNormalKernel.cu.obj 2025-08-26T19:50:14.3217950Z DistributionLogNormalKernel.cu 2025-08-26T19:50:14.3218797Z tmpxft_00000df0_00000000-7_DistributionLogNormalKernel.cudafe1.cpp 2025-08-26T19:50:14.3220107Z [3870/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionNormal.cu.obj 2025-08-26T19:50:14.7467778Z DistributionNormal.cu 2025-08-26T19:50:14.7468383Z tmpxft_00000d64_00000000-7_DistributionNormal.cudafe1.cpp 2025-08-26T19:50:14.7469672Z [3871/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionRandomKernel.cu.obj 2025-08-26T19:50:15.0057571Z DistributionRandomKernel.cu 2025-08-26T19:50:15.0058309Z tmpxft_000016c4_00000000-7_DistributionRandomKernel.cudafe1.cpp 2025-08-26T19:50:15.0059475Z [3872/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionUniform.cu.obj 2025-08-26T19:50:15.4671537Z DistributionUniform.cu 2025-08-26T19:50:15.4672225Z tmpxft_00001520_00000000-7_DistributionUniform.cudafe1.cpp 2025-08-26T19:50:15.4673434Z [3873/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cu.obj 2025-08-26T19:50:16.2444938Z Distributions.cu 2025-08-26T19:50:16.2445471Z tmpxft_0000169c_00000000-7_Distributions.cudafe1.cpp 2025-08-26T19:50:16.2446514Z [3874/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Dropout.cu.obj 2025-08-26T19:50:17.4796433Z Dropout.cu 2025-08-26T19:50:17.4796934Z tmpxft_00001484_00000000-7_Dropout.cudafe1.cpp 2025-08-26T19:50:17.4798024Z [3875/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FillKernel.cu.obj 2025-08-26T19:50:18.1635138Z FillKernel.cu 2025-08-26T19:50:18.1635650Z tmpxft_00000f24_00000000-7_FillKernel.cudafe1.cpp 2025-08-26T19:50:18.1636975Z [3876/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Embedding.cu.obj 2025-08-26T19:50:18.3545532Z Embedding.cu 2025-08-26T19:50:18.3545941Z tmpxft_000017e4_00000000-7_Embedding.cudafe1.cpp 2025-08-26T19:50:18.3546732Z [3877/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FlattenIndicesKernel.cu.obj 2025-08-26T19:50:18.8227649Z FlattenIndicesKernel.cu 2025-08-26T19:50:18.8228339Z tmpxft_00000efc_00000000-7_FlattenIndicesKernel.cudafe1.cpp 2025-08-26T19:50:18.8229507Z [3878/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpList.cu.obj 2025-08-26T19:50:18.8927409Z ForeachBinaryOpList.cu 2025-08-26T19:50:18.8927813Z tmpxft_000016ec_00000000-7_ForeachBinaryOpList.cudafe1.cpp 2025-08-26T19:50:18.8928622Z [3879/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBag.cu.obj 2025-08-26T19:50:18.9733414Z EmbeddingBag.cu 2025-08-26T19:50:18.9733993Z tmpxft_00000fe8_00000000-7_EmbeddingBag.cudafe1.cpp 2025-08-26T19:50:18.9735385Z [3880/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBackwardKernel.cu.obj 2025-08-26T19:50:19.5762744Z EmbeddingBackwardKernel.cu 2025-08-26T19:50:19.5763984Z tmpxft_0000162c_00000000-7_EmbeddingBackwardKernel.cudafe1.cpp 2025-08-26T19:50:19.5766158Z [3881/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalar.cu.obj 2025-08-26T19:50:20.7769283Z ForeachBinaryOpScalar.cu 2025-08-26T19:50:20.7769966Z tmpxft_00001608_00000000-7_ForeachBinaryOpScalar.cudafe1.cpp 2025-08-26T19:50:20.7771336Z [3882/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarList.cu.obj 2025-08-26T19:50:21.4547279Z ForeachBinaryOpScalarList.cu 2025-08-26T19:50:21.4547757Z tmpxft_000016a8_00000000-7_ForeachBinaryOpScalarList.cudafe1.cpp 2025-08-26T19:50:21.4548619Z [3883/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarTensor.cu.obj 2025-08-26T19:50:21.6461996Z ForeachBinaryOpScalarTensor.cu 2025-08-26T19:50:21.6462479Z tmpxft_00001388_00000000-7_ForeachBinaryOpScalarTensor.cudafe1.cpp 2025-08-26T19:50:21.6463210Z [3884/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachPointwiseOp.cu.obj 2025-08-26T19:50:22.1808541Z ForeachPointwiseOp.cu 2025-08-26T19:50:22.1809162Z tmpxft_000013ac_00000000-7_ForeachPointwiseOp.cudafe1.cpp 2025-08-26T19:50:22.1810318Z [3885/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachReduceOp.cu.obj 2025-08-26T19:50:22.2544094Z ForeachReduceOp.cu 2025-08-26T19:50:22.2544808Z tmpxft_0000035c_00000000-7_ForeachReduceOp.cudafe1.cpp 2025-08-26T19:50:22.2546025Z [3886/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachTernaryOp.cu.obj 2025-08-26T19:50:22.3045815Z ForeachTernaryOp.cu 2025-08-26T19:50:22.3047283Z tmpxft_000014b4_00000000-7_ForeachTernaryOp.cudafe1.cpp 2025-08-26T19:50:22.3048475Z [3887/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachUnaryOp.cu.obj 2025-08-26T19:50:22.7779408Z ForeachUnaryOp.cu 2025-08-26T19:50:22.7779756Z tmpxft_00000750_00000000-7_ForeachUnaryOp.cudafe1.cpp 2025-08-26T19:50:22.7780427Z [3888/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool2d.cu.obj 2025-08-26T19:50:23.9427501Z FractionalMaxPool2d.cu 2025-08-26T19:50:23.9428159Z tmpxft_00000638_00000000-7_FractionalMaxPool2d.cudafe1.cpp 2025-08-26T19:50:23.9429478Z [3889/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FunctionOfAMatrixUtilsKernel.cu.obj 2025-08-26T19:50:23.9927020Z FunctionOfAMatrixUtilsKernel.cu 2025-08-26T19:50:23.9927849Z tmpxft_000016f0_00000000-7_FunctionOfAMatrixUtilsKernel.cudafe1.cpp 2025-08-26T19:50:23.9929393Z [3890/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool3d.cu.obj 2025-08-26T19:50:24.5832141Z FractionalMaxPool3d.cu 2025-08-26T19:50:24.5833413Z tmpxft_0000010c_00000000-7_FractionalMaxPool3d.cudafe1.cpp 2025-08-26T19:50:24.5834845Z [3891/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdagradKernel.cu.obj 2025-08-26T19:50:25.3231574Z FusedAdagradKernel.cu 2025-08-26T19:50:25.3232195Z tmpxft_00001638_00000000-7_FusedAdagradKernel.cudafe1.cpp 2025-08-26T19:50:25.3233393Z [3892/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamKernel.cu.obj 2025-08-26T19:50:25.3818280Z FusedAdamKernel.cu 2025-08-26T19:50:25.3818880Z tmpxft_00001750_00000000-7_FusedAdamKernel.cudafe1.cpp 2025-08-26T19:50:25.3820047Z [3893/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamWKernel.cu.obj 2025-08-26T19:50:25.5338758Z FusedAdamWKernel.cu 2025-08-26T19:50:25.5339372Z tmpxft_00000ae0_00000000-7_FusedAdamWKernel.cudafe1.cpp 2025-08-26T19:50:25.5340548Z [3894/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GcdLcmKernel.cu.obj 2025-08-26T19:50:25.6995020Z GcdLcmKernel.cu 2025-08-26T19:50:25.6995563Z tmpxft_0000142c_00000000-7_GcdLcmKernel.cudafe1.cpp 2025-08-26T19:50:25.6997164Z [3895/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedSgdKernel.cu.obj 2025-08-26T19:50:26.5309395Z FusedSgdKernel.cu 2025-08-26T19:50:26.5309953Z tmpxft_00000964_00000000-7_FusedSgdKernel.cudafe1.cpp 2025-08-26T19:50:26.5310977Z [3896/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cu.obj 2025-08-26T19:50:27.1452025Z GridSampler.cu 2025-08-26T19:50:27.1452558Z tmpxft_00001458_00000000-7_GridSampler.cudafe1.cpp 2025-08-26T19:50:27.1453725Z [3897/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GroupMM.cu.obj 2025-08-26T19:50:27.2819579Z GroupMM.cu 2025-08-26T19:50:27.2819888Z tmpxft_00001798_00000000-7_GroupMM.cudafe1.cpp 2025-08-26T19:50:27.2820496Z [3898/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IGammaKernel.cu.obj 2025-08-26T19:50:28.1247416Z IGammaKernel.cu 2025-08-26T19:50:28.1248578Z tmpxft_00000430_00000000-7_IGammaKernel.cudafe1.cpp 2025-08-26T19:50:28.1250133Z [3899/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cu.obj 2025-08-26T19:50:28.1528802Z IndexKernel.cu 2025-08-26T19:50:28.1529317Z tmpxft_000012d8_00000000-7_IndexKernel.cudafe1.cpp 2025-08-26T19:50:28.1530565Z [3900/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernelUtils.cu.obj 2025-08-26T19:50:28.6552224Z IndexKernelUtils.cu 2025-08-26T19:50:28.6552827Z tmpxft_00001128_00000000-7_IndexKernelUtils.cudafe1.cpp 2025-08-26T19:50:28.6554006Z [3901/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Im2Col.cu.obj 2025-08-26T19:50:29.2562673Z Im2Col.cu 2025-08-26T19:50:29.2563285Z tmpxft_00000c44_00000000-7_Im2Col.cudafe1.cpp 2025-08-26T19:50:29.2565502Z [3902/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Indexing.cu.obj 2025-08-26T19:50:29.7595517Z Indexing.cu 2025-08-26T19:50:29.7596062Z tmpxft_0000108c_00000000-7_Indexing.cudafe1.cpp 2025-08-26T19:50:29.7597157Z [3903/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Lerp.cu.obj 2025-08-26T19:50:30.6648352Z Lerp.cu 2025-08-26T19:50:30.6648672Z tmpxft_00000f80_00000000-7_Lerp.cudafe1.cpp 2025-08-26T19:50:30.6649504Z [3904/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebra.cu.obj 2025-08-26T19:50:30.8023216Z LinearAlgebra.cu 2025-08-26T19:50:30.8023864Z tmpxft_000013b4_00000000-7_LinearAlgebra.cudafe1.cpp 2025-08-26T19:50:30.8025257Z [3905/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogAddExpKernel.cu.obj 2025-08-26T19:50:31.6833687Z LogAddExpKernel.cu 2025-08-26T19:50:31.6834350Z tmpxft_00001224_00000000-7_LogAddExpKernel.cudafe1.cpp 2025-08-26T19:50:31.6835655Z [3906/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LegacyThrustHelpers.cu.obj 2025-08-26T19:50:32.0030083Z LegacyThrustHelpers.cu 2025-08-26T19:50:32.0030827Z tmpxft_00000354_00000000-7_LegacyThrustHelpers.cudafe1.cpp 2025-08-26T19:50:32.0032140Z [3907/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogcumsumexpKernel.cu.obj 2025-08-26T19:50:32.0385454Z LogcumsumexpKernel.cu 2025-08-26T19:50:32.0386150Z tmpxft_00001658_00000000-7_LogcumsumexpKernel.cudafe1.cpp 2025-08-26T19:50:32.0387859Z [3908/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Loss.cu.obj 2025-08-26T19:50:32.3485281Z Loss.cu 2025-08-26T19:50:32.3485861Z tmpxft_000008d4_00000000-7_Loss.cudafe1.cpp 2025-08-26T19:50:32.3487078Z [3909/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxMinElementwiseKernel.cu.obj 2025-08-26T19:50:32.4680439Z MaxMinElementwiseKernel.cu 2025-08-26T19:50:32.4681314Z tmpxft_00001658_00000000-7_MaxMinElementwiseKernel.cudafe1.cpp 2025-08-26T19:50:32.4683875Z [3910/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LossCTC.cu.obj 2025-08-26T19:50:34.1148498Z LossCTC.cu 2025-08-26T19:50:34.1149056Z tmpxft_000016cc_00000000-7_LossCTC.cudafe1.cpp 2025-08-26T19:50:34.1150252Z [3911/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxUnpooling.cu.obj 2025-08-26T19:50:35.0823386Z MaxUnpooling.cu 2025-08-26T19:50:35.0823997Z tmpxft_00000b7c_00000000-7_MaxUnpooling.cudafe1.cpp 2025-08-26T19:50:35.0825338Z [3912/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiLabelMarginCriterion.cu.obj 2025-08-26T19:50:35.1147366Z MultiLabelMarginCriterion.cu 2025-08-26T19:50:35.1148195Z tmpxft_000014a4_00000000-7_MultiLabelMarginCriterion.cudafe1.cpp 2025-08-26T19:50:35.1149572Z [3913/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiMarginLoss.cu.obj 2025-08-26T19:50:35.5842674Z MultiMarginLoss.cu 2025-08-26T19:50:35.5843341Z tmpxft_00001340_00000000-7_MultiMarginLoss.cudafe1.cpp 2025-08-26T19:50:35.5844582Z [3914/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultinomialKernel.cu.obj 2025-08-26T19:50:35.7412948Z MultinomialKernel.cu 2025-08-26T19:50:35.7413672Z tmpxft_00001644_00000000-7_MultinomialKernel.cudafe1.cpp 2025-08-26T19:50:35.7414428Z [3915/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose2d.cu.obj 2025-08-26T19:50:35.8283378Z NaiveConvolutionTranspose2d.cu 2025-08-26T19:50:37.4527719Z tmpxft_000010dc_00000000-7_NaiveConvolutionTranspose2d.cudafe1.cpp 2025-08-26T19:50:37.4528501Z [3916/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NLLLoss2d.cu.obj 2025-08-26T19:50:37.4529072Z NLLLoss2d.cu 2025-08-26T19:50:37.4529367Z tmpxft_00001688_00000000-7_NLLLoss2d.cudafe1.cpp 2025-08-26T19:50:37.4530043Z [3917/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose3d.cu.obj 2025-08-26T19:50:38.2950735Z NaiveConvolutionTranspose3d.cu 2025-08-26T19:50:38.2951271Z tmpxft_0000170c_00000000-7_NaiveConvolutionTranspose3d.cudafe1.cpp 2025-08-26T19:50:38.2952176Z [3918/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveDilatedConvolution.cu.obj 2025-08-26T19:50:38.4580702Z NaiveDilatedConvolution.cu 2025-08-26T19:50:38.4581415Z tmpxft_00000ec0_00000000-7_NaiveDilatedConvolution.cudafe1.cpp 2025-08-26T19:50:38.4582757Z [3919/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PowKernel.cu.obj 2025-08-26T19:50:38.4867165Z PowKernel.cu 2025-08-26T19:50:38.4867772Z tmpxft_000007c0_00000000-7_PowKernel.cudafe1.cpp 2025-08-26T19:50:38.4869052Z [3920/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PointwiseOpsKernel.cu.obj 2025-08-26T19:50:38.8961249Z PointwiseOpsKernel.cu 2025-08-26T19:50:38.8961690Z tmpxft_000015ac_00000000-7_PointwiseOpsKernel.cudafe1.cpp 2025-08-26T19:50:38.8962421Z [3921/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MixedDtypesLinear.cu.obj 2025-08-26T19:50:39.0639521Z MixedDtypesLinear.cu 2025-08-26T19:50:39.0640499Z tmpxft_000007d0_00000000-7_MixedDtypesLinear.cudafe1.cpp 2025-08-26T19:50:39.0642331Z [3922/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Normalization.cu.obj 2025-08-26T19:50:39.3681323Z Normalization.cu 2025-08-26T19:50:39.3681999Z tmpxft_0000147c_00000000-7_Normalization.cudafe1.cpp 2025-08-26T19:50:39.3683150Z [3923/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Nonzero.cu.obj 2025-08-26T19:50:40.6944644Z Nonzero.cu 2025-08-26T19:50:40.6944969Z tmpxft_00001558_00000000-7_Nonzero.cudafe1.cpp 2025-08-26T19:50:40.6945678Z [3924/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RNN.cu.obj 2025-08-26T19:50:41.2039009Z RNN.cu 2025-08-26T19:50:41.2039315Z tmpxft_00001114_00000000-7_RNN.cudafe1.cpp 2025-08-26T19:50:41.2039976Z [3925/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RecordStream.cu.obj 2025-08-26T19:50:41.6426015Z RecordStream.cu 2025-08-26T19:50:41.6426419Z tmpxft_000007d4_00000000-7_RecordStream.cudafe1.cpp 2025-08-26T19:50:41.6427044Z [3926/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Reduce.cu.obj 2025-08-26T19:50:41.6739929Z Reduce.cu 2025-08-26T19:50:41.6740467Z tmpxft_000017c0_00000000-7_Reduce.cudafe1.cpp 2025-08-26T19:50:41.6741659Z [3927/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RangeFactories.cu.obj 2025-08-26T19:50:41.7493730Z RangeFactories.cu 2025-08-26T19:50:41.7494390Z tmpxft_000012c8_00000000-7_RangeFactories.cudafe1.cpp 2025-08-26T19:50:41.7495530Z [3928/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Randperm.cu.obj 2025-08-26T19:50:41.7984979Z Randperm.cu 2025-08-26T19:50:41.7985501Z tmpxft_00001254_00000000-7_Randperm.cudafe1.cpp 2025-08-26T19:50:41.7986982Z [3929/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceAMinMaxKernel.cu.obj 2025-08-26T19:50:42.1716230Z ReduceAMinMaxKernel.cu 2025-08-26T19:50:42.1717523Z tmpxft_00001574_00000000-7_ReduceAMinMaxKernel.cudafe1.cpp 2025-08-26T19:50:42.1719018Z [3930/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMaxKernel.cu.obj 2025-08-26T19:50:43.6970509Z ReduceArgMaxKernel.cu 2025-08-26T19:50:43.6971078Z tmpxft_000016e4_00000000-7_ReduceArgMaxKernel.cudafe1.cpp 2025-08-26T19:50:43.6972147Z [3931/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMinKernel.cu.obj 2025-08-26T19:50:43.8122966Z ReduceArgMinKernel.cu 2025-08-26T19:50:43.8123392Z tmpxft_000002c4_00000000-7_ReduceArgMinKernel.cudafe1.cpp 2025-08-26T19:50:43.8124061Z [3932/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceLogicKernel.cu.obj 2025-08-26T19:50:44.3034128Z ReduceLogicKernel.cu 2025-08-26T19:50:44.3034522Z tmpxft_00001358_00000000-7_ReduceLogicKernel.cudafe1.cpp 2025-08-26T19:50:44.3035301Z [3933/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMaxValuesKernel.cu.obj 2025-08-26T19:50:44.3445742Z ReduceMaxValuesKernel.cu 2025-08-26T19:50:44.3446339Z tmpxft_000014f4_00000000-7_ReduceMaxValuesKernel.cudafe1.cpp 2025-08-26T19:50:44.3447588Z [3934/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMinValuesKernel.cu.obj 2025-08-26T19:50:44.4590008Z ReduceMinValuesKernel.cu 2025-08-26T19:50:44.4590721Z tmpxft_000009b4_00000000-7_ReduceMinValuesKernel.cudafe1.cpp 2025-08-26T19:50:44.4591908Z [3935/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceNormKernel.cu.obj 2025-08-26T19:50:44.4675313Z ReduceNormKernel.cu 2025-08-26T19:50:44.4675909Z tmpxft_00000664_00000000-7_ReduceNormKernel.cudafe1.cpp 2025-08-26T19:50:44.4677076Z [3936/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMomentKernel.cu.obj 2025-08-26T19:50:44.8345739Z ReduceMomentKernel.cu 2025-08-26T19:50:44.8346500Z tmpxft_000014cc_00000000-7_ReduceMomentKernel.cudafe1.cpp 2025-08-26T19:50:44.8366910Z [3937/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceSumProdKernel.cu.obj 2025-08-26T19:50:46.5399495Z ReduceSumProdKernel.cu 2025-08-26T19:50:46.5399958Z tmpxft_00000adc_00000000-7_ReduceSumProdKernel.cudafe1.cpp 2025-08-26T19:50:46.5400695Z [3938/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RenormKernel.cu.obj 2025-08-26T19:50:47.0218373Z RenormKernel.cu 2025-08-26T19:50:47.0218959Z tmpxft_000010cc_00000000-7_RenormKernel.cudafe1.cpp 2025-08-26T19:50:47.0220189Z [3939/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReflectionPad.cu.obj 2025-08-26T19:50:47.5808907Z ReflectionPad.cu 2025-08-26T19:50:47.5809540Z tmpxft_0000124c_00000000-7_ReflectionPad.cudafe1.cpp 2025-08-26T19:50:47.5810689Z [3940/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Repeat.cu.obj 2025-08-26T19:50:47.7047093Z Repeat.cu 2025-08-26T19:50:47.7047603Z tmpxft_00001040_00000000-7_Repeat.cudafe1.cpp 2025-08-26T19:50:47.7048766Z [3941/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReplicationPadding.cu.obj 2025-08-26T19:50:48.0527498Z ReplicationPadding.cu 2025-08-26T19:50:48.0528138Z tmpxft_0000020c_00000000-7_ReplicationPadding.cudafe1.cpp 2025-08-26T19:50:48.0529269Z [3942/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RreluWithNoise.cu.obj 2025-08-26T19:50:48.1164793Z RreluWithNoise.cu 2025-08-26T19:50:48.1165385Z tmpxft_00001260_00000000-7_RreluWithNoise.cudafe1.cpp 2025-08-26T19:50:48.1167073Z [3943/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScaledGroupMM.cu.obj 2025-08-26T19:50:49.2382653Z ScaledGroupMM.cu 2025-08-26T19:50:49.2383283Z tmpxft_0000060c_00000000-7_ScaledGroupMM.cudafe1.cpp 2025-08-26T19:50:49.2384489Z [3944/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RowwiseScaledMM.cu.obj 2025-08-26T19:50:50.2049162Z RowwiseScaledMM.cu 2025-08-26T19:50:50.2049870Z tmpxft_00001524_00000000-7_RowwiseScaledMM.compute_89.cudafe1.cpp 2025-08-26T19:50:50.2051183Z [3945/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScatterGatherKernel.cu.obj 2025-08-26T19:50:50.9467957Z ScatterGatherKernel.cu 2025-08-26T19:50:50.9468359Z tmpxft_00001008_00000000-7_ScatterGatherKernel.cudafe1.cpp 2025-08-26T19:50:50.9469002Z [3946/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Shape.cu.obj 2025-08-26T19:50:51.1533940Z Shape.cu 2025-08-26T19:50:51.1534225Z tmpxft_000016c0_00000000-7_Shape.cudafe1.cpp 2025-08-26T19:50:51.1534838Z [3947/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SoftMax.cu.obj 2025-08-26T19:50:51.6537979Z SoftMax.cu 2025-08-26T19:50:51.6538379Z tmpxft_00000b84_00000000-7_SoftMax.cudafe1.cpp 2025-08-26T19:50:51.6539125Z [3948/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SegmentReduce.cu.obj 2025-08-26T19:50:51.9047305Z SegmentReduce.cu 2025-08-26T19:50:51.9047857Z tmpxft_000015e4_00000000-7_SegmentReduce.cudafe1.cpp 2025-08-26T19:50:51.9048977Z [3949/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cu.obj 2025-08-26T19:50:52.4512335Z Sort.cu 2025-08-26T19:50:52.4513187Z tmpxft_000014a8_00000000-7_Sort.cudafe1.cpp 2025-08-26T19:50:52.4514312Z [3950/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortImpl.cu.obj 2025-08-26T19:50:52.7336720Z SortImpl.cu 2025-08-26T19:50:52.7337233Z tmpxft_000013ec_00000000-7_SortImpl.cudafe1.cpp 2025-08-26T19:50:52.7338320Z [3951/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cu.obj 2025-08-26T19:50:53.0599557Z Sorting.cu 2025-08-26T19:50:53.0599994Z tmpxft_000013c4_00000000-7_Sorting.cudafe1.cpp 2025-08-26T19:50:53.0600620Z [3952/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortStable.cu.obj 2025-08-26T19:50:54.0221433Z SortStable.cu 2025-08-26T19:50:54.0222018Z tmpxft_00000480_00000000-7_SortStable.cudafe1.cpp 2025-08-26T19:50:54.0223194Z [3953/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseMM.cu.obj 2025-08-26T19:50:54.2005014Z SparseMM.cu 2025-08-26T19:50:54.2005325Z tmpxft_00000924_00000000-7_SparseMM.cudafe1.cpp 2025-08-26T19:50:54.2006074Z [3954/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cu.obj 2025-08-26T19:50:54.2998818Z SpectralOps.cu 2025-08-26T19:50:54.2999319Z tmpxft_00001730_00000000-7_SpectralOps.cudafe1.cpp 2025-08-26T19:50:54.3000695Z [3955/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseBinaryOpIntersectionKernel.cu.obj 2025-08-26T19:50:54.5876290Z SparseBinaryOpIntersectionKernel.cu 2025-08-26T19:50:54.5877182Z tmpxft_000013b4_00000000-7_SparseBinaryOpIntersectionKernel.cudafe1.cpp 2025-08-26T19:50:54.5878457Z [3956/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\StepKernel.cu.obj 2025-08-26T19:50:55.5211707Z StepKernel.cu 2025-08-26T19:50:55.5212696Z tmpxft_00001338_00000000-7_StepKernel.cudafe1.cpp 2025-08-26T19:50:55.5213864Z [3957/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cu.obj 2025-08-26T19:50:55.9551081Z TensorCompare.cu 2025-08-26T19:50:55.9551614Z tmpxft_000000c0_00000000-7_TensorCompare.cudafe1.cpp 2025-08-26T19:50:55.9552714Z [3958/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SummaryOps.cu.obj 2025-08-26T19:50:57.3119978Z SummaryOps.cu 2025-08-26T19:50:57.3120365Z tmpxft_00000f78_00000000-7_SummaryOps.cudafe1.cpp 2025-08-26T19:50:57.3121080Z [3959/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShape.cu.obj 2025-08-26T19:50:57.4442227Z TensorShape.cu 2025-08-26T19:50:57.4442543Z tmpxft_00001068_00000000-7_TensorShape.cudafe1.cpp 2025-08-26T19:50:57.4443228Z [3960/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cu.obj 2025-08-26T19:50:57.4769238Z TensorModeKernel.cu 2025-08-26T19:50:57.4769607Z tmpxft_00000e20_00000000-7_TensorModeKernel.cudafe1.cpp 2025-08-26T19:50:57.4770294Z [3961/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTransformations.cu.obj 2025-08-26T19:50:57.8013618Z TensorTransformations.cu 2025-08-26T19:50:57.8014316Z tmpxft_00001058_00000000-7_TensorTransformations.cudafe1.cpp 2025-08-26T19:50:57.8016744Z [3962/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TriangularOps.cu.obj 2025-08-26T19:50:58.0365404Z TriangularOps.cu 2025-08-26T19:50:58.0365968Z tmpxft_00001680_00000000-7_TriangularOps.cudafe1.cpp 2025-08-26T19:50:58.0367153Z [3963/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryComplexKernels.cu.obj 2025-08-26T19:50:58.1231848Z UnaryComplexKernels.cu 2025-08-26T19:50:58.1232462Z tmpxft_00000b98_00000000-7_UnaryComplexKernels.cudafe1.cpp 2025-08-26T19:50:58.1233527Z [3964/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cu.obj 2025-08-26T19:50:58.6336363Z TensorTopK.cu 2025-08-26T19:50:58.6336853Z tmpxft_00001670_00000000-7_TensorTopK.cudafe1.cpp 2025-08-26T19:50:58.6338402Z [3965/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryFractionKernels.cu.obj 2025-08-26T19:51:00.0548315Z UnaryFractionKernels.cu 2025-08-26T19:51:00.0548721Z tmpxft_00001008_00000000-7_UnaryFractionKernels.cudafe1.cpp 2025-08-26T19:51:00.0549627Z [3966/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGammaKernels.cu.obj 2025-08-26T19:51:00.1117266Z UnaryGammaKernels.cu 2025-08-26T19:51:00.1117861Z tmpxft_000006bc_00000000-7_UnaryGammaKernels.cudafe1.cpp 2025-08-26T19:51:00.1119144Z [3967/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcosKernel.cu.obj 2025-08-26T19:51:00.1860076Z UnaryGeometricAcosKernel.cu 2025-08-26T19:51:00.1860802Z tmpxft_000013bc_00000000-7_UnaryGeometricAcosKernel.cudafe1.cpp 2025-08-26T19:51:00.1862113Z [3968/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcoshKernel.cu.obj 2025-08-26T19:51:00.4387038Z UnaryGeometricAcoshKernel.cu 2025-08-26T19:51:00.4387802Z tmpxft_00000c94_00000000-7_UnaryGeometricAcoshKernel.cudafe1.cpp 2025-08-26T19:51:00.4389022Z [3969/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinKernel.cu.obj 2025-08-26T19:51:00.7443781Z UnaryGeometricAsinKernel.cu 2025-08-26T19:51:00.7444510Z tmpxft_0000135c_00000000-7_UnaryGeometricAsinKernel.cudafe1.cpp 2025-08-26T19:51:00.7446284Z [3970/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanKernel.cu.obj 2025-08-26T19:51:00.7743509Z UnaryGeometricAtanKernel.cu 2025-08-26T19:51:00.7744223Z tmpxft_00001604_00000000-7_UnaryGeometricAtanKernel.cudafe1.cpp 2025-08-26T19:51:00.7745509Z [3971/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinhKernel.cu.obj 2025-08-26T19:51:01.3055929Z UnaryGeometricAsinhKernel.cu 2025-08-26T19:51:01.3056959Z tmpxft_00001540_00000000-7_UnaryGeometricAsinhKernel.cudafe1.cpp 2025-08-26T19:51:01.3058321Z [3972/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanhKernel.cu.obj 2025-08-26T19:51:02.7345110Z UnaryGeometricAtanhKernel.cu 2025-08-26T19:51:02.7345942Z tmpxft_00001204_00000000-7_UnaryGeometricAtanhKernel.cudafe1.cpp 2025-08-26T19:51:02.7347312Z [3973/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCosKernel.cu.obj 2025-08-26T19:51:02.7945586Z UnaryGeometricCosKernel.cu 2025-08-26T19:51:02.7946374Z tmpxft_000002e0_00000000-7_UnaryGeometricCosKernel.cudafe1.cpp 2025-08-26T19:51:02.7947767Z [3974/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCoshKernel.cu.obj 2025-08-26T19:51:02.7967234Z UnaryGeometricCoshKernel.cu 2025-08-26T19:51:02.7967953Z tmpxft_00000d74_00000000-7_UnaryGeometricCoshKernel.cudafe1.cpp 2025-08-26T19:51:02.7969346Z [3975/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinKernel.cu.obj 2025-08-26T19:51:03.1059892Z UnaryGeometricSinKernel.cu 2025-08-26T19:51:03.1060642Z tmpxft_00001254_00000000-7_UnaryGeometricSinKernel.cudafe1.cpp 2025-08-26T19:51:03.1062246Z [3976/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinhKernel.cu.obj 2025-08-26T19:51:03.4466149Z UnaryGeometricSinhKernel.cu 2025-08-26T19:51:03.4467148Z tmpxft_00000e78_00000000-7_UnaryGeometricSinhKernel.cudafe1.cpp 2025-08-26T19:51:03.4468709Z [3977/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanKernel.cu.obj 2025-08-26T19:51:03.4498705Z UnaryGeometricTanKernel.cu 2025-08-26T19:51:03.4499457Z tmpxft_000014b8_00000000-7_UnaryGeometricTanKernel.cudafe1.cpp 2025-08-26T19:51:03.4500986Z [3978/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanhKernel.cu.obj 2025-08-26T19:51:03.9868780Z UnaryGeometricTanhKernel.cu 2025-08-26T19:51:03.9881674Z tmpxft_00000a94_00000000-7_UnaryGeometricTanhKernel.cudafe1.cpp 2025-08-26T19:51:03.9883158Z [3979/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryLogKernels.cu.obj 2025-08-26T19:51:05.5770789Z UnaryLogKernels.cu 2025-08-26T19:51:05.5771385Z tmpxft_0000103c_00000000-7_UnaryLogKernels.cudafe1.cpp 2025-08-26T19:51:05.5772589Z [3980/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryOpsKernel.cu.obj 2025-08-26T19:51:05.5842012Z UnaryOpsKernel.cu 2025-08-26T19:51:05.5842357Z tmpxft_000015dc_00000000-7_UnaryOpsKernel.cudafe1.cpp 2025-08-26T19:51:05.5843026Z [3981/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySignKernels.cu.obj 2025-08-26T19:51:05.6005466Z UnarySignKernels.cu 2025-08-26T19:51:05.6006069Z tmpxft_000011fc_00000000-7_UnarySignKernels.cudafe1.cpp 2025-08-26T19:51:05.6007293Z [3982/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySpecialOpsKernel.cu.obj 2025-08-26T19:51:06.5090536Z UnarySpecialOpsKernel.cu 2025-08-26T19:51:06.5091625Z tmpxft_00000e1c_00000000-7_UnarySpecialOpsKernel.cudafe1.cpp 2025-08-26T19:51:06.5092960Z [3983/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnfoldBackwardKernel.cu.obj 2025-08-26T19:51:06.7563948Z UnfoldBackwardKernel.cu 2025-08-26T19:51:06.7564428Z tmpxft_0000047c_00000000-7_UnfoldBackwardKernel.cudafe1.cpp 2025-08-26T19:51:06.7565150Z [3984/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBicubic2d.cu.obj 2025-08-26T19:51:07.4637278Z UpSampleBicubic2d.cu 2025-08-26T19:51:07.4637758Z tmpxft_0000068c_00000000-7_UpSampleBicubic2d.cudafe1.cpp 2025-08-26T19:51:07.4638593Z [3985/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBilinear2d.cu.obj 2025-08-26T19:51:08.1298147Z UpSampleBilinear2d.cu 2025-08-26T19:51:08.1298727Z tmpxft_00000e64_00000000-7_UpSampleBilinear2d.cudafe1.cpp 2025-08-26T19:51:08.1300234Z [3986/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UniqueCub.cu.obj 2025-08-26T19:51:08.7272048Z UniqueCub.cu 2025-08-26T19:51:08.7272568Z tmpxft_000012d0_00000000-7_UniqueCub.cudafe1.cpp 2025-08-26T19:51:08.7273753Z [3987/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleLinear1d.cu.obj 2025-08-26T19:51:08.7644867Z UpSampleLinear1d.cu 2025-08-26T19:51:08.7645440Z tmpxft_000011d0_00000000-7_UpSampleLinear1d.cudafe1.cpp 2025-08-26T19:51:08.7646583Z [3988/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest1d.cu.obj 2025-08-26T19:51:08.8708461Z UpSampleNearest1d.cu 2025-08-26T19:51:08.8709717Z tmpxft_0000109c_00000000-7_UpSampleNearest1d.cudafe1.cpp 2025-08-26T19:51:08.8711538Z [3989/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest2d.cu.obj 2025-08-26T19:51:09.8587612Z UpSampleNearest2d.cu 2025-08-26T19:51:09.8588226Z tmpxft_00000268_00000000-7_UpSampleNearest2d.cudafe1.cpp 2025-08-26T19:51:09.8589980Z [3990/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest3d.cu.obj 2025-08-26T19:51:10.0003762Z UpSampleNearest3d.cu 2025-08-26T19:51:10.0004361Z tmpxft_00001254_00000000-7_UpSampleNearest3d.cudafe1.cpp 2025-08-26T19:51:10.0005807Z [3991/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleTrilinear3d.cu.obj 2025-08-26T19:51:10.7881289Z UpSampleTrilinear3d.cu 2025-08-26T19:51:10.7881728Z tmpxft_00000c50_00000000-7_UpSampleTrilinear3d.cudafe1.cpp 2025-08-26T19:51:10.7882768Z [3992/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ValidateCompressedIndicesKernel.cu.obj 2025-08-26T19:51:11.2951665Z ValidateCompressedIndicesKernel.cu 2025-08-26T19:51:11.2952544Z tmpxft_0000135c_00000000-7_ValidateCompressedIndicesKernel.cudafe1.cpp 2025-08-26T19:51:11.2953843Z [3993/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ZetaKernel.cu.obj 2025-08-26T19:51:11.3425089Z ZetaKernel.cu 2025-08-26T19:51:11.3425602Z tmpxft_00000594_00000000-7_ZetaKernel.cudafe1.cpp 2025-08-26T19:51:11.3426719Z [3994/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\WeightNorm.cu.obj 2025-08-26T19:51:11.3554495Z WeightNorm.cu 2025-08-26T19:51:11.3555041Z tmpxft_00001140_00000000-7_WeightNorm.cudafe1.cpp 2025-08-26T19:51:11.3556143Z [3995/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\airy_ai.cu.obj 2025-08-26T19:51:11.3703674Z airy_ai.cu 2025-08-26T19:51:11.3704118Z tmpxft_00001098_00000000-7_airy_ai.cudafe1.cpp 2025-08-26T19:51:11.3705176Z [3996/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j0.cu.obj 2025-08-26T19:51:12.4800101Z bessel_j0.cu 2025-08-26T19:51:12.4800577Z tmpxft_00001258_00000000-7_bessel_j0.cudafe1.cpp 2025-08-26T19:51:12.4801585Z [3997/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j1.cu.obj 2025-08-26T19:51:12.6400219Z bessel_j1.cu 2025-08-26T19:51:12.6400703Z tmpxft_00000624_00000000-7_bessel_j1.cudafe1.cpp 2025-08-26T19:51:12.6401706Z [3998/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y0.cu.obj 2025-08-26T19:51:13.4064071Z bessel_y0.cu 2025-08-26T19:51:13.4064415Z tmpxft_00000e28_00000000-7_bessel_y0.cudafe1.cpp 2025-08-26T19:51:13.4065104Z [3999/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y1.cu.obj 2025-08-26T19:51:13.8823841Z bessel_y1.cu 2025-08-26T19:51:13.8824343Z tmpxft_00000d54_00000000-7_bessel_y1.cudafe1.cpp 2025-08-26T19:51:13.8825523Z [4000/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_t.cu.obj 2025-08-26T19:51:13.9028596Z chebyshev_polynomial_t.cu 2025-08-26T19:51:13.9029281Z tmpxft_0000163c_00000000-7_chebyshev_polynomial_t.cudafe1.cpp 2025-08-26T19:51:13.9030407Z [4001/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_u.cu.obj 2025-08-26T19:51:14.0333767Z chebyshev_polynomial_u.cu 2025-08-26T19:51:14.0334424Z tmpxft_000009e0_00000000-7_chebyshev_polynomial_u.cudafe1.cpp 2025-08-26T19:51:14.0335694Z [4002/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_v.cu.obj 2025-08-26T19:51:14.0794867Z chebyshev_polynomial_v.cu 2025-08-26T19:51:14.0795542Z tmpxft_00000474_00000000-7_chebyshev_polynomial_v.cudafe1.cpp 2025-08-26T19:51:14.0796803Z [4003/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_w.cu.obj 2025-08-26T19:51:15.6030510Z chebyshev_polynomial_w.cu 2025-08-26T19:51:15.6031118Z tmpxft_00001004_00000000-7_chebyshev_polynomial_w.cudafe1.cpp 2025-08-26T19:51:15.6032340Z [4004/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adagrad_impl.cu.obj 2025-08-26T19:51:15.8531472Z fused_adagrad_impl.cu 2025-08-26T19:51:15.8532088Z tmpxft_00000e18_00000000-7_fused_adagrad_impl.cudafe1.cpp 2025-08-26T19:51:15.8533296Z [4005/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_amsgrad_impl.cu.obj 2025-08-26T19:51:16.6423378Z fused_adam_amsgrad_impl.cu 2025-08-26T19:51:16.6424076Z tmpxft_00000be0_00000000-7_fused_adam_amsgrad_impl.cudafe1.cpp 2025-08-26T19:51:16.6425221Z [4006/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_impl.cu.obj 2025-08-26T19:51:16.6825674Z fused_adam_impl.cu 2025-08-26T19:51:16.6826219Z tmpxft_00001508_00000000-7_fused_adam_impl.cudafe1.cpp 2025-08-26T19:51:16.6827389Z [4007/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_h.cu.obj 2025-08-26T19:51:16.8980550Z hermite_polynomial_h.cu 2025-08-26T19:51:16.8981300Z tmpxft_0000141c_00000000-7_hermite_polynomial_h.cudafe1.cpp 2025-08-26T19:51:16.8982884Z [4008/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_impl.cu.obj 2025-08-26T19:51:16.9124091Z fused_adamw_impl.cu 2025-08-26T19:51:16.9124610Z tmpxft_00001514_00000000-7_fused_adamw_impl.cudafe1.cpp 2025-08-26T19:51:16.9125793Z [4009/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_amsgrad_impl.cu.obj 2025-08-26T19:51:17.2428070Z fused_adamw_amsgrad_impl.cu 2025-08-26T19:51:17.2428807Z tmpxft_00000528_00000000-7_fused_adamw_amsgrad_impl.cudafe1.cpp 2025-08-26T19:51:17.2430594Z [4010/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\group_norm_kernel.cu.obj 2025-08-26T19:51:18.3316373Z group_norm_kernel.cu 2025-08-26T19:51:18.3316964Z tmpxft_000008ec_00000000-7_group_norm_kernel.cudafe1.cpp 2025-08-26T19:51:18.3318154Z [4011/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_he.cu.obj 2025-08-26T19:51:19.5434732Z hermite_polynomial_he.cu 2025-08-26T19:51:19.5435193Z tmpxft_00000e1c_00000000-7_hermite_polynomial_he.cudafe1.cpp 2025-08-26T19:51:19.5436434Z [4012/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\laguerre_polynomial_l.cu.obj 2025-08-26T19:51:19.6695338Z laguerre_polynomial_l.cu 2025-08-26T19:51:19.6696051Z tmpxft_00000cec_00000000-7_laguerre_polynomial_l.cudafe1.cpp 2025-08-26T19:51:19.6697201Z [4013/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\legendre_polynomial_p.cu.obj 2025-08-26T19:51:19.9170629Z legendre_polynomial_p.cu 2025-08-26T19:51:19.9171350Z tmpxft_0000097c_00000000-7_legendre_polynomial_p.cudafe1.cpp 2025-08-26T19:51:19.9172490Z [4014/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i0.cu.obj 2025-08-26T19:51:20.3738503Z modified_bessel_i0.cu 2025-08-26T19:51:20.3739190Z tmpxft_00000b90_00000000-7_modified_bessel_i0.cudafe1.cpp 2025-08-26T19:51:20.3740350Z [4015/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\layer_norm_kernel.cu.obj 2025-08-26T19:51:20.9063551Z layer_norm_kernel.cu 2025-08-26T19:51:20.9064214Z tmpxft_000009fc_00000000-7_layer_norm_kernel.cudafe1.cpp 2025-08-26T19:51:20.9065487Z [4016/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i1.cu.obj 2025-08-26T19:51:22.1170612Z modified_bessel_i1.cu 2025-08-26T19:51:22.1171034Z tmpxft_00000314_00000000-7_modified_bessel_i1.cudafe1.cpp 2025-08-26T19:51:22.1171699Z [4017/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k0.cu.obj 2025-08-26T19:51:22.1669283Z modified_bessel_k0.cu 2025-08-26T19:51:22.1669674Z tmpxft_0000097c_00000000-7_modified_bessel_k0.cudafe1.cpp 2025-08-26T19:51:22.1670368Z [4018/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k1.cu.obj 2025-08-26T19:51:22.3424499Z modified_bessel_k1.cu 2025-08-26T19:51:22.3424905Z tmpxft_00001074_00000000-7_modified_bessel_k1.cudafe1.cpp 2025-08-26T19:51:22.3425623Z [4019/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k0.cu.obj 2025-08-26T19:51:22.8283857Z scaled_modified_bessel_k0.cu 2025-08-26T19:51:22.8284888Z tmpxft_00000478_00000000-7_scaled_modified_bessel_k0.cudafe1.cpp 2025-08-26T19:51:22.8286279Z [4020/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k1.cu.obj 2025-08-26T19:51:23.3727934Z scaled_modified_bessel_k1.cu 2025-08-26T19:51:23.3728715Z tmpxft_00001558_00000000-7_scaled_modified_bessel_k1.cudafe1.cpp 2025-08-26T19:51:23.3730021Z [4021/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_t.cu.obj 2025-08-26T19:51:23.8381787Z shifted_chebyshev_polynomial_t.cu 2025-08-26T19:51:23.8382662Z tmpxft_000017a8_00000000-7_shifted_chebyshev_polynomial_t.cudafe1.cpp 2025-08-26T19:51:23.8383352Z [4022/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\int4mm.cu.obj 2025-08-26T19:51:24.6417455Z int4mm.cu 2025-08-26T19:51:24.6418013Z tmpxft_000005a4_00000000-7_int4mm.cudafe1.cpp 2025-08-26T19:51:24.6419107Z [4023/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\int8mm.cu.obj 2025-08-26T19:51:24.7006480Z int8mm.cu 2025-08-26T19:51:24.7006949Z tmpxft_00000548_00000000-7_int8mm.cudafe1.cpp 2025-08-26T19:51:24.7008158Z [4024/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_v.cu.obj 2025-08-26T19:51:24.7375360Z shifted_chebyshev_polynomial_v.cu 2025-08-26T19:51:24.7376143Z tmpxft_00001734_00000000-7_shifted_chebyshev_polynomial_v.cudafe1.cpp 2025-08-26T19:51:24.7377667Z [4025/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_u.cu.obj 2025-08-26T19:51:24.8556595Z shifted_chebyshev_polynomial_u.cu 2025-08-26T19:51:24.8557830Z tmpxft_00001658_00000000-7_shifted_chebyshev_polynomial_u.cudafe1.cpp 2025-08-26T19:51:24.8559219Z [4026/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_w.cu.obj 2025-08-26T19:51:25.4007157Z shifted_chebyshev_polynomial_w.cu 2025-08-26T19:51:25.4008657Z tmpxft_00001464_00000000-7_shifted_chebyshev_polynomial_w.cudafe1.cpp 2025-08-26T19:51:25.4010064Z [4027/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\spherical_bessel_j0.cu.obj 2025-08-26T19:51:30.6993063Z spherical_bessel_j0.cu 2025-08-26T19:51:30.6993480Z tmpxft_00000428_00000000-7_spherical_bessel_j0.cudafe1.cpp 2025-08-26T19:51:30.6994193Z [4028/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorBinaryOps.cu.obj 2025-08-26T19:51:31.2136661Z NestedTensorBinaryOps.cu 2025-08-26T19:51:31.2137078Z tmpxft_000016f8_00000000-7_NestedTensorBinaryOps.cudafe1.cpp 2025-08-26T19:51:31.2137785Z [4029/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorMatmul.cu.obj 2025-08-26T19:51:32.0821692Z NestedTensorMatmul.cu 2025-08-26T19:51:32.0822076Z tmpxft_00000cb8_00000000-7_NestedTensorMatmul.cudafe1.cpp 2025-08-26T19:51:32.0822887Z [4030/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cu.obj 2025-08-26T19:51:34.1415849Z NestedTensorTransformerFunctions.cu 2025-08-26T19:51:34.1416392Z tmpxft_000017d4_00000000-7_NestedTensorTransformerFunctions.cudafe1.cpp 2025-08-26T19:51:34.1417166Z [4031/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCsrTensorMath.cu.obj 2025-08-26T19:51:34.2029169Z SparseCsrTensorMath.cu 2025-08-26T19:51:34.2029801Z tmpxft_00001578_00000000-7_SparseCsrTensorMath.cudafe1.cpp 2025-08-26T19:51:34.2031116Z [4032/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensorMath.cu.obj 2025-08-26T19:51:34.2980146Z SparseCUDATensorMath.cu 2025-08-26T19:51:34.2981007Z tmpxft_00001510_00000000-7_SparseCUDATensorMath.cudafe1.cpp 2025-08-26T19:51:34.2982320Z [4033/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SoftMax.cu.obj 2025-08-26T19:51:34.4655883Z SoftMax.cu 2025-08-26T19:51:34.4656343Z tmpxft_00000720_00000000-7_SoftMax.cudafe1.cpp 2025-08-26T19:51:34.4657786Z [4034/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensor.cu.obj 2025-08-26T19:51:35.0145063Z SparseCUDATensor.cu 2025-08-26T19:51:35.0145660Z tmpxft_000012d0_00000000-7_SparseCUDATensor.cudafe1.cpp 2025-08-26T19:51:35.0146839Z [4035/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseMatMul.cu.obj 2025-08-26T19:52:01.4715038Z SparseMatMul.cu 2025-08-26T19:52:01.4715413Z tmpxft_00001470_00000000-7_SparseMatMul.cudafe1.cpp 2025-08-26T19:52:01.4716211Z [4036/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\AffineQuantizer.cu.obj 2025-08-26T19:52:01.4819339Z AffineQuantizer.cu 2025-08-26T19:52:01.4819734Z tmpxft_0000042c_00000000-7_AffineQuantizer.cudafe1.cpp 2025-08-26T19:52:01.4820481Z [4037/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiSturcturedApply.cu.obj 2025-08-26T19:52:01.5071531Z SparseSemiSturcturedApply.cu 2025-08-26T19:52:01.5072038Z tmpxft_00001670_00000000-7_SparseSemiSturcturedApply.cudafe1.cpp 2025-08-26T19:52:01.5072813Z [4038/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredOps.cu.obj 2025-08-26T19:52:01.5308085Z SparseSemiStructuredOps.cu 2025-08-26T19:52:01.5308596Z tmpxft_000014fc_00000000-7_SparseSemiStructuredOps.cudafe1.cpp 2025-08-26T19:52:01.5309342Z [4039/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cu.obj 2025-08-26T19:52:01.5657773Z Activation.cu 2025-08-26T19:52:01.5658142Z tmpxft_00000a98_00000000-7_Activation.cudafe1.cpp 2025-08-26T19:52:01.5658879Z [4040/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredTile.cu.obj 2025-08-26T19:52:01.5659546Z SparseSemiStructuredTile.cu 2025-08-26T19:52:01.5659906Z tmpxft_000017f8_00000000-7_SparseSemiStructuredTile.cudafe1.cpp 2025-08-26T19:52:01.5660864Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T19:52:01.5662327Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-08-26T19:52:01.5663898Z 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-08-26T19:52:01.5664839Z with 2025-08-26T19:52:01.5665016Z [ 2025-08-26T19:52:01.5665206Z I=size_t, 2025-08-26T19:52:01.5665405Z _Ty2=size_t 2025-08-26T19:52:01.5665619Z ] 2025-08-26T19:52:01.5666390Z 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-08-26T19:52:01.5668288Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T19:52:01.5670725Z with 2025-08-26T19:52:01.5670989Z [ 2025-08-26T19:52:01.5671247Z _Ty=int 2025-08-26T19:52:01.5671521Z ] 2025-08-26T19:52:04.3907822Z tmpxft_000017f8_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-08-26T19:52:04.4585036Z with 2025-08-26T19:52:04.4585266Z [ 2025-08-26T19:52:04.4585443Z _Ty=int 2025-08-26T19:52:04.4585650Z ] 2025-08-26T19:52:04.4586156Z [4041/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\IntReprQuant.cu.obj 2025-08-26T19:52:04.4586780Z IntReprQuant.cu 2025-08-26T19:52:04.4587033Z tmpxft_00000d50_00000000-7_IntReprQuant.cudafe1.cpp 2025-08-26T19:52:04.4589417Z [4042/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FakeQuantizeCore.cu.obj 2025-08-26T19:52:04.4719818Z FakeQuantizeCore.cu 2025-08-26T19:52:04.4720399Z tmpxft_000014fc_00000000-7_FakeQuantizeCore.cudafe1.cpp 2025-08-26T19:52:04.4721695Z [4043/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FusedObsFakeQuant.cu.obj 2025-08-26T19:52:04.4840440Z FusedObsFakeQuant.cu 2025-08-26T19:52:04.4840844Z tmpxft_000012c8_00000000-7_FusedObsFakeQuant.cudafe1.cpp 2025-08-26T19:52:04.4841604Z [4044/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\MakePerTensorQuantizedTensor.cu.obj 2025-08-26T19:52:04.6097904Z MakePerTensorQuantizedTensor.cu 2025-08-26T19:52:04.6098746Z tmpxft_00001100_00000000-7_MakePerTensorQuantizedTensor.cudafe1.cpp 2025-08-26T19:52:04.6100158Z [4045/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\EmbeddingBag.cu.obj 2025-08-26T19:52:04.6101304Z EmbeddingBag.cu 2025-08-26T19:52:04.6101763Z tmpxft_00001634_00000000-7_EmbeddingBag.cudafe1.cpp 2025-08-26T19:52:04.6103422Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T19:52:04.6105940Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-08-26T19:52:04.6108603Z 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-08-26T19:52:04.6110274Z with 2025-08-26T19:52:04.6110569Z [ 2025-08-26T19:52:04.6110844Z I=size_t, 2025-08-26T19:52:04.6111231Z _Ty2=size_t 2025-08-26T19:52:04.6111626Z ] 2025-08-26T19:52:04.6113080Z 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-08-26T19:52:04.6116497Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T19:52:04.6118895Z with 2025-08-26T19:52:04.6119241Z [ 2025-08-26T19:52:04.6119538Z _Ty=int 2025-08-26T19:52:04.6119885Z ] 2025-08-26T19:52:18.2142275Z tmpxft_00001634_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-08-26T19:52:18.2143471Z with 2025-08-26T19:52:18.2143718Z [ 2025-08-26T19:52:18.2143898Z _Ty=int 2025-08-26T19:52:18.2144106Z ] 2025-08-26T19:52:18.2145042Z [4046/7555] 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-08-26T19:52:18.2174482Z cutlassB_bf16_aligned_k128_dropout.cu 2025-08-26T19:52:18.2174991Z tmpxft_00000d00_00000000-7_cutlassB_bf16_aligned_k128_dropout.cudafe1.cpp 2025-08-26T19:52:18.2175892Z [4047/7555] 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-08-26T19:52:18.2872630Z cutlassB_bf16_aligned_k32.cu 2025-08-26T19:52:18.2873333Z tmpxft_000010ec_00000000-7_cutlassB_bf16_aligned_k32.cudafe1.cpp 2025-08-26T19:52:18.2874802Z [4048/7555] 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-08-26T19:52:18.9430523Z cutlassB_bf16_aligned_k128.cu 2025-08-26T19:52:18.9431239Z tmpxft_00001500_00000000-7_cutlassB_bf16_aligned_k128.cudafe1.cpp 2025-08-26T19:52:18.9432491Z [4049/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention.cu.obj 2025-08-26T19:52:19.2304279Z attention.cu 2025-08-26T19:52:19.2305164Z tmpxft_00001328_00000000-7_attention.cudafe1.cpp 2025-08-26T19:52:19.2306451Z [4050/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention_backward.cu.obj 2025-08-26T19:52:20.6179164Z attention_backward.cu 2025-08-26T19:52:20.6179550Z tmpxft_000009b4_00000000-7_attention_backward.cudafe1.cpp 2025-08-26T19:52:20.6180416Z [4051/7555] 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-08-26T19:52:20.7237260Z cutlassB_bf16_aligned_k32_dropout.cu 2025-08-26T19:52:20.7237803Z tmpxft_00000ef0_00000000-7_cutlassB_bf16_aligned_k32_dropout.cudafe1.cpp 2025-08-26T19:52:20.7238718Z [4052/7555] 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-08-26T19:52:20.9122084Z cutlassB_bf16_aligned_k64.cu 2025-08-26T19:52:20.9122824Z tmpxft_00001648_00000000-7_cutlassB_bf16_aligned_k64.cudafe1.cpp 2025-08-26T19:52:20.9124625Z [4053/7555] 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-08-26T19:52:21.5238240Z cutlassB_bf16_aligned_k64_dropout.cu 2025-08-26T19:52:21.5238778Z tmpxft_00001658_00000000-7_cutlassB_bf16_aligned_k64_dropout.cudafe1.cpp 2025-08-26T19:52:21.5239805Z [4054/7555] 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-08-26T19:52:21.6858257Z cutlassB_bf16_aligned_k65536.cu 2025-08-26T19:52:21.6858794Z tmpxft_00001250_00000000-7_cutlassB_bf16_aligned_k65536.cudafe1.cpp 2025-08-26T19:52:21.6859739Z [4055/7555] 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-08-26T19:52:23.2030431Z cutlassB_bf16_aligned_k65536_dropout.cu 2025-08-26T19:52:23.2030931Z tmpxft_00001218_00000000-7_cutlassB_bf16_aligned_k65536_dropout.cudafe1.cpp 2025-08-26T19:52:23.2031818Z [4056/7555] 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-08-26T19:52:23.2399709Z cutlassB_bf16_aligned_k96.cu 2025-08-26T19:52:23.2400148Z tmpxft_000006c8_00000000-7_cutlassB_bf16_aligned_k96.cudafe1.cpp 2025-08-26T19:52:23.2401077Z [4057/7555] 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-08-26T19:52:23.4180059Z cutlassB_f16_aligned_k128.cu 2025-08-26T19:52:23.4180994Z tmpxft_00000c7c_00000000-7_cutlassB_f16_aligned_k128.cudafe1.cpp 2025-08-26T19:52:23.4182680Z [4058/7555] 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-08-26T19:52:23.8306806Z cutlassB_f16_aligned_k128_dropout.cu 2025-08-26T19:52:23.8307641Z tmpxft_00000eb8_00000000-7_cutlassB_f16_aligned_k128_dropout.cudafe1.cpp 2025-08-26T19:52:23.8309249Z [4059/7555] 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-08-26T19:52:24.1306902Z cutlassB_f16_aligned_k32.cu 2025-08-26T19:52:24.1308293Z tmpxft_000001a0_00000000-7_cutlassB_f16_aligned_k32.cudafe1.cpp 2025-08-26T19:52:24.1309344Z [4060/7555] 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-08-26T19:52:25.6729557Z cutlassB_f16_aligned_k32_dropout.cu 2025-08-26T19:52:25.6730226Z tmpxft_00000ef0_00000000-7_cutlassB_f16_aligned_k32_dropout.cudafe1.cpp 2025-08-26T19:52:25.6731556Z [4061/7555] 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-08-26T19:52:25.7122839Z cutlassB_f16_aligned_k64.cu 2025-08-26T19:52:25.7123247Z tmpxft_000006e8_00000000-7_cutlassB_f16_aligned_k64.cudafe1.cpp 2025-08-26T19:52:25.7124129Z [4062/7555] 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-08-26T19:52:25.7503589Z cutlassB_f16_aligned_k64_dropout.cu 2025-08-26T19:52:25.7504075Z tmpxft_000001c4_00000000-7_cutlassB_f16_aligned_k64_dropout.cudafe1.cpp 2025-08-26T19:52:25.7504971Z [4063/7555] 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-08-26T19:52:26.2896998Z cutlassB_f16_aligned_k65536.cu 2025-08-26T19:52:26.2897448Z tmpxft_00001554_00000000-7_cutlassB_f16_aligned_k65536.cudafe1.cpp 2025-08-26T19:52:26.2898354Z [4064/7555] 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-08-26T19:52:26.4653344Z cutlassB_f16_aligned_k65536_dropout.cu 2025-08-26T19:52:26.4654158Z tmpxft_00001760_00000000-7_cutlassB_f16_aligned_k65536_dropout.cudafe1.cpp 2025-08-26T19:52:26.4655718Z [4065/7555] 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-08-26T19:52:28.1552860Z cutlassB_f16_aligned_k96.cu 2025-08-26T19:52:28.1553297Z tmpxft_000012f4_00000000-7_cutlassB_f16_aligned_k96.cudafe1.cpp 2025-08-26T19:52:28.1554191Z [4066/7555] 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-08-26T19:52:28.1755171Z cutlassB_f16_notaligned_k128.cu 2025-08-26T19:52:28.1755624Z tmpxft_00001374_00000000-7_cutlassB_f16_notaligned_k128.cudafe1.cpp 2025-08-26T19:52:28.1756527Z [4067/7555] 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-08-26T19:52:28.2722580Z cutlassB_f16_notaligned_k128_dropout.cu 2025-08-26T19:52:28.2723432Z tmpxft_00000750_00000000-7_cutlassB_f16_notaligned_k128_dropout.cudafe1.cpp 2025-08-26T19:52:28.2725110Z [4068/7555] 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-08-26T19:52:29.0193256Z cutlassB_f16_notaligned_k32.cu 2025-08-26T19:52:29.0193770Z tmpxft_000011ac_00000000-7_cutlassB_f16_notaligned_k32.cudafe1.cpp 2025-08-26T19:52:29.0194997Z [4069/7555] 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-08-26T19:52:29.0373494Z cutlassB_f16_notaligned_k64.cu 2025-08-26T19:52:29.0373934Z tmpxft_000005e0_00000000-7_cutlassB_f16_notaligned_k64.cudafe1.cpp 2025-08-26T19:52:29.0374921Z [4070/7555] 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-08-26T19:52:30.6060856Z cutlassB_f16_notaligned_k32_dropout.cu 2025-08-26T19:52:30.6061356Z tmpxft_00001200_00000000-7_cutlassB_f16_notaligned_k32_dropout.cudafe1.cpp 2025-08-26T19:52:30.6062521Z [4071/7555] 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-08-26T19:52:30.6082776Z cutlassB_f16_notaligned_k64_dropout.cu 2025-08-26T19:52:30.6083283Z tmpxft_00001628_00000000-7_cutlassB_f16_notaligned_k64_dropout.cudafe1.cpp 2025-08-26T19:52:30.6084411Z [4072/7555] 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-08-26T19:52:30.7911594Z cutlassB_f16_notaligned_k65536.cu 2025-08-26T19:52:30.7912141Z tmpxft_000016cc_00000000-7_cutlassB_f16_notaligned_k65536.cudafe1.cpp 2025-08-26T19:52:30.7913272Z [4073/7555] 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-08-26T19:52:31.5052549Z cutlassB_f16_notaligned_k65536_dropout.cu 2025-08-26T19:52:31.5053455Z tmpxft_0000007c_00000000-7_cutlassB_f16_notaligned_k65536_dropout.cudafe1.cpp 2025-08-26T19:52:31.5055136Z [4074/7555] 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-08-26T19:52:31.6924449Z cutlassB_f32_aligned_k128.cu 2025-08-26T19:52:31.6925146Z tmpxft_00001748_00000000-7_cutlassB_f32_aligned_k128.cudafe1.cpp 2025-08-26T19:52:31.6926919Z [4075/7555] 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-08-26T19:52:32.9544457Z cutlassB_f32_aligned_k128_dropout.cu 2025-08-26T19:52:32.9544964Z tmpxft_00001230_00000000-7_cutlassB_f32_aligned_k128_dropout.cudafe1.cpp 2025-08-26T19:52:32.9545929Z [4076/7555] 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-08-26T19:52:33.0258992Z cutlassB_f32_aligned_k32.cu 2025-08-26T19:52:33.0259672Z tmpxft_00001750_00000000-7_cutlassB_f32_aligned_k32.cudafe1.cpp 2025-08-26T19:52:33.0261247Z [4077/7555] 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-08-26T19:52:33.2758010Z cutlassB_f32_aligned_k32_dropout.cu 2025-08-26T19:52:33.2758480Z tmpxft_00001680_00000000-7_cutlassB_f32_aligned_k32_dropout.cudafe1.cpp 2025-08-26T19:52:33.2759349Z [4078/7555] 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-08-26T19:52:34.0457739Z cutlassB_f32_aligned_k64.cu 2025-08-26T19:52:34.0458165Z tmpxft_0000093c_00000000-7_cutlassB_f32_aligned_k64.cudafe1.cpp 2025-08-26T19:52:34.0459049Z [4079/7555] 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-08-26T19:52:34.3092324Z cutlassB_f32_aligned_k64_dropout.cu 2025-08-26T19:52:34.3092850Z tmpxft_0000133c_00000000-7_cutlassB_f32_aligned_k64_dropout.cudafe1.cpp 2025-08-26T19:52:34.3094072Z [4080/7555] 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-08-26T19:52:35.3358905Z cutlassB_f32_aligned_k65536.cu 2025-08-26T19:52:35.3359339Z tmpxft_000008ec_00000000-7_cutlassB_f32_aligned_k65536.cudafe1.cpp 2025-08-26T19:52:35.3360406Z [4081/7555] 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-08-26T19:52:35.3383428Z cutlassB_f32_aligned_k65536_dropout.cu 2025-08-26T19:52:35.3383892Z tmpxft_00001578_00000000-7_cutlassB_f32_aligned_k65536_dropout.cudafe1.cpp 2025-08-26T19:52:35.3384802Z [4082/7555] 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-08-26T19:52:35.7586861Z cutlassB_f32_notaligned_k128.cu 2025-08-26T19:52:35.7587324Z tmpxft_00001108_00000000-7_cutlassB_f32_notaligned_k128.cudafe1.cpp 2025-08-26T19:52:35.7588383Z [4083/7555] 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-08-26T19:52:36.4482511Z cutlassB_f32_notaligned_k128_dropout.cu 2025-08-26T19:52:36.4483382Z tmpxft_0000124c_00000000-7_cutlassB_f32_notaligned_k128_dropout.cudafe1.cpp 2025-08-26T19:52:36.4485121Z [4084/7555] 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-08-26T19:52:36.7205635Z cutlassB_f32_notaligned_k32.cu 2025-08-26T19:52:36.7206412Z tmpxft_000008e8_00000000-7_cutlassB_f32_notaligned_k32.cudafe1.cpp 2025-08-26T19:52:36.7208156Z [4085/7555] 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-08-26T19:52:37.7506425Z cutlassB_f32_notaligned_k32_dropout.cu 2025-08-26T19:52:37.7506959Z tmpxft_000008cc_00000000-7_cutlassB_f32_notaligned_k32_dropout.cudafe1.cpp 2025-08-26T19:52:37.7507912Z [4086/7555] 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-08-26T19:52:37.7728967Z cutlassB_f32_notaligned_k64.cu 2025-08-26T19:52:37.7729829Z tmpxft_000016dc_00000000-7_cutlassB_f32_notaligned_k64.cudafe1.cpp 2025-08-26T19:52:37.7731714Z [4087/7555] 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-08-26T19:52:38.2423407Z cutlassB_f32_notaligned_k64_dropout.cu 2025-08-26T19:52:38.2424042Z tmpxft_00000ee0_00000000-7_cutlassB_f32_notaligned_k64_dropout.cudafe1.cpp 2025-08-26T19:52:38.2425102Z [4088/7555] 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-08-26T19:52:38.9448332Z cutlassB_f32_notaligned_k65536.cu 2025-08-26T19:52:38.9448850Z tmpxft_000010e4_00000000-7_cutlassB_f32_notaligned_k65536.cudafe1.cpp 2025-08-26T19:52:38.9449826Z [4089/7555] 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-08-26T19:52:39.0415874Z cutlassB_f32_notaligned_k65536_dropout.cu 2025-08-26T19:52:39.0416698Z tmpxft_00000eb8_00000000-7_cutlassB_f32_notaligned_k65536_dropout.cudafe1.cpp 2025-08-26T19:52:39.0418361Z [4090/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_bf16_aligned.cu.obj 2025-08-26T19:52:40.1320991Z cutlassF_bf16_aligned.cu 2025-08-26T19:52:40.1321435Z tmpxft_00000ff8_00000000-7_cutlassF_bf16_aligned.cudafe1.cpp 2025-08-26T19:52:40.1322502Z [4091/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_aligned.cu.obj 2025-08-26T19:52:40.1833433Z cutlassF_f16_aligned.cu 2025-08-26T19:52:40.1834149Z tmpxft_0000169c_00000000-7_cutlassF_f16_aligned.cudafe1.cpp 2025-08-26T19:52:40.1835546Z [4092/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_notaligned.cu.obj 2025-08-26T19:52:40.5460007Z cutlassF_f16_notaligned.cu 2025-08-26T19:52:40.5460479Z tmpxft_0000175c_00000000-7_cutlassF_f16_notaligned.cudafe1.cpp 2025-08-26T19:52:40.5461409Z [4093/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_aligned.cu.obj 2025-08-26T19:52:41.1140921Z cutlassF_f32_aligned.cu 2025-08-26T19:52:41.1141372Z tmpxft_000004fc_00000000-7_cutlassF_f32_aligned.cudafe1.cpp 2025-08-26T19:52:41.1142251Z [4094/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_notaligned.cu.obj 2025-08-26T19:52:41.3503702Z cutlassF_f32_notaligned.cu 2025-08-26T19:52:41.3504291Z tmpxft_00000f40_00000000-7_cutlassF_f32_notaligned.cudafe1.cpp 2025-08-26T19:52:41.3505068Z [4095/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterNestedTensorCUDA_0.cpp.obj 2025-08-26T19:52:41.3622648Z [4096/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterQuantizedCUDA_0.cpp.obj 2025-08-26T19:52:41.5933969Z [4097/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCsrCUDA_0.cpp.obj 2025-08-26T19:52:42.2107295Z [4098/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredLinear.cu.obj 2025-08-26T19:52:42.5593841Z SparseSemiStructuredLinear.cu 2025-08-26T19:52:42.5594342Z tmpxft_00000e78_00000000-7_SparseSemiStructuredLinear.cudafe1.cpp 2025-08-26T19:52:42.5595097Z [4099/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCUDA_0.cpp.obj 2025-08-26T19:52:42.9534314Z [4100/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLib.cpp.obj 2025-08-26T19:52:43.1920149Z [4101/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLibBlas.cpp.obj 2025-08-26T19:52:43.3031200Z [4102/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\UfuncCUDA_add.cu.obj 2025-08-26T19:52:43.5631173Z UfuncCUDA_add.cu 2025-08-26T19:52:43.5631560Z tmpxft_000007d0_00000000-7_UfuncCUDA_add.cudafe1.cpp 2025-08-26T19:52:43.5632239Z [4103/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CudssHandlePool.cpp.obj 2025-08-26T19:52:43.8181293Z [4104/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CusolverDnHandlePool.cpp.obj 2025-08-26T19:52:44.2785952Z [4105/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseBlas.cpp.obj 2025-08-26T19:52:44.3110243Z [4106/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CUDASolver.cpp.obj 2025-08-26T19:52:45.0210408Z [4107/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\StreamTimer.cpp.obj 2025-08-26T19:52:45.0351966Z [4108/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\Tunable.cpp.obj 2025-08-26T19:52:45.0657524Z [4109/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CublasHandlePool.cpp.obj 2025-08-26T19:52:45.1542501Z [4110/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebra.cpp.obj 2025-08-26T19:52:45.8031703Z [4111/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Activation.cpp.obj 2025-08-26T19:52:45.8261359Z [4112/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cpp.obj 2025-08-26T19:52:46.4673173Z [4113/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Equal.cpp.obj 2025-08-26T19:52:46.5974505Z [4114/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebraStubs.cpp.obj 2025-08-26T19:52:46.6810532Z [4115/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cpp.obj 2025-08-26T19:52:46.7107448Z [4116/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Blas.cpp.obj 2025-08-26T19:52:46.8196586Z [4117/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDABlas.cpp.obj 2025-08-26T19:52:47.2703986Z [4118/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cpp.obj 2025-08-26T19:52:47.4051945Z [4119/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScanKernels.cpp.obj 2025-08-26T19:52:47.4344488Z [4120/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cpp.obj 2025-08-26T19:52:47.4936241Z [4121/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredApplyDense.cu.obj 2025-08-26T19:52:47.4937114Z SparseSemiStructuredApplyDense.cu 2025-08-26T19:52:47.4937601Z tmpxft_00001384_00000000-7_SparseSemiStructuredApplyDense.cudafe1.cpp 2025-08-26T19:52:47.4938659Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T19:52:47.4940144Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-08-26T19:52:47.4941880Z 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-08-26T19:52:47.4942838Z with 2025-08-26T19:52:47.4943084Z [ 2025-08-26T19:52:47.4943274Z I=size_t, 2025-08-26T19:52:47.4943548Z _Ty2=size_t 2025-08-26T19:52:47.4943780Z ] 2025-08-26T19:52:47.4944651Z 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-08-26T19:52:47.4946528Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T19:52:47.4947804Z with 2025-08-26T19:52:47.4948040Z [ 2025-08-26T19:52:47.4948247Z _Ty=int 2025-08-26T19:52:47.4948480Z ] 2025-08-26T19:52:47.5268572Z tmpxft_00001384_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-08-26T19:52:47.5270049Z with 2025-08-26T19:52:47.5270285Z [ 2025-08-26T19:52:47.5270480Z _Ty=int 2025-08-26T19:52:47.5270715Z ] 2025-08-26T19:52:47.5271192Z [4122/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceOps.cpp.obj 2025-08-26T19:52:47.8151818Z [4123/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cpp.obj 2025-08-26T19:52:48.0378835Z [4124/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cpp.obj 2025-08-26T19:52:48.2448293Z [4125/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cpp.obj 2025-08-26T19:52:48.3937175Z [4126/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShapeCUDA.cpp.obj 2025-08-26T19:52:48.4492612Z [4127/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\jit_utils.cpp.obj 2025-08-26T19:52:48.9158321Z [4128/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\flash_attn\flash_api.cpp.obj 2025-08-26T19:52:48.9381640Z [4129/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlas.cpp.obj 2025-08-26T19:52:49.0331585Z [4130/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDABlas.cpp.obj 2025-08-26T19:52:49.1593645Z [4131/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasLegacy.cpp.obj 2025-08-26T19:52:49.1800891Z [4132/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasImpl.cpp.obj 2025-08-26T19:52:49.5033807Z [4133/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\CudaIPCTypes.cpp.obj 2025-08-26T19:52:49.6151867Z [4134/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\CUDAPluggableAllocator.cpp.obj 2025-08-26T19:52:50.3826678Z [4135/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.cpp.obj 2025-08-26T19:52:50.4145624Z [4136/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\memory_snapshot.cpp.obj 2025-08-26T19:52:50.5415297Z [4137/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cpp.obj 2025-08-26T19:52:50.6030764Z [4138/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\shim_cuda.cpp.obj 2025-08-26T19:52:51.9996921Z [4139/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\comm.cpp.obj 2025-08-26T19:52:52.9666250Z [4140/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion_cuda.cpp.obj 2025-08-26T19:52:53.0043600Z [4141/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.cpp.obj 2025-08-26T19:52:53.0626578Z [4142/7555] Building CXX object caffe2\CMakeFiles\torch.dir\__\empty.cpp.obj 2025-08-26T19:52:53.3978579Z [4143/7555] Building CXX object caffe2\torch\lib\libshm_windows\CMakeFiles\shm.dir\core.cpp.obj 2025-08-26T19:52:54.0084375Z [4144/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\tensorexpr\cuda_codegen.cpp.obj 2025-08-26T19:52:54.0086759Z 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-08-26T19:52:54.0088438Z with 2025-08-26T19:52:54.0088814Z [ 2025-08-26T19:52:54.0089210Z T=int 2025-08-26T19:52:54.0089589Z ] 2025-08-26T19:52:54.0090762Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-08-26T19:52:54.0817202Z 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-08-26T19:52:54.0818896Z with 2025-08-26T19:52:54.0819146Z [ 2025-08-26T19:52:54.0819352Z T=int 2025-08-26T19:52:54.0819605Z ] 2025-08-26T19:52:54.0820301Z [4145/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\autograd\functions\comm.cpp.obj 2025-08-26T19:52:54.1665077Z [4146/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterCUDA_0.cpp.obj 2025-08-26T19:52:54.5539458Z [4147/7555] Building CXX object test_jit\CMakeFiles\jitbackend_test.dir\test_backend_lib.cpp.obj 2025-08-26T19:52:55.5168480Z [4148/7555] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_preprocess.cpp.obj 2025-08-26T19:52:56.1192154Z [4149/7555] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\__\__\__\torch\csrc\jit\mobile\profiler_edge.cpp.obj 2025-08-26T19:52:56.1571856Z [4150/7555] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_lib.cpp.obj 2025-08-26T19:52:56.2093297Z [4151/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\runtime\register_cuda_ops.cpp.obj 2025-08-26T19:52:56.9012532Z [4152/7555] Building CUDA object test_cpp_c10d\CMakeFiles\c10d_cuda_test.dir\CUDATest.cu.obj 2025-08-26T19:52:57.9342570Z CUDATest.cu 2025-08-26T19:52:57.9342921Z tmpxft_000014c8_00000000-7_CUDATest.cudafe1.cpp 2025-08-26T19:52:57.9343580Z [4153/7555] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\profiler\stubs\cuda.cpp.obj 2025-08-26T19:53:02.6058085Z [4154/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_4.cpp.obj 2025-08-26T19:53:02.6845915Z [4155/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_0.cpp.obj 2025-08-26T19:53:02.7546227Z [4156/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_3.cpp.obj 2025-08-26T19:53:02.8261897Z [4157/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_2.cpp.obj 2025-08-26T19:53:02.8985389Z [4158/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_1.cpp.obj 2025-08-26T19:53:03.7395021Z [4159/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_variable_methods.cpp.obj 2025-08-26T19:53:04.1888475Z [4160/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nn_functions.cpp.obj 2025-08-26T19:53:04.3365318Z [4161/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_fft_functions.cpp.obj 2025-08-26T19:53:04.7106613Z [4162/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_2.cpp.obj 2025-08-26T19:53:04.8038139Z [4163/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_1.cpp.obj 2025-08-26T19:53:04.8297904Z [4164/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_0.cpp.obj 2025-08-26T19:53:04.9280564Z [4165/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_linalg_functions.cpp.obj 2025-08-26T19:53:05.2507350Z [4166/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DataLoader.cpp.obj 2025-08-26T19:53:05.3616461Z [4167/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_sparse_functions.cpp.obj 2025-08-26T19:53:05.3948259Z [4168/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nested_functions.cpp.obj 2025-08-26T19:53:05.7279021Z [4169/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_enum_tag.cpp.obj 2025-08-26T19:53:05.8199355Z [4170/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_return_types.cpp.obj 2025-08-26T19:53:06.1160047Z [4171/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_special_functions.cpp.obj 2025-08-26T19:53:06.2957842Z [4172/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DeviceAccelerator.cpp.obj 2025-08-26T19:53:06.3916483Z [4173/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Device.cpp.obj 2025-08-26T19:53:06.4645562Z [4174/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Dtype.cpp.obj 2025-08-26T19:53:07.2689339Z [4175/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Layout.cpp.obj 2025-08-26T19:53:07.3663871Z [4176/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\MemoryFormat.cpp.obj 2025-08-26T19:53:07.5350179Z [4177/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\QScheme.cpp.obj 2025-08-26T19:53:08.5519733Z [4178/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\PyInterpreterHooks.cpp.obj 2025-08-26T19:53:09.2629766Z [4179/7555] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Unique.cu.obj 2025-08-26T19:53:09.3480321Z Unique.cu 2025-08-26T19:53:09.3480665Z tmpxft_00000020_00000000-7_Unique.cudafe1.cpp 2025-08-26T19:53:09.3481273Z [4180/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\python_dimname.cpp.obj 2025-08-26T19:53:09.8657804Z [4181/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DynamicTypes.cpp.obj 2025-08-26T19:53:10.7284007Z [4182/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Size.cpp.obj 2025-08-26T19:53:11.0375911Z [4183/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Exceptions.cpp.obj 2025-08-26T19:53:11.0637256Z [4184/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\PyInterpreter.cpp.obj 2025-08-26T19:53:11.1183870Z [4185/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Generator.cpp.obj 2025-08-26T19:53:11.8629862Z [4186/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Module.cpp.obj 2025-08-26T19:53:14.4694524Z [4187/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageMethods.cpp.obj 2025-08-26T19:53:14.5238641Z [4188/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Storage.cpp.obj 2025-08-26T19:53:14.6449855Z [4189/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\TypeInfo.cpp.obj 2025-08-26T19:53:14.7147984Z [4190/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageSharing.cpp.obj 2025-08-26T19:53:14.7953754Z [4191/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Event.cpp.obj 2025-08-26T19:53:14.8504638Z [4192/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Stream.cpp.obj 2025-08-26T19:53:15.7866996Z [4193/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_anomaly_mode.cpp.obj 2025-08-26T19:53:15.9214565Z [4194/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\api\src\python\init.cpp.obj 2025-08-26T19:53:15.9491983Z [4195/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\profiler_python.cpp.obj 2025-08-26T19:53:15.9690462Z [4196/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_cpp_function.cpp.obj 2025-08-26T19:53:18.3018549Z [4197/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_saved_variable_hooks.cpp.obj 2025-08-26T19:53:18.6110254Z [4198/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\functions\init.cpp.obj 2025-08-26T19:53:19.2067038Z [4199/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\init.cpp.obj 2025-08-26T19:53:19.3745016Z [4200/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_hook.cpp.obj 2025-08-26T19:53:19.4900725Z [4201/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_engine.cpp.obj 2025-08-26T19:53:19.5680689Z [4202/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_legacy_variable.cpp.obj 2025-08-26T19:53:20.7065684Z [4203/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cache_entry.cpp.obj 2025-08-26T19:53:20.7583359Z [4204/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_function.cpp.obj 2025-08-26T19:53:21.4733776Z [4205/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpp_shim.cpp.obj 2025-08-26T19:53:21.9375818Z [4206/7555] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame.c.obj 2025-08-26T19:53:21.9621968Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-08-26T19:53:21.9623383Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-08-26T19:53:21.9624255Z [4207/7555] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpython_defs.c.obj 2025-08-26T19:53:22.0190877Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-08-26T19:53:22.0191907Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-08-26T19:53:22.0192916Z [4208/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable_indexing.cpp.obj 2025-08-26T19:53:22.1440670Z [4209/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_torch_functions_manual.cpp.obj 2025-08-26T19:53:22.8361655Z [4210/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\extra_state.cpp.obj 2025-08-26T19:53:22.8499481Z [4211/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame_cpp.cpp.obj 2025-08-26T19:53:22.8946087Z [4212/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable.cpp.obj 2025-08-26T19:53:22.8982817Z [4213/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\framelocals_mapping.cpp.obj 2025-08-26T19:53:23.1050783Z [4214/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\python_compiled_autograd.cpp.obj 2025-08-26T19:53:23.2317402Z [4215/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\fx\node.cpp.obj 2025-08-26T19:53:23.7488715Z [4216/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\utils.cpp.obj 2025-08-26T19:53:23.8812824Z [4217/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\init.cpp.obj 2025-08-26T19:53:24.3018083Z [4218/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\upgrader.cpp.obj 2025-08-26T19:53:24.4842488Z [4219/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_nested_functions_manual.cpp.obj 2025-08-26T19:53:24.7112690Z [4220/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\example_upgraders.cpp.obj 2025-08-26T19:53:24.8774174Z [4221/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\pybind.cpp.obj 2025-08-26T19:53:25.7028340Z [4222/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_package\pybind.cpp.obj 2025-08-26T19:53:25.9089624Z [4223/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_runner\pybind.cpp.obj 2025-08-26T19:53:26.1901078Z [4224/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\guards.cpp.obj 2025-08-26T19:53:26.7470066Z [4225/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mtia\Module.cpp.obj 2025-08-26T19:53:26.8341702Z [4226/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mps\Module.cpp.obj 2025-08-26T19:53:27.0304233Z [4227/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\resize_storage_bytes.cpp.obj 2025-08-26T19:53:27.5463090Z [4228/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\static_cuda_launcher.cpp.obj 2025-08-26T19:53:27.7657188Z [4229/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\functorch\init.cpp.obj 2025-08-26T19:53:28.5042322Z [4230/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\cast_all_constant_to_floating.cpp.obj 2025-08-26T19:53:28.5853567Z [4231/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_holder.cpp.obj 2025-08-26T19:53:28.7036298Z [4232/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\deduplicate_initializers.cpp.obj 2025-08-26T19:53:29.0326665Z [4233/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_meta_info.cpp.obj 2025-08-26T19:53:29.8342714Z [4234/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eliminate_unused_items.cpp.obj 2025-08-26T19:53:30.6749942Z [4235/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\backends\backend_init.cpp.obj 2025-08-26T19:53:30.9139191Z [4236/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_fold.cpp.obj 2025-08-26T19:53:31.2409342Z [4237/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_map.cpp.obj 2025-08-26T19:53:31.3831305Z [4238/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\init.cpp.obj 2025-08-26T19:53:31.6958985Z [4239/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\list_model_parameters.cpp.obj 2025-08-26T19:53:31.8408990Z [4240/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_substitution.cpp.obj 2025-08-26T19:53:31.9477227Z [4241/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eval_peephole.cpp.obj 2025-08-26T19:53:32.4757204Z [4242/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\peephole.cpp.obj 2025-08-26T19:53:32.5476028Z [4243/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\helper.cpp.obj 2025-08-26T19:53:32.6490281Z [4244/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\preprocess_for_onnx.cpp.obj 2025-08-26T19:53:32.8368960Z [4245/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\scalar_type_analysis.cpp.obj 2025-08-26T19:53:32.8656762Z [4246/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\prepare_division_for_onnx.cpp.obj 2025-08-26T19:53:33.0793188Z [4247/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\onnx_log.cpp.obj 2025-08-26T19:53:33.4142268Z [4248/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\fixup_onnx_controlflow.cpp.obj 2025-08-26T19:53:33.4742848Z [4249/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx.cpp.obj 2025-08-26T19:53:33.5402397Z [4250/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.cpp.obj 2025-08-26T19:53:34.1895553Z [4251/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\naming.cpp.obj 2025-08-26T19:53:34.3322013Z [4252/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_extraction.cpp.obj 2025-08-26T19:53:34.4589512Z [4253/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.cpp.obj 2025-08-26T19:53:34.4972959Z [4254/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\common.cpp.obj 2025-08-26T19:53:34.8904548Z [4255/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\unpack_quantized_weights.cpp.obj 2025-08-26T19:53:35.3794772Z [4256/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.cpp.obj 2025-08-26T19:53:35.4550395Z [4257/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.cpp.obj 2025-08-26T19:53:37.1826774Z [4258/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\pybind_utils.cpp.obj 2025-08-26T19:53:37.2200015Z [4259/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\shape_type_inference.cpp.obj 2025-08-26T19:53:38.2438940Z [4260/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_arg_flatten.cpp.obj 2025-08-26T19:53:38.2949725Z [4261/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_custom_class.cpp.obj 2025-08-26T19:53:38.6712100Z [4262/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_dict.cpp.obj 2025-08-26T19:53:39.0910733Z [4263/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\tree_views.cpp.obj 2025-08-26T19:53:39.2377289Z [4264/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_interpreter.cpp.obj 2025-08-26T19:53:39.3561279Z [4265/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_ir.cpp.obj 2025-08-26T19:53:40.2401575Z [4266/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tree_views.cpp.obj 2025-08-26T19:53:40.9961318Z [4267/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tracer.cpp.obj 2025-08-26T19:53:41.0674532Z [4268/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_list.cpp.obj 2025-08-26T19:53:41.9801523Z [4269/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\multiprocessing\init.cpp.obj 2025-08-26T19:53:42.2003496Z [4270/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\concrete_module_type.cpp.obj 2025-08-26T19:53:42.2005581Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(629): warning C4996: 'pybind11::handle::operator ==': Use obj1.is(obj2) instead 2025-08-26T19:53:42.2007672Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(629): note: the template instantiation context (the oldest one first) is 2025-08-26T19:53:42.2011620Z 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-08-26T19:53:42.2014856Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(2232): note: see reference to function template instantiation 'bool std::equal(const _InIt1,const _InIt1,const _InIt2)' being compiled 2025-08-26T19:53:42.2015968Z with 2025-08-26T19:53:42.2016152Z [ 2025-08-26T19:53:42.2016376Z _Ty=pybind11::object, 2025-08-26T19:53:42.2016730Z _InIt1=const pybind11::object *, 2025-08-26T19:53:42.2017042Z _InIt2=const pybind11::object * 2025-08-26T19:53:42.2017371Z ] 2025-08-26T19:53:42.2018750Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5428): note: see reference to function template instantiation 'bool std::equal<_InIt1,_InIt2,std::equal_to>(const _InIt1,const _InIt1,const _InIt2,_Pr)' being compiled 2025-08-26T19:53:42.2019915Z with 2025-08-26T19:53:42.2020167Z [ 2025-08-26T19:53:42.2020388Z _InIt1=const pybind11::object *, 2025-08-26T19:53:42.2864265Z _InIt2=const pybind11::object *, 2025-08-26T19:53:42.2864670Z _Pr=std::equal_to 2025-08-26T19:53:42.2864940Z ] 2025-08-26T19:53:42.2865975Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5411): note: see reference to function template instantiation 'bool std::equal_to::operator ()(_Ty1,_Ty2) noexcept(false) const' being compiled 2025-08-26T19:53:42.2867209Z with 2025-08-26T19:53:42.2867620Z [ 2025-08-26T19:53:42.2867836Z _Ty=pybind11::object, 2025-08-26T19:53:42.2868108Z _Ty1=const pybind11::object &, 2025-08-26T19:53:42.2869534Z _Ty2=const pybind11::object & 2025-08-26T19:53:42.2869829Z ] 2025-08-26T19:53:42.2870286Z [4271/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\monitor\python_init.cpp.obj 2025-08-26T19:53:42.8140172Z [4272/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\script_init.cpp.obj 2025-08-26T19:53:42.8892707Z [4273/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_sugared_value.cpp.obj 2025-08-26T19:53:43.2887975Z [4274/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\runtime\static\init.cpp.obj 2025-08-26T19:53:43.4096527Z [4275/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\combined_traceback.cpp.obj 2025-08-26T19:53:44.3719034Z [4276/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\tensorexpr\tensorexpr_init.cpp.obj 2025-08-26T19:53:46.0118177Z [4277/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\onnx\init.cpp.obj 2025-08-26T19:53:46.3062494Z [4278/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\init.cpp.obj 2025-08-26T19:53:46.5035023Z [4279/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\serialization.cpp.obj 2025-08-26T19:53:46.6032492Z [4280/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\tensor\python_tensor.cpp.obj 2025-08-26T19:53:46.9386139Z [4281/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\device_lazy_init.cpp.obj 2025-08-26T19:53:46.9461816Z [4282/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\object_ptr.cpp.obj 2025-08-26T19:53:47.3018388Z [4283/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\init.cpp.obj 2025-08-26T19:53:47.3230237Z [4284/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\throughput_benchmark.cpp.obj 2025-08-26T19:53:47.3763218Z [4285/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\invalid_arguments.cpp.obj 2025-08-26T19:53:47.6405645Z [4286/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pyobject_preservation.cpp.obj 2025-08-26T19:53:48.1219770Z [4287/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils.cpp.obj 2025-08-26T19:53:48.3674359Z [4288/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_symnode.cpp.obj 2025-08-26T19:53:48.4465267Z [4289/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pybind.cpp.obj 2025-08-26T19:53:48.6499321Z [4290/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\structseq.cpp.obj 2025-08-26T19:53:49.3356119Z [4291/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_dtypes.cpp.obj 2025-08-26T19:53:49.4215142Z [4292/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_layouts.cpp.obj 2025-08-26T19:53:49.5923394Z [4293/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_memoryformats.cpp.obj 2025-08-26T19:53:50.3126622Z [4294/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_qschemes.cpp.obj 2025-08-26T19:53:50.4895497Z [4295/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\nested.cpp.obj 2025-08-26T19:53:50.6315860Z [4296/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_arg_parser.cpp.obj 2025-08-26T19:53:50.8437499Z [4297/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_dispatch.cpp.obj 2025-08-26T19:53:51.5794978Z [4298/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_types.cpp.obj 2025-08-26T19:53:51.6906300Z [4299/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\verbose.cpp.obj 2025-08-26T19:53:51.7815537Z [4300/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\disable_torch_function.cpp.obj 2025-08-26T19:53:51.8098630Z [4301/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_apply.cpp.obj 2025-08-26T19:53:52.4523377Z [4302/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cpu\Module.cpp.obj 2025-08-26T19:53:52.5999467Z [4303/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\instruction_counter\Module.cpp.obj 2025-08-26T19:53:53.0819570Z [4304/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_list.cpp.obj 2025-08-26T19:53:53.5288171Z [4305/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_new.cpp.obj 2025-08-26T19:53:53.7441026Z [4306/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\python_util.cpp.obj 2025-08-26T19:53:53.9715368Z [4307/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\itt.cpp.obj 2025-08-26T19:53:54.1368082Z [4308/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_numpy.cpp.obj 2025-08-26T19:53:56.0526570Z [4309/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\init.cpp.obj 2025-08-26T19:53:56.1677825Z [4310/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\__\test\cpp\jit\torch_python_test.cpp.obj 2025-08-26T19:53:56.5710581Z [4311/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\nativert\python\Bindings.cpp.obj 2025-08-26T19:53:57.5117799Z [4312/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Event.cpp.obj 2025-08-26T19:53:57.7433729Z [4313/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudart.cpp.obj 2025-08-26T19:53:57.8745607Z [4314/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\python_comm.cpp.obj 2025-08-26T19:53:57.9676622Z [4315/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Module.cpp.obj 2025-08-26T19:53:58.0598960Z [4316/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Stream.cpp.obj 2025-08-26T19:53:58.7128768Z [4317/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\nvtx.cpp.obj 2025-08-26T19:53:58.9249085Z [4318/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\GdsFile.cpp.obj 2025-08-26T19:53:59.1677326Z [4319/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudnn.cpp.obj 2025-08-26T19:53:59.9250930Z [4320/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Graph.cpp.obj 2025-08-26T19:54:00.0936143Z [4321/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\MemPool.cpp.obj 2025-08-26T19:54:00.2108674Z [4322/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:00.4456586Z [4323/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:00.4549040Z [4324/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:00.4566440Z [4325/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:00.5686906Z [4326/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:00.6195617Z [4327/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:00.6382020Z [4328/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:00.6584569Z [4329/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:00.7504147Z [4330/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:00.7574470Z [4331/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:00.8418997Z [4332/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:00.9029946Z [4333/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:00.9432844Z [4334/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:00.9639283Z [4335/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:01.0618911Z [4336/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:01.0837811Z [4337/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:01.1869848Z [4338/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:01.2576183Z [4339/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:01.2692741Z [4340/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:01.2794136Z [4341/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:01.3892422Z [4342/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:01.4618861Z [4343/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\utils.cpp.obj 2025-08-26T19:54:01.4707319Z [4344/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:01.4890592Z [4345/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:01.5115256Z [4346/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:01.5303785Z [4347/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:01.6695664Z [4348/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:01.7487798Z [4349/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:01.7504592Z [4350/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:01.7520972Z [4351/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:01.9364790Z [4352/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u3.c.obj 2025-08-26T19:54:01.9601020Z [4353/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u2.c.obj 2025-08-26T19:54:02.0607174Z [4354/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:02.0786697Z [4355/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:02.1268033Z [4356/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:02.1305811Z [4357/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:02.1369439Z [4358/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:02.2151007Z [4359/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:02.2618191Z [4360/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:02.2798496Z [4361/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:02.3542696Z [4362/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:02.3556037Z [4363/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:02.4631493Z [4364/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:02.5085700Z [4365/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:02.5253425Z [4366/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\python_comm_hook.cpp.obj 2025-08-26T19:54:02.5607442Z [4367/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:02.7413959Z [4368/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:02.8207728Z [4369/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:02.8220083Z [4370/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:02.8231584Z [4371/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:02.8241919Z [4372/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:02.8254924Z [4373/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:02.9734500Z [4374/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:02.9849809Z [4375/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:02.9862212Z [4376/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:03.0139214Z [4377/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:03.0544933Z [4378/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:03.0556551Z [4379/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:03.1357091Z [4380/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:03.1455133Z [4381/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:03.1499019Z [4382/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:03.2412888Z [4383/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:03.2533333Z [4384/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:03.3206393Z [4385/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:03.4194936Z [4386/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:03.4245007Z [4387/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:03.4307315Z [4388/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:03.4484220Z [4389/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:03.4919762Z [4390/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:03.5127090Z [4391/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:03.6398001Z [4392/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:03.6444841Z [4393/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:03.6501194Z [4394/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:03.6757023Z [4395/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:03.6768063Z [4396/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:03.7352462Z [4397/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:03.7694951Z [4398/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:03.7943270Z [4399/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:03.8197638Z [4400/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:03.8388791Z [4401/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:03.8501171Z [4402/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:03.8886461Z [4403/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:03.9397738Z [4404/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:03.9474694Z [4405/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:03.9920741Z [4406/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:04.0832825Z [4407/7555] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\init.cpp.obj 2025-08-26T19:54:04.1828905Z [4408/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-08-26T19:54:04.1845514Z [4409/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-08-26T19:54:04.1858082Z [4410/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u1.c.obj 2025-08-26T19:54:04.1869841Z [4411/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-rndnu-scalar.c.obj 2025-08-26T19:54:04.1881153Z [4412/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u2.c.obj 2025-08-26T19:54:04.1893782Z [4413/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-08-26T19:54:04.3174150Z [4414/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u2.c.obj 2025-08-26T19:54:04.7201118Z [4415/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u2.c.obj 2025-08-26T19:54:04.7260381Z [4416/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u2.c.obj 2025-08-26T19:54:04.7273083Z [4417/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u1.c.obj 2025-08-26T19:54:04.7284685Z [4418/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u1.c.obj 2025-08-26T19:54:04.7809484Z [4419/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u2.c.obj 2025-08-26T19:54:04.7873604Z [4420/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u2.c.obj 2025-08-26T19:54:04.7887524Z [4421/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u1.c.obj 2025-08-26T19:54:04.8588633Z [4422/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-08-26T19:54:04.8639009Z [4423/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-08-26T19:54:04.8651197Z [4424/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u2.c.obj 2025-08-26T19:54:04.8948695Z [4425/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c2.c.obj 2025-08-26T19:54:04.8963839Z [4426/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c4.c.obj 2025-08-26T19:54:05.0016627Z [4427/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u1.c.obj 2025-08-26T19:54:05.0075517Z [4428/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u2.c.obj 2025-08-26T19:54:05.0099496Z [4429/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c4.c.obj 2025-08-26T19:54:05.0111124Z [4430/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c2.c.obj 2025-08-26T19:54:05.0721431Z [4431/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u16.c.obj 2025-08-26T19:54:05.0733695Z [4432/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u8.c.obj 2025-08-26T19:54:05.2640774Z [4433/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u4.c.obj 2025-08-26T19:54:05.2710775Z [4434/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u4.c.obj 2025-08-26T19:54:05.2721749Z [4435/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u2.c.obj 2025-08-26T19:54:05.2732520Z [4436/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u4.c.obj 2025-08-26T19:54:05.2757801Z [4437/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u4.c.obj 2025-08-26T19:54:05.2768988Z [4438/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-gio-scalar.c.obj 2025-08-26T19:54:05.2899459Z [4439/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u4.c.obj 2025-08-26T19:54:05.5154956Z [4440/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x4-scalar-int.c.obj 2025-08-26T19:54:05.5221205Z [4441/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x2-scalar-int.c.obj 2025-08-26T19:54:05.5232721Z [4442/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x1-scalar-int.c.obj 2025-08-26T19:54:05.6040489Z [4443/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x1-scalar-int.c.obj 2025-08-26T19:54:05.6052180Z [4444/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x4-scalar-int.c.obj 2025-08-26T19:54:05.6064887Z [4445/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x2-scalar-int.c.obj 2025-08-26T19:54:05.6124259Z [4446/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x2-scalar-int.c.obj 2025-08-26T19:54:05.6199933Z [4447/7555] 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-08-26T19:54:05.6355230Z [4448/7555] 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-08-26T19:54:05.7253651Z [4449/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x2-scalar-int.c.obj 2025-08-26T19:54:05.7535529Z [4450/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x4-scalar-int.c.obj 2025-08-26T19:54:05.7551927Z [4451/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x1-scalar-int.c.obj 2025-08-26T19:54:05.7563360Z [4452/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x2-scalar-int.c.obj 2025-08-26T19:54:05.7631221Z [4453/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x1-scalar-int.c.obj 2025-08-26T19:54:05.8108473Z [4454/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x2-scalar-int.c.obj 2025-08-26T19:54:05.8184014Z [4455/7555] 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-08-26T19:54:05.8831819Z [4456/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-1x4-scalar.c.obj 2025-08-26T19:54:05.8885032Z [4457/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x4-scalar-int.c.obj 2025-08-26T19:54:05.8896828Z [4458/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x4-scalar.c.obj 2025-08-26T19:54:05.9110625Z [4459/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x1-scalar.c.obj 2025-08-26T19:54:05.9404829Z [4460/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x2-scalar.c.obj 2025-08-26T19:54:05.9619385Z [4461/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x2-scalar.c.obj 2025-08-26T19:54:05.9819907Z [4462/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x1-scalar.c.obj 2025-08-26T19:54:06.2312583Z [4463/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x4-scalar.c.obj 2025-08-26T19:54:06.2529197Z [4464/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-float.c.obj 2025-08-26T19:54:06.2575930Z [4465/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-float.c.obj 2025-08-26T19:54:06.3383221Z [4466/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-float.c.obj 2025-08-26T19:54:06.3395414Z [4467/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-int.c.obj 2025-08-26T19:54:06.3406646Z [4468/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-int.c.obj 2025-08-26T19:54:06.3418492Z [4469/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-int.c.obj 2025-08-26T19:54:06.3994456Z [4470/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-float.c.obj 2025-08-26T19:54:06.4131334Z [4471/7555] 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-08-26T19:54:06.4350367Z [4472/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-int.c.obj 2025-08-26T19:54:06.5739881Z [4473/7555] 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-08-26T19:54:06.5753272Z [4474/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x4-gemm-gio-scalar.c.obj 2025-08-26T19:54:06.5764203Z [4475/7555] 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-08-26T19:54:06.5775631Z [4476/7555] 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-08-26T19:54:06.5788476Z [4477/7555] 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-08-26T19:54:06.5937256Z [4478/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-scalar.c.obj 2025-08-26T19:54:06.6078411Z [4479/7555] 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-08-26T19:54:06.7663731Z [4480/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-3x-scalar.c.obj 2025-08-26T19:54:06.7711160Z [4481/7555] 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-08-26T19:54:06.7722505Z [4482/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-scalar.c.obj 2025-08-26T19:54:06.7761150Z [4483/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-scalar.c.obj 2025-08-26T19:54:06.8654097Z [4484/7555] 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-08-26T19:54:06.8669733Z [4485/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-scalar.c.obj 2025-08-26T19:54:06.8682007Z [4486/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-2x-scalar.c.obj 2025-08-26T19:54:06.9329989Z [4487/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-int.c.obj 2025-08-26T19:54:06.9382068Z [4488/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-float.c.obj 2025-08-26T19:54:06.9676688Z [4489/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-float.c.obj 2025-08-26T19:54:06.9897815Z [4490/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-float.c.obj 2025-08-26T19:54:06.9942658Z [4491/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-float.c.obj 2025-08-26T19:54:06.9990257Z [4492/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-int.c.obj 2025-08-26T19:54:07.0001263Z [4493/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-int.c.obj 2025-08-26T19:54:07.0665096Z [4494/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-float.c.obj 2025-08-26T19:54:07.0706628Z [4495/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-int.c.obj 2025-08-26T19:54:07.0752425Z [4496/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-float.c.obj 2025-08-26T19:54:07.2571533Z [4497/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-int.c.obj 2025-08-26T19:54:07.2583852Z [4498/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-int.c.obj 2025-08-26T19:54:07.2595060Z [4499/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-float.c.obj 2025-08-26T19:54:07.2655714Z [4500/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-float.c.obj 2025-08-26T19:54:07.2666760Z [4501/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-float.c.obj 2025-08-26T19:54:07.2677957Z [4502/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-int.c.obj 2025-08-26T19:54:07.3129871Z [4503/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-int.c.obj 2025-08-26T19:54:07.3837130Z [4504/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-float.c.obj 2025-08-26T19:54:07.3888038Z [4505/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-float.c.obj 2025-08-26T19:54:07.4348801Z [4506/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-int.c.obj 2025-08-26T19:54:07.4402188Z [4507/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-int.c.obj 2025-08-26T19:54:07.4413355Z [4508/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-float.c.obj 2025-08-26T19:54:07.4424903Z [4509/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-float.c.obj 2025-08-26T19:54:07.4989656Z [4510/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-int.c.obj 2025-08-26T19:54:07.5009628Z [4511/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-int.c.obj 2025-08-26T19:54:07.6813841Z [4512/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-float.c.obj 2025-08-26T19:54:07.6826946Z [4513/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-int.c.obj 2025-08-26T19:54:07.6838011Z [4514/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-int.c.obj 2025-08-26T19:54:07.6850704Z [4515/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-float.c.obj 2025-08-26T19:54:07.6864055Z [4516/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-int.c.obj 2025-08-26T19:54:07.6877191Z [4517/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-float.c.obj 2025-08-26T19:54:07.6890131Z [4518/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-float.c.obj 2025-08-26T19:54:07.8474248Z [4519/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse.c.obj 2025-08-26T19:54:07.8519137Z [4520/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse-acc2.c.obj 2025-08-26T19:54:07.8576627Z [4521/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse-acc2.c.obj 2025-08-26T19:54:07.8695953Z [4522/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse-acc2.c.obj 2025-08-26T19:54:07.8778904Z [4523/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse-acc2.c.obj 2025-08-26T19:54:07.8831329Z [4524/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-1x1.c.obj 2025-08-26T19:54:07.8887287Z [4525/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse.c.obj 2025-08-26T19:54:08.0027327Z [4526/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.0090652Z [4527/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.0102614Z [4528/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.obj 2025-08-26T19:54:08.0115048Z [4529/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse.c.obj 2025-08-26T19:54:08.0128208Z [4530/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse.c.obj 2025-08-26T19:54:08.0140362Z [4531/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.0517720Z [4532/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.1524981Z [4533/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.1568244Z [4534/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse.c.obj 2025-08-26T19:54:08.1614828Z [4535/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.1626883Z [4536/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse.c.obj 2025-08-26T19:54:08.1843513Z [4537/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse.c.obj 2025-08-26T19:54:08.2097293Z [4538/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.2652957Z [4539/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.3097968Z [4540/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse.c.obj 2025-08-26T19:54:08.3153647Z [4541/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse.c.obj 2025-08-26T19:54:08.3166543Z [4542/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.3427395Z [4543/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse.c.obj 2025-08-26T19:54:08.3851576Z [4544/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.4716878Z [4545/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.5062947Z [4546/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.5158127Z [4547/7555] 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-08-26T19:54:08.5169702Z [4548/7555] 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-08-26T19:54:08.5181190Z [4549/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse-acc2.c.obj 2025-08-26T19:54:08.5192500Z [4550/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse.c.obj 2025-08-26T19:54:08.5246876Z [4551/7555] 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-08-26T19:54:08.5871466Z [4552/7555] 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-08-26T19:54:08.6494431Z [4553/7555] 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-08-26T19:54:08.6506803Z [4554/7555] 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-08-26T19:54:08.6557583Z [4555/7555] 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-08-26T19:54:08.6569608Z [4556/7555] 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-08-26T19:54:08.6617085Z [4557/7555] 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-08-26T19:54:08.6926193Z [4558/7555] 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-08-26T19:54:08.7600866Z [4559/7555] 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-08-26T19:54:08.7759772Z [4560/7555] 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-08-26T19:54:08.7771783Z [4561/7555] 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-08-26T19:54:08.8058568Z [4562/7555] 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-08-26T19:54:08.8217964Z [4563/7555] 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-08-26T19:54:08.8552941Z [4564/7555] 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-08-26T19:54:08.8610787Z [4565/7555] 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-08-26T19:54:08.8925838Z [4566/7555] 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-08-26T19:54:08.8937428Z [4567/7555] 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-08-26T19:54:08.8948335Z [4568/7555] 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-08-26T19:54:08.9348820Z [4569/7555] 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-08-26T19:54:09.0124338Z [4570/7555] 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-08-26T19:54:09.0669895Z [4571/7555] 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-08-26T19:54:09.0682034Z [4572/7555] 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-08-26T19:54:09.0870957Z [4573/7555] 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-08-26T19:54:09.0920761Z [4574/7555] 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-08-26T19:54:09.1073783Z [4575/7555] 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-08-26T19:54:09.1127514Z [4576/7555] 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-08-26T19:54:09.1979969Z [4577/7555] 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-08-26T19:54:09.1997840Z [4578/7555] 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-08-26T19:54:09.2657463Z [4579/7555] 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-08-26T19:54:09.2804195Z [4580/7555] 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-08-26T19:54:09.2869408Z [4581/7555] 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-08-26T19:54:09.2881866Z [4582/7555] 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-08-26T19:54:09.3371879Z [4583/7555] 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-08-26T19:54:09.3856401Z [4584/7555] 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-08-26T19:54:09.3907094Z [4585/7555] 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-08-26T19:54:09.4503627Z [4586/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-dup.c.obj 2025-08-26T19:54:09.4603564Z [4587/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-dup.c.obj 2025-08-26T19:54:09.4616518Z [4588/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-load1.c.obj 2025-08-26T19:54:09.5245609Z [4589/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8s4-minmax-sse.c.obj 2025-08-26T19:54:09.5643247Z [4590/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8s4-minmax-sse.c.obj 2025-08-26T19:54:09.5657591Z [4591/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-dup.c.obj 2025-08-26T19:54:09.5670678Z [4592/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8s4-minmax-sse.c.obj 2025-08-26T19:54:09.6547497Z [4593/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-load1.c.obj 2025-08-26T19:54:09.7040815Z [4594/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8s4-minmax-sse.c.obj 2025-08-26T19:54:09.7596484Z [4595/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-dup.c.obj 2025-08-26T19:54:09.8248978Z [4596/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x2c4-minmax-sse.c.obj 2025-08-26T19:54:09.8259809Z [4597/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-load1.c.obj 2025-08-26T19:54:09.8311614Z [4598/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-dup.c.obj 2025-08-26T19:54:09.8335128Z [4599/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8s4-minmax-sse.c.obj 2025-08-26T19:54:09.8480226Z [4600/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-dup.c.obj 2025-08-26T19:54:09.9176242Z [4601/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-load1.c.obj 2025-08-26T19:54:09.9592115Z [4602/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-dup.c.obj 2025-08-26T19:54:09.9639529Z [4603/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-load1.c.obj 2025-08-26T19:54:09.9700593Z [4604/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-dup.c.obj 2025-08-26T19:54:09.9712063Z [4605/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8s4-minmax-sse.c.obj 2025-08-26T19:54:09.9767901Z [4606/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8s4-minmax-sse.c.obj 2025-08-26T19:54:10.0554919Z [4607/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8s4-minmax-sse.c.obj 2025-08-26T19:54:10.0914810Z [4608/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-load1.c.obj 2025-08-26T19:54:10.1311610Z [4609/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-dup.c.obj 2025-08-26T19:54:10.1360070Z [4610/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-load1.c.obj 2025-08-26T19:54:10.1879484Z [4611/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-load1.c.obj 2025-08-26T19:54:10.1891614Z [4612/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-dup.c.obj 2025-08-26T19:54:10.1903192Z [4613/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8s4-minmax-sse.c.obj 2025-08-26T19:54:10.1916328Z [4614/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8s4-minmax-sse.c.obj 2025-08-26T19:54:10.2901797Z [4615/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p4.c.obj 2025-08-26T19:54:10.3369737Z [4616/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c4.c.obj 2025-08-26T19:54:10.3798486Z [4617/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8s4-minmax-sse.c.obj 2025-08-26T19:54:10.3958847Z [4618/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-load1.c.obj 2025-08-26T19:54:10.3971688Z [4619/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-dup.c.obj 2025-08-26T19:54:10.3983583Z [4620/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8s4-minmax-sse.c.obj 2025-08-26T19:54:10.4032512Z [4621/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-dup.c.obj 2025-08-26T19:54:10.4796272Z [4622/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-dup.c.obj 2025-08-26T19:54:10.4807602Z [4623/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8s4-minmax-sse.c.obj 2025-08-26T19:54:10.5222700Z [4624/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x2c4-minmax-sse.c.obj 2025-08-26T19:54:10.5351902Z [4625/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-dup.c.obj 2025-08-26T19:54:10.5363232Z [4626/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8s4-minmax-sse.c.obj 2025-08-26T19:54:10.5416276Z [4627/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-load1.c.obj 2025-08-26T19:54:10.6102366Z [4628/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8s4-minmax-sse.c.obj 2025-08-26T19:54:11.1599016Z [4629/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-load1.c.obj 2025-08-26T19:54:11.8239156Z [4630/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u4.c.obj 2025-08-26T19:54:11.8250156Z [4631/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c64.c.obj 2025-08-26T19:54:11.8261501Z [4632/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c32.c.obj 2025-08-26T19:54:11.8272103Z [4633/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-dup.c.obj 2025-08-26T19:54:11.8794638Z [4634/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x8-minmax-sse.c.obj 2025-08-26T19:54:11.9267066Z [4635/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u8-acc2.c.obj 2025-08-26T19:54:11.9518392Z [4636/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u8-acc2.c.obj 2025-08-26T19:54:11.9777659Z [4637/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc2.c.obj 2025-08-26T19:54:11.9835110Z [4638/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u4.c.obj 2025-08-26T19:54:11.9845087Z [4639/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u12-acc3.c.obj 2025-08-26T19:54:11.9856108Z [4640/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u12-acc3.c.obj 2025-08-26T19:54:12.0001907Z [4641/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc2.c.obj 2025-08-26T19:54:12.0472530Z [4642/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc4.c.obj 2025-08-26T19:54:12.1294588Z [4643/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u4.c.obj 2025-08-26T19:54:12.1356646Z [4644/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc2.c.obj 2025-08-26T19:54:12.1409775Z [4645/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u8-acc2.c.obj 2025-08-26T19:54:12.1422418Z [4646/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u4.c.obj 2025-08-26T19:54:12.1433650Z [4647/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u12-acc3.c.obj 2025-08-26T19:54:12.1497607Z [4648/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u8-acc2.c.obj 2025-08-26T19:54:12.1845280Z [4649/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u12-acc3.c.obj 2025-08-26T19:54:12.2569113Z [4650/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc2.c.obj 2025-08-26T19:54:12.3136572Z [4651/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-16x1-minmax-sse.c.obj 2025-08-26T19:54:12.3149102Z [4652/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-sse.c.obj 2025-08-26T19:54:12.3160897Z [4653/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-sse.c.obj 2025-08-26T19:54:12.3360899Z [4654/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-sse-u4.c.obj 2025-08-26T19:54:12.3484894Z [4655/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-sse-u4.c.obj 2025-08-26T19:54:12.3497954Z [4656/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-sse-u4.c.obj 2025-08-26T19:54:12.4301654Z [4657/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-sse-u4.c.obj 2025-08-26T19:54:12.4362645Z [4658/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-sse-u4.c.obj 2025-08-26T19:54:12.4376398Z [4659/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-sse-u4.c.obj 2025-08-26T19:54:12.4438405Z [4660/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u4.c.obj 2025-08-26T19:54:12.5115765Z [4661/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-sse-u4.c.obj 2025-08-26T19:54:12.5184307Z [4662/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-sse-u4.c.obj 2025-08-26T19:54:12.5252932Z [4663/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-sse-u4.c.obj 2025-08-26T19:54:12.5694339Z [4664/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u4.c.obj 2025-08-26T19:54:12.5769686Z [4665/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u4.c.obj 2025-08-26T19:54:12.6027108Z [4666/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u4.c.obj 2025-08-26T19:54:12.6479615Z [4667/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-sse-u4.c.obj 2025-08-26T19:54:12.6551358Z [4668/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u4.c.obj 2025-08-26T19:54:12.6639613Z [4669/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-sse-u4.c.obj 2025-08-26T19:54:12.6917729Z [4670/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-sse-u4.c.obj 2025-08-26T19:54:12.7259185Z [4671/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u16.c.obj 2025-08-26T19:54:12.7321147Z [4672/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u12.c.obj 2025-08-26T19:54:12.7974179Z [4673/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u4.c.obj 2025-08-26T19:54:12.8040275Z [4674/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u4.c.obj 2025-08-26T19:54:12.8098965Z [4675/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u4.c.obj 2025-08-26T19:54:12.8113967Z [4676/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-sse-u4.c.obj 2025-08-26T19:54:12.8697241Z [4677/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c8-minmax-sse-2x.c.obj 2025-08-26T19:54:12.8813738Z [4678/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u8.c.obj 2025-08-26T19:54:12.9311511Z [4679/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u4.c.obj 2025-08-26T19:54:12.9404318Z [4680/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u16.c.obj 2025-08-26T19:54:12.9509697Z [4681/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u4.c.obj 2025-08-26T19:54:12.9527132Z [4682/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u8.c.obj 2025-08-26T19:54:13.0331746Z [4683/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u16.c.obj 2025-08-26T19:54:13.0510171Z [4684/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u8.c.obj 2025-08-26T19:54:13.0657998Z [4685/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u4.c.obj 2025-08-26T19:54:13.0835078Z [4686/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-sse.c.obj 2025-08-26T19:54:13.1208721Z [4687/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u16.c.obj 2025-08-26T19:54:13.1221331Z [4688/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u24.c.obj 2025-08-26T19:54:13.1233222Z [4689/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u8.c.obj 2025-08-26T19:54:13.1608721Z [4690/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u8.c.obj 2025-08-26T19:54:13.1783096Z [4691/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u24.c.obj 2025-08-26T19:54:13.1956960Z [4692/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u32.c.obj 2025-08-26T19:54:13.3107704Z [4693/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u8.c.obj 2025-08-26T19:54:13.3120964Z [4694/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vabs-sse2-u8.c.obj 2025-08-26T19:54:13.3205383Z [4695/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vneg-sse2-u8.c.obj 2025-08-26T19:54:13.3776288Z [4696/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u32.c.obj 2025-08-26T19:54:13.3834851Z [4697/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u16.c.obj 2025-08-26T19:54:13.3918129Z [4698/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u24.c.obj 2025-08-26T19:54:13.4177507Z [4699/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u16.c.obj 2025-08-26T19:54:13.4271308Z [4700/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u8.c.obj 2025-08-26T19:54:13.4350794Z [4701/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u24.c.obj 2025-08-26T19:54:13.4396650Z [4702/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u8.c.obj 2025-08-26T19:54:13.5353691Z [4703/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u16.c.obj 2025-08-26T19:54:13.5402385Z [4704/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u24.c.obj 2025-08-26T19:54:13.5453984Z [4705/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u4.c.obj 2025-08-26T19:54:13.5465820Z [4706/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u8-acc2.c.obj 2025-08-26T19:54:13.5514102Z [4707/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc4.c.obj 2025-08-26T19:54:13.5583775Z [4708/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u4.c.obj 2025-08-26T19:54:13.6192791Z [4709/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u4.c.obj 2025-08-26T19:54:13.7135461Z [4710/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u4.c.obj 2025-08-26T19:54:13.7244760Z [4711/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u4.c.obj 2025-08-26T19:54:13.7372473Z [4712/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u8.c.obj 2025-08-26T19:54:13.7386120Z [4713/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u8.c.obj 2025-08-26T19:54:13.7400860Z [4714/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u16.c.obj 2025-08-26T19:54:13.7415185Z [4715/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u4.c.obj 2025-08-26T19:54:13.7548021Z [4716/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u12.c.obj 2025-08-26T19:54:13.8425650Z [4717/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u8.c.obj 2025-08-26T19:54:13.8838203Z [4718/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u4.c.obj 2025-08-26T19:54:13.8850475Z [4719/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u16.c.obj 2025-08-26T19:54:13.8935102Z [4720/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u4.c.obj 2025-08-26T19:54:13.8990531Z [4721/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u4.c.obj 2025-08-26T19:54:13.9107547Z [4722/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u4.c.obj 2025-08-26T19:54:13.9464671Z [4723/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u4.c.obj 2025-08-26T19:54:13.9941838Z [4724/7555] 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-08-26T19:54:14.0042504Z [4725/7555] 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-08-26T19:54:14.0120897Z [4726/7555] 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-08-26T19:54:14.0177319Z [4727/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u4.c.obj 2025-08-26T19:54:14.0231518Z [4728/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u8.c.obj 2025-08-26T19:54:14.0451665Z [4729/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u12.c.obj 2025-08-26T19:54:14.0905871Z [4730/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u16.c.obj 2025-08-26T19:54:14.1826537Z [4731/7555] 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-08-26T19:54:14.1839129Z [4732/7555] 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-08-26T19:54:14.1916315Z [4733/7555] 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-08-26T19:54:14.1972293Z [4734/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-nr.c.obj 2025-08-26T19:54:14.1994179Z [4735/7555] 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-08-26T19:54:14.2108654Z [4736/7555] 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-08-26T19:54:14.2652895Z [4737/7555] 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-08-26T19:54:14.3672112Z [4738/7555] 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-08-26T19:54:14.3734204Z [4739/7555] 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-08-26T19:54:14.3781686Z [4740/7555] 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-08-26T19:54:14.3839686Z [4741/7555] 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-08-26T19:54:14.3982647Z [4742/7555] 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-08-26T19:54:14.4188414Z [4743/7555] 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-08-26T19:54:14.4393302Z [4744/7555] 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-08-26T19:54:14.5201352Z [4745/7555] 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-08-26T19:54:14.5249392Z [4746/7555] 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-08-26T19:54:14.5297062Z [4747/7555] 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-08-26T19:54:14.5310450Z [4748/7555] 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-08-26T19:54:14.5428763Z [4749/7555] 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-08-26T19:54:14.5518573Z [4750/7555] 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-08-26T19:54:14.5682306Z [4751/7555] 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-08-26T19:54:14.6498550Z [4752/7555] 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-08-26T19:54:14.6510883Z [4753/7555] 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-08-26T19:54:14.6655642Z [4754/7555] 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-08-26T19:54:14.6773047Z [4755/7555] 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-08-26T19:54:14.6785017Z [4756/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:14.7026966Z [4757/7555] 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-08-26T19:54:14.7486606Z [4758/7555] 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-08-26T19:54:14.7758843Z [4759/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:14.7910683Z [4760/7555] 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-08-26T19:54:14.8677213Z [4761/7555] 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-08-26T19:54:14.8690301Z [4762/7555] 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-08-26T19:54:14.8740349Z [4763/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:14.8934028Z [4764/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:14.9451647Z [4765/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:14.9584887Z [4766/7555] 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-08-26T19:54:15.0040940Z [4767/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:15.1417580Z [4768/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:15.1430037Z [4769/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:15.1490286Z [4770/7555] 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-08-26T19:54:15.1681979Z [4771/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:15.1787553Z [4772/7555] 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-08-26T19:54:15.2648285Z [4773/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u8.c.obj 2025-08-26T19:54:15.2945085Z [4774/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:15.3237398Z [4775/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u16.c.obj 2025-08-26T19:54:15.3300760Z [4776/7555] 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-08-26T19:54:15.3427194Z [4777/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u24.c.obj 2025-08-26T19:54:15.3478580Z [4778/7555] 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-08-26T19:54:15.4643924Z [4779/7555] 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-08-26T19:54:15.4657015Z [4780/7555] 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-08-26T19:54:15.4668805Z [4781/7555] 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-08-26T19:54:15.4954499Z [4782/7555] 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-08-26T19:54:15.6106708Z [4783/7555] 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-08-26T19:54:15.6119262Z [4784/7555] 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-08-26T19:54:15.6132225Z [4785/7555] 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-08-26T19:54:15.7293027Z [4786/7555] 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-08-26T19:54:15.7381144Z [4787/7555] 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-08-26T19:54:15.7433968Z [4788/7555] 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-08-26T19:54:15.7858080Z [4789/7555] 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-08-26T19:54:15.8167914Z [4790/7555] 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-08-26T19:54:15.8225389Z [4791/7555] 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-08-26T19:54:15.8241589Z [4792/7555] 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-08-26T19:54:15.8754422Z [4793/7555] 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-08-26T19:54:15.9152063Z [4794/7555] 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-08-26T19:54:15.9344937Z [4795/7555] 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-08-26T19:54:15.9877409Z [4796/7555] 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-08-26T19:54:16.0013533Z [4797/7555] 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-08-26T19:54:16.0070395Z [4798/7555] 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-08-26T19:54:16.0084321Z [4799/7555] 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-08-26T19:54:16.0530048Z [4800/7555] 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-08-26T19:54:16.0703279Z [4801/7555] 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-08-26T19:54:16.0771116Z [4802/7555] 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-08-26T19:54:16.1275535Z [4803/7555] 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-08-26T19:54:16.1366261Z [4804/7555] 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-08-26T19:54:16.1506865Z [4805/7555] 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-08-26T19:54:16.1578283Z [4806/7555] 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-08-26T19:54:16.2611976Z [4807/7555] 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-08-26T19:54:16.3501371Z [4808/7555] 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-08-26T19:54:16.3514381Z [4809/7555] 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-08-26T19:54:16.3616212Z [4810/7555] 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-08-26T19:54:16.3630080Z [4811/7555] 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-08-26T19:54:16.3690577Z [4812/7555] 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-08-26T19:54:16.3703194Z [4813/7555] 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-08-26T19:54:16.4794246Z [4814/7555] 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-08-26T19:54:16.4916102Z [4815/7555] 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-08-26T19:54:16.4966513Z [4816/7555] 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-08-26T19:54:16.4979625Z [4817/7555] 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-08-26T19:54:16.5597080Z [4818/7555] 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-08-26T19:54:16.6393072Z [4819/7555] 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-08-26T19:54:16.6394328Z [4820/7555] 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-08-26T19:54:16.6400266Z [4821/7555] 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-08-26T19:54:16.6706322Z [4822/7555] 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-08-26T19:54:16.6792604Z [4823/7555] 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-08-26T19:54:16.7203458Z [4824/7555] 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-08-26T19:54:16.7219759Z [4825/7555] 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-08-26T19:54:16.7290445Z [4826/7555] 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-08-26T19:54:16.7302534Z [4827/7555] 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-08-26T19:54:16.8006212Z [4828/7555] 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-08-26T19:54:16.8219977Z [4829/7555] 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-08-26T19:54:16.8414740Z [4830/7555] 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-08-26T19:54:16.8799735Z [4831/7555] 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-08-26T19:54:16.8810633Z [4832/7555] 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-08-26T19:54:16.8821416Z [4833/7555] 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-08-26T19:54:16.9280340Z [4834/7555] 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-08-26T19:54:16.9463178Z [4835/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u24.c.obj 2025-08-26T19:54:16.9571744Z [4836/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-08-26T19:54:17.0372261Z [4837/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u16.c.obj 2025-08-26T19:54:17.0626492Z [4838/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u32.c.obj 2025-08-26T19:54:17.0963705Z [4839/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u32.c.obj 2025-08-26T19:54:17.1057890Z [4840/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u24.c.obj 2025-08-26T19:54:17.1071690Z [4841/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-08-26T19:54:17.1565163Z [4842/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u16.c.obj 2025-08-26T19:54:17.1627111Z [4843/7555] 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-08-26T19:54:17.1839839Z [4844/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:17.2391488Z [4845/7555] 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-08-26T19:54:17.2667867Z [4846/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:17.2680528Z [4847/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:17.3059043Z [4848/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:17.3953877Z [4849/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:17.3966151Z [4850/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:17.3977544Z [4851/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:17.4489539Z [4852/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u8.c.obj 2025-08-26T19:54:17.4501757Z [4853/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u24.c.obj 2025-08-26T19:54:17.4513216Z [4854/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u16.c.obj 2025-08-26T19:54:17.5383961Z [4855/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:17.5457538Z [4856/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:17.5471279Z [4857/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:17.5720417Z [4858/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-08-26T19:54:17.6285100Z [4859/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:17.6386088Z [4860/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:17.6512001Z [4861/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:17.6719934Z [4862/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:17.6910834Z [4863/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:17.6923095Z [4864/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:17.7040727Z [4865/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:17.7607326Z [4866/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:17.7853139Z [4867/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:17.8152783Z [4868/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:17.8326048Z [4869/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:17.8382393Z [4870/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:17.8400393Z [4871/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:17.8479838Z [4872/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:17.9029378Z [4873/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:17.9139502Z [4874/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:17.9574924Z [4875/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:17.9620444Z [4876/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:17.9709388Z [4877/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:18.0401930Z [4878/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:18.0454304Z [4879/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:18.1241984Z [4880/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:18.1294678Z [4881/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:18.1355361Z [4882/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:18.1370309Z [4883/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:18.1710875Z [4884/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:18.1755118Z [4885/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:18.1926005Z [4886/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:18.2464602Z [4887/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:18.2485555Z [4888/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:18.2533167Z [4889/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:18.3120909Z [4890/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:18.3165804Z [4891/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:18.3376980Z [4892/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:18.3628624Z [4893/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:18.3980066Z [4894/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u16.c.obj 2025-08-26T19:54:18.4338058Z [4895/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-08-26T19:54:18.4356539Z [4896/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-08-26T19:54:18.4562867Z [4897/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc2.c.obj 2025-08-26T19:54:18.4657256Z [4898/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc4.c.obj 2025-08-26T19:54:18.4713643Z [4899/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-08-26T19:54:18.4731198Z [4900/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-08-26T19:54:18.5329494Z [4901/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u16.c.obj 2025-08-26T19:54:18.5491212Z [4902/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u16.c.obj 2025-08-26T19:54:18.5545589Z [4903/7555] 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-08-26T19:54:18.5660434Z [4904/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c16.c.obj 2025-08-26T19:54:18.5722878Z [4905/7555] 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-08-26T19:54:18.5742973Z [4906/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c16.c.obj 2025-08-26T19:54:18.5812865Z [4907/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-switch-sse2.c.obj 2025-08-26T19:54:18.6461057Z [4908/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-mov-sse2.c.obj 2025-08-26T19:54:18.6505714Z [4909/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-switch-sse2.c.obj 2025-08-26T19:54:18.6713784Z [4910/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\x16-transposec-4x8-sse2.c.obj 2025-08-26T19:54:18.6755788Z [4911/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-switch-sse2.c.obj 2025-08-26T19:54:18.6993732Z [4912/7555] 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-08-26T19:54:18.7006202Z [4913/7555] 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-08-26T19:54:18.7473710Z [4914/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-mov-sse2.c.obj 2025-08-26T19:54:18.7666808Z [4915/7555] 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-08-26T19:54:18.7685452Z [4916/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u8.c.obj 2025-08-26T19:54:18.7973606Z [4917/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u4.c.obj 2025-08-26T19:54:18.8033130Z [4918/7555] 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-08-26T19:54:18.8047169Z [4919/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u8.c.obj 2025-08-26T19:54:18.8099382Z [4920/7555] 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-08-26T19:54:18.8878464Z [4921/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u4.c.obj 2025-08-26T19:54:18.9014305Z [4922/7555] 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-08-26T19:54:18.9556459Z [4923/7555] 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-08-26T19:54:18.9763082Z [4924/7555] 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-08-26T19:54:19.0214324Z [4925/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u4.c.obj 2025-08-26T19:54:19.0225754Z [4926/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u8.c.obj 2025-08-26T19:54:19.0284348Z [4927/7555] 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-08-26T19:54:19.0543700Z [4928/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u8.c.obj 2025-08-26T19:54:19.0876228Z [4929/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-mov-sse2.c.obj 2025-08-26T19:54:19.1647627Z [4930/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-multi-sse2.c.obj 2025-08-26T19:54:19.1648882Z [4931/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-switch-sse2.c.obj 2025-08-26T19:54:19.1764056Z [4932/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-switch-sse2.c.obj 2025-08-26T19:54:19.1864248Z [4933/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-multi-sse2.c.obj 2025-08-26T19:54:19.1879909Z [4934/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-multi-sse2.c.obj 2025-08-26T19:54:19.1894269Z [4935/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-mov-sse2.c.obj 2025-08-26T19:54:19.2454378Z [4936/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-mov-sse2.c.obj 2025-08-26T19:54:19.2547582Z [4937/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-switch-sse2.c.obj 2025-08-26T19:54:19.3377754Z [4938/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-multi-sse2.c.obj 2025-08-26T19:54:19.3486391Z [4939/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-switch-sse2.c.obj 2025-08-26T19:54:19.3499147Z [4940/7555] 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-08-26T19:54:19.3510973Z [4941/7555] 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-08-26T19:54:19.3712292Z [4942/7555] 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-08-26T19:54:19.4282252Z [4943/7555] 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-08-26T19:54:19.5152215Z [4944/7555] 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-08-26T19:54:19.5167496Z [4945/7555] 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-08-26T19:54:19.5182132Z [4946/7555] 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-08-26T19:54:19.5193486Z [4947/7555] 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-08-26T19:54:19.5207815Z [4948/7555] 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-08-26T19:54:19.6080526Z [4949/7555] 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-08-26T19:54:19.7133720Z [4950/7555] 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-08-26T19:54:19.7148767Z [4951/7555] 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-08-26T19:54:19.7160601Z [4952/7555] 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-08-26T19:54:19.7171829Z [4953/7555] 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-08-26T19:54:19.7183299Z [4954/7555] 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-08-26T19:54:19.7759138Z [4955/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u16.c.obj 2025-08-26T19:54:19.8365196Z [4956/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc4.c.obj 2025-08-26T19:54:19.8409848Z [4957/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc2.c.obj 2025-08-26T19:54:19.8471934Z [4958/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c32.c.obj 2025-08-26T19:54:19.8487673Z [4959/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u16.c.obj 2025-08-26T19:54:19.8504325Z [4960/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c16.c.obj 2025-08-26T19:54:19.8520130Z [4961/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u16.c.obj 2025-08-26T19:54:19.9144355Z [4962/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u16.c.obj 2025-08-26T19:54:19.9390103Z [4963/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u32.c.obj 2025-08-26T19:54:19.9522933Z [4964/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u16.c.obj 2025-08-26T19:54:19.9705158Z [4965/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u8.c.obj 2025-08-26T19:54:19.9766247Z [4966/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u32.c.obj 2025-08-26T19:54:19.9781685Z [4967/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u24.c.obj 2025-08-26T19:54:19.9853402Z [4968/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u16.c.obj 2025-08-26T19:54:20.0234897Z [4969/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u8.c.obj 2025-08-26T19:54:20.0603506Z [4970/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u24.c.obj 2025-08-26T19:54:20.0619459Z [4971/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u16.c.obj 2025-08-26T19:54:20.0951079Z [4972/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u16.c.obj 2025-08-26T19:54:20.1043386Z [4973/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u32.c.obj 2025-08-26T19:54:20.1125973Z [4974/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u32.c.obj 2025-08-26T19:54:20.1487881Z [4975/7555] 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-08-26T19:54:20.1641053Z [4976/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u24.c.obj 2025-08-26T19:54:20.1890880Z [4977/7555] 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-08-26T19:54:20.1903872Z [4978/7555] 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-08-26T19:54:20.2346455Z [4979/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8s4-minmax-sse41.c.obj 2025-08-26T19:54:20.2480594Z [4980/7555] 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-08-26T19:54:20.2564885Z [4981/7555] 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-08-26T19:54:20.2933070Z [4982/7555] 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-08-26T19:54:20.3150514Z [4983/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8s4-minmax-sse41.c.obj 2025-08-26T19:54:20.3280192Z [4984/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2c4-minmax-sse41.c.obj 2025-08-26T19:54:20.3292078Z [4985/7555] 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-08-26T19:54:20.3812317Z [4986/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8s4-minmax-sse41.c.obj 2025-08-26T19:54:20.3992775Z [4987/7555] 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-08-26T19:54:20.4294959Z [4988/7555] 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-08-26T19:54:20.4386370Z [4989/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8s4-minmax-sse41.c.obj 2025-08-26T19:54:20.4530014Z [4990/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x2c4-minmax-sse41.c.obj 2025-08-26T19:54:20.4690594Z [4991/7555] 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-08-26T19:54:20.4751965Z [4992/7555] 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-08-26T19:54:20.5093300Z [4993/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u8.c.obj 2025-08-26T19:54:20.5151652Z [4994/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8s4-minmax-sse41.c.obj 2025-08-26T19:54:20.5447302Z [4995/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u16.c.obj 2025-08-26T19:54:20.5750305Z [4996/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u4.c.obj 2025-08-26T19:54:20.5816858Z [4997/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u24.c.obj 2025-08-26T19:54:20.5828888Z [4998/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u8.c.obj 2025-08-26T19:54:20.6139860Z [4999/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u4.c.obj 2025-08-26T19:54:20.6286376Z [5000/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u8.c.obj 2025-08-26T19:54:20.6349081Z [5001/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u4.c.obj 2025-08-26T19:54:20.6765824Z [5002/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u8.c.obj 2025-08-26T19:54:20.6973042Z [5003/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u4.c.obj 2025-08-26T19:54:20.7174167Z [5004/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u8.c.obj 2025-08-26T19:54:20.7363708Z [5005/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u16.c.obj 2025-08-26T19:54:20.7494749Z [5006/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u8.c.obj 2025-08-26T19:54:20.7846976Z [5007/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u4.c.obj 2025-08-26T19:54:20.7863832Z [5008/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u12.c.obj 2025-08-26T19:54:20.7922717Z [5009/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u12.c.obj 2025-08-26T19:54:20.8227708Z [5010/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u16.c.obj 2025-08-26T19:54:20.8297874Z [5011/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u4.c.obj 2025-08-26T19:54:20.8600994Z [5012/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u4.c.obj 2025-08-26T19:54:20.8737111Z [5013/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u4.c.obj 2025-08-26T19:54:20.9082804Z [5014/7555] 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-08-26T19:54:20.9139320Z [5015/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u4.c.obj 2025-08-26T19:54:20.9349203Z [5016/7555] 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-08-26T19:54:20.9431963Z [5017/7555] 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-08-26T19:54:20.9735454Z [5018/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u4.c.obj 2025-08-26T19:54:20.9823864Z [5019/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u4.c.obj 2025-08-26T19:54:20.9882526Z [5020/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u8.c.obj 2025-08-26T19:54:21.0211463Z [5021/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u12.c.obj 2025-08-26T19:54:21.0333413Z [5022/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u16.c.obj 2025-08-26T19:54:21.0769241Z [5023/7555] 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-08-26T19:54:21.0914425Z [5024/7555] 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-08-26T19:54:21.1069733Z [5025/7555] 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-08-26T19:54:21.1250385Z [5026/7555] 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-08-26T19:54:21.1324424Z [5027/7555] 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-08-26T19:54:21.1639183Z [5028/7555] 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-08-26T19:54:21.1691968Z [5029/7555] 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-08-26T19:54:21.2299417Z [5030/7555] 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-08-26T19:54:21.2344247Z [5031/7555] 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-08-26T19:54:21.2456212Z [5032/7555] 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-08-26T19:54:21.2706934Z [5033/7555] 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-08-26T19:54:21.2794143Z [5034/7555] 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-08-26T19:54:21.3041153Z [5035/7555] 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-08-26T19:54:21.3301991Z [5036/7555] 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-08-26T19:54:21.3671947Z [5037/7555] 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-08-26T19:54:21.3752516Z [5038/7555] 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-08-26T19:54:21.3943482Z [5039/7555] 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-08-26T19:54:21.5116187Z [5040/7555] 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-08-26T19:54:21.5127572Z [5041/7555] 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-08-26T19:54:21.5138767Z [5042/7555] 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-08-26T19:54:21.5151086Z [5043/7555] 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-08-26T19:54:21.6034807Z [5044/7555] 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-08-26T19:54:21.6089123Z [5045/7555] 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-08-26T19:54:21.6905159Z [5046/7555] 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-08-26T19:54:21.6965063Z [5047/7555] 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-08-26T19:54:21.6976772Z [5048/7555] 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-08-26T19:54:21.6988345Z [5049/7555] 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-08-26T19:54:21.7314642Z [5050/7555] 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-08-26T19:54:21.7329831Z [5051/7555] 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-08-26T19:54:21.7427113Z [5052/7555] 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-08-26T19:54:21.8190420Z [5053/7555] 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-08-26T19:54:21.8246815Z [5054/7555] 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-08-26T19:54:21.8305253Z [5055/7555] 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-08-26T19:54:21.8318638Z [5056/7555] 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-08-26T19:54:21.8543189Z [5057/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:21.8595576Z [5058/7555] 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-08-26T19:54:21.8662164Z [5059/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:21.9636538Z [5060/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:21.9706857Z [5061/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:21.9758199Z [5062/7555] 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-08-26T19:54:21.9815793Z [5063/7555] 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-08-26T19:54:22.0182823Z [5064/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:22.0242624Z [5065/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:22.0298309Z [5066/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:22.1087887Z [5067/7555] 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-08-26T19:54:22.1155804Z [5068/7555] 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-08-26T19:54:22.1169108Z [5069/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:22.1407405Z [5070/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:22.1489316Z [5071/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:22.1546886Z [5072/7555] 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-08-26T19:54:22.1561240Z [5073/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:22.2429698Z [5074/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:22.2454581Z [5075/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:22.2511727Z [5076/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:22.2792947Z [5077/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:22.2805743Z [5078/7555] 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-08-26T19:54:22.2859993Z [5079/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:22.3124811Z [5080/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:22.3722157Z [5081/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:22.3775947Z [5082/7555] 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-08-26T19:54:22.3789121Z [5083/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:22.3986162Z [5084/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u24.c.obj 2025-08-26T19:54:22.3998337Z [5085/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u8.c.obj 2025-08-26T19:54:22.4172001Z [5086/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u32.c.obj 2025-08-26T19:54:22.4263271Z [5087/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:22.5029554Z [5088/7555] 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-08-26T19:54:22.5080455Z [5089/7555] 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-08-26T19:54:22.5129338Z [5090/7555] 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-08-26T19:54:22.5292937Z [5091/7555] 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-08-26T19:54:22.5475542Z [5092/7555] 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-08-26T19:54:22.5530408Z [5093/7555] 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-08-26T19:54:22.5753402Z [5094/7555] 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-08-26T19:54:22.6298031Z [5095/7555] 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-08-26T19:54:22.6437057Z [5096/7555] 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-08-26T19:54:22.6493771Z [5097/7555] 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-08-26T19:54:22.6618846Z [5098/7555] 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-08-26T19:54:22.6800528Z [5099/7555] 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-08-26T19:54:22.6877430Z [5100/7555] 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-08-26T19:54:22.7340558Z [5101/7555] 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-08-26T19:54:22.7478738Z [5102/7555] 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-08-26T19:54:22.7694247Z [5103/7555] 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-08-26T19:54:22.7750784Z [5104/7555] 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-08-26T19:54:22.7935702Z [5105/7555] 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-08-26T19:54:22.7987325Z [5106/7555] 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-08-26T19:54:22.8146136Z [5107/7555] 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-08-26T19:54:22.8676028Z [5108/7555] 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-08-26T19:54:22.8914490Z [5109/7555] 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-08-26T19:54:22.8997252Z [5110/7555] 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-08-26T19:54:22.9220176Z [5111/7555] 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-08-26T19:54:22.9396083Z [5112/7555] 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-08-26T19:54:22.9588886Z [5113/7555] 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-08-26T19:54:22.9656549Z [5114/7555] 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-08-26T19:54:22.9886167Z [5115/7555] 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-08-26T19:54:23.0193482Z [5116/7555] 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-08-26T19:54:23.0326947Z [5117/7555] 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-08-26T19:54:23.0606835Z [5118/7555] 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-08-26T19:54:23.0925783Z [5119/7555] 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-08-26T19:54:23.1008691Z [5120/7555] 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-08-26T19:54:23.1149129Z [5121/7555] 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-08-26T19:54:23.1314987Z [5122/7555] 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-08-26T19:54:23.1666612Z [5123/7555] 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-08-26T19:54:23.1754441Z [5124/7555] 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-08-26T19:54:23.1994785Z [5125/7555] 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-08-26T19:54:23.2596978Z [5126/7555] 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-08-26T19:54:23.2722156Z [5127/7555] 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-08-26T19:54:23.2796050Z [5128/7555] 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-08-26T19:54:23.2903273Z [5129/7555] 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-08-26T19:54:23.2977678Z [5130/7555] 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-08-26T19:54:23.3112605Z [5131/7555] 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-08-26T19:54:23.3299777Z [5132/7555] 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-08-26T19:54:23.4107058Z [5133/7555] 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-08-26T19:54:23.4153360Z [5134/7555] 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-08-26T19:54:23.4292189Z [5135/7555] 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-08-26T19:54:23.4352776Z [5136/7555] 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-08-26T19:54:23.4455493Z [5137/7555] 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-08-26T19:54:23.4549552Z [5138/7555] 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-08-26T19:54:23.4659149Z [5139/7555] 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-08-26T19:54:23.5387651Z [5140/7555] 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-08-26T19:54:23.5399239Z [5141/7555] 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-08-26T19:54:23.5564847Z [5142/7555] 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-08-26T19:54:23.5620939Z [5143/7555] 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-08-26T19:54:23.5787593Z [5144/7555] 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-08-26T19:54:23.6073540Z [5145/7555] 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-08-26T19:54:23.6128415Z [5146/7555] 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-08-26T19:54:23.6637164Z [5147/7555] 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-08-26T19:54:23.6981579Z [5148/7555] 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-08-26T19:54:23.7625560Z [5149/7555] 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-08-26T19:54:23.7802888Z [5150/7555] 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-08-26T19:54:23.8023418Z [5151/7555] 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-08-26T19:54:23.8204125Z [5152/7555] 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-08-26T19:54:23.8422055Z [5153/7555] 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-08-26T19:54:23.8637621Z [5154/7555] 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-08-26T19:54:23.8805084Z [5155/7555] 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-08-26T19:54:23.8993425Z [5156/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c16.c.obj 2025-08-26T19:54:23.9295278Z [5157/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c32.c.obj 2025-08-26T19:54:23.9450673Z [5158/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-08-26T19:54:24.0041160Z [5159/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u24.c.obj 2025-08-26T19:54:24.0202763Z [5160/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u32.c.obj 2025-08-26T19:54:24.0558678Z [5161/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-08-26T19:54:24.0734327Z [5162/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-08-26T19:54:24.0922958Z [5163/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u24.c.obj 2025-08-26T19:54:24.1093779Z [5164/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u32.c.obj 2025-08-26T19:54:24.1283500Z [5165/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-08-26T19:54:24.1495208Z [5166/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u24.c.obj 2025-08-26T19:54:24.1684559Z [5167/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u32.c.obj 2025-08-26T19:54:24.2004155Z [5168/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-08-26T19:54:24.2208060Z [5169/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-08-26T19:54:24.2387365Z [5170/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u24.c.obj 2025-08-26T19:54:24.2546651Z [5171/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u8.c.obj 2025-08-26T19:54:24.2729047Z [5172/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u32.c.obj 2025-08-26T19:54:24.2902689Z [5173/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u16.c.obj 2025-08-26T19:54:24.3120862Z [5174/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u8.c.obj 2025-08-26T19:54:24.3314930Z [5175/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u16.c.obj 2025-08-26T19:54:24.3491881Z [5176/7555] 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-08-26T19:54:24.3681844Z [5177/7555] 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-08-26T19:54:24.3865626Z [5178/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:24.4035917Z [5179/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:24.4241247Z [5180/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:24.4456077Z [5181/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:24.5378084Z [5182/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:24.5934042Z [5183/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:24.6115656Z [5184/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:24.6274728Z [5185/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:24.6582440Z [5186/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:24.6988873Z [5187/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:24.7181120Z [5188/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:24.7368325Z [5189/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:24.7558970Z [5190/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:24.7780485Z [5191/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:24.8054208Z [5192/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:24.8235776Z [5193/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:24.8529081Z [5194/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-08-26T19:54:24.8730379Z [5195/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-08-26T19:54:24.8947655Z [5196/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u8.c.obj 2025-08-26T19:54:24.9226802Z [5197/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u24.c.obj 2025-08-26T19:54:24.9394781Z [5198/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u32.c.obj 2025-08-26T19:54:24.9563417Z [5199/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:24.9729528Z [5200/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:25.0068049Z [5201/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:25.0256178Z [5202/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:25.0414611Z [5203/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:25.0623766Z [5204/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:25.0799083Z [5205/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:25.0973038Z [5206/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:25.1133549Z [5207/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:25.1463512Z [5208/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:25.1705754Z [5209/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:25.2000091Z [5210/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:25.2188470Z [5211/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:25.2377570Z [5212/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.0217188Z [5213/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.0433181Z [5214/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.0615513Z [5215/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.0813035Z [5216/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.1026736Z [5217/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.1226891Z [5218/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.1418485Z [5219/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.1600805Z [5220/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.1801531Z [5221/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.1985494Z [5222/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.2171325Z [5223/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.2363066Z [5224/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.2551336Z [5225/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.2739513Z [5226/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.2936249Z [5227/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.3137205Z [5228/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.3316437Z [5229/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.3516064Z [5230/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.3682815Z [5231/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.3877070Z [5232/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.4063383Z [5233/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.4236782Z [5234/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.4402253Z [5235/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.4651519Z [5236/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.4808568Z [5237/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-08-26T19:54:27.5004065Z [5238/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-08-26T19:54:27.5283263Z [5239/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-08-26T19:54:27.5452466Z [5240/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-08-26T19:54:27.5617197Z [5241/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-08-26T19:54:27.5842908Z [5242/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-08-26T19:54:27.6007893Z [5243/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-08-26T19:54:27.6246913Z [5244/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-08-26T19:54:27.6404812Z [5245/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u8.c.obj 2025-08-26T19:54:27.6596433Z [5246/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u16.c.obj 2025-08-26T19:54:27.6797516Z [5247/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u8.c.obj 2025-08-26T19:54:27.7235565Z [5248/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c8.c.obj 2025-08-26T19:54:27.7248272Z [5249/7555] 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-08-26T19:54:27.7422734Z [5250/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c8.c.obj 2025-08-26T19:54:27.7569998Z [5251/7555] 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-08-26T19:54:27.7633309Z [5252/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u16.c.obj 2025-08-26T19:54:27.7692302Z [5253/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-gio-sse41-u2.c.obj 2025-08-26T19:54:27.7901594Z [5254/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u8.c.obj 2025-08-26T19:54:27.8391884Z [5255/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u24.c.obj 2025-08-26T19:54:27.8591650Z [5256/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u8.c.obj 2025-08-26T19:54:27.8688656Z [5257/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u24.c.obj 2025-08-26T19:54:27.8811219Z [5258/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u32.c.obj 2025-08-26T19:54:27.8865902Z [5259/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u32.c.obj 2025-08-26T19:54:27.9519011Z [5260/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx-acc2.c.obj 2025-08-26T19:54:27.9632350Z [5261/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u16.c.obj 2025-08-26T19:54:27.9729118Z [5262/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx-acc2.c.obj 2025-08-26T19:54:27.9822902Z [5263/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx.c.obj 2025-08-26T19:54:27.9894666Z [5264/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.0042966Z [5265/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx.c.obj 2025-08-26T19:54:28.0317814Z [5266/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.0776941Z [5267/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.0857282Z [5268/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx.c.obj 2025-08-26T19:54:28.1001611Z [5269/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.1072189Z [5270/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx.c.obj 2025-08-26T19:54:28.1377730Z [5271/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.1529126Z [5272/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx.c.obj 2025-08-26T19:54:28.1689476Z [5273/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.2135330Z [5274/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.2196984Z [5275/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx.c.obj 2025-08-26T19:54:28.2269831Z [5276/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.2370064Z [5277/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx.c.obj 2025-08-26T19:54:28.3034969Z [5278/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx.c.obj 2025-08-26T19:54:28.3104102Z [5279/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.3221938Z [5280/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.3355797Z [5281/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.3636335Z [5282/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx.c.obj 2025-08-26T19:54:28.3649951Z [5283/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx-acc2.c.obj 2025-08-26T19:54:28.3724682Z [5284/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u8.c.obj 2025-08-26T19:54:28.4314715Z [5285/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u32.c.obj 2025-08-26T19:54:28.4603077Z [5286/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.4682311Z [5287/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u16.c.obj 2025-08-26T19:54:28.4985671Z [5288/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.5011047Z [5289/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.5021749Z [5290/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.5193998Z [5291/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.5686923Z [5292/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.6337995Z [5293/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.6564053Z [5294/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.6585577Z [5295/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.6684129Z [5296/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.6739544Z [5297/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.6834894Z [5298/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.6950938Z [5299/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.7928822Z [5300/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.8210658Z [5301/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.8361098Z [5302/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.8419615Z [5303/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.8432018Z [5304/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.9513697Z [5305/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.9526120Z [5306/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.9545264Z [5307/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:28.9562603Z [5308/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:29.0714749Z [5309/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:29.0726887Z [5310/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx-broadcast.c.obj 2025-08-26T19:54:29.0844020Z [5311/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:29.1008330Z [5312/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-prelu\gen\f32-prelu-avx-2x16.c.obj 2025-08-26T19:54:29.1023845Z [5313/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-avx-broadcast.c.obj 2025-08-26T19:54:29.1038777Z [5314/7555] 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-08-26T19:54:29.1093265Z [5315/7555] 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-08-26T19:54:29.2360253Z [5316/7555] 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-08-26T19:54:29.2513998Z [5317/7555] 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-08-26T19:54:29.2559759Z [5318/7555] 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-08-26T19:54:29.2705239Z [5319/7555] 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-08-26T19:54:29.2795034Z [5320/7555] 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-08-26T19:54:29.2935676Z [5321/7555] 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-08-26T19:54:29.3153973Z [5322/7555] 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-08-26T19:54:29.3921946Z [5323/7555] 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-08-26T19:54:29.4002184Z [5324/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u16.c.obj 2025-08-26T19:54:29.4019484Z [5325/7555] 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-08-26T19:54:29.4085688Z [5326/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u8.c.obj 2025-08-26T19:54:29.4148417Z [5327/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u24.c.obj 2025-08-26T19:54:29.4221214Z [5328/7555] 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-08-26T19:54:29.4271482Z [5329/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u8.c.obj 2025-08-26T19:54:29.5151230Z [5330/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u24.c.obj 2025-08-26T19:54:29.5197796Z [5331/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c16.c.obj 2025-08-26T19:54:29.5255022Z [5332/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c64.c.obj 2025-08-26T19:54:29.5300116Z [5333/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u8.c.obj 2025-08-26T19:54:29.5314087Z [5334/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u16.c.obj 2025-08-26T19:54:29.5374439Z [5335/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u16-acc2.c.obj 2025-08-26T19:54:29.5391964Z [5336/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u24-acc3.c.obj 2025-08-26T19:54:29.6445714Z [5337/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u8.c.obj 2025-08-26T19:54:29.6496851Z [5338/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u16-acc2.c.obj 2025-08-26T19:54:29.6508521Z [5339/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u8.c.obj 2025-08-26T19:54:29.6555608Z [5340/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc2.c.obj 2025-08-26T19:54:29.6614421Z [5341/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc4.c.obj 2025-08-26T19:54:29.6632914Z [5342/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc2.c.obj 2025-08-26T19:54:29.6683888Z [5343/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u24-acc3.c.obj 2025-08-26T19:54:29.7662394Z [5344/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u24-acc3.c.obj 2025-08-26T19:54:29.7751141Z [5345/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u24-acc3.c.obj 2025-08-26T19:54:29.7809481Z [5346/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u16-acc2.c.obj 2025-08-26T19:54:29.7865225Z [5347/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc2.c.obj 2025-08-26T19:54:29.7878319Z [5348/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc2.c.obj 2025-08-26T19:54:29.7931768Z [5349/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u8.c.obj 2025-08-26T19:54:29.7992377Z [5350/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u16-acc2.c.obj 2025-08-26T19:54:29.9001498Z [5351/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx-u8.c.obj 2025-08-26T19:54:29.9171578Z [5352/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx-u8.c.obj 2025-08-26T19:54:29.9225373Z [5353/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u8.c.obj 2025-08-26T19:54:29.9297085Z [5354/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx-u8.c.obj 2025-08-26T19:54:29.9364487Z [5355/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx-u8.c.obj 2025-08-26T19:54:29.9382018Z [5356/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx-u8.c.obj 2025-08-26T19:54:29.9676255Z [5357/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx-u8.c.obj 2025-08-26T19:54:30.0417822Z [5358/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx-u8.c.obj 2025-08-26T19:54:30.0592575Z [5359/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u8.c.obj 2025-08-26T19:54:30.0719762Z [5360/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx-u8.c.obj 2025-08-26T19:54:30.0739469Z [5361/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx-u8.c.obj 2025-08-26T19:54:30.0797775Z [5362/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx-u8.c.obj 2025-08-26T19:54:30.0818325Z [5363/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u8.c.obj 2025-08-26T19:54:30.0885641Z [5364/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u8.c.obj 2025-08-26T19:54:30.1803557Z [5365/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u8.c.obj 2025-08-26T19:54:30.1865750Z [5366/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u8.c.obj 2025-08-26T19:54:30.2076443Z [5367/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx-u8.c.obj 2025-08-26T19:54:30.2097722Z [5368/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx-u8.c.obj 2025-08-26T19:54:30.2191932Z [5369/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx-u8.c.obj 2025-08-26T19:54:30.2251011Z [5370/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u8.c.obj 2025-08-26T19:54:30.2378451Z [5371/7555] 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-08-26T19:54:30.3016086Z [5372/7555] 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-08-26T19:54:30.3076632Z [5373/7555] 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-08-26T19:54:30.3379507Z [5374/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u8.c.obj 2025-08-26T19:54:30.3521680Z [5375/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u32.c.obj 2025-08-26T19:54:30.3576217Z [5376/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u16.c.obj 2025-08-26T19:54:30.3657196Z [5377/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u8.c.obj 2025-08-26T19:54:30.3747140Z [5378/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u24.c.obj 2025-08-26T19:54:30.4253863Z [5379/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u16.c.obj 2025-08-26T19:54:30.4268214Z [5380/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u24.c.obj 2025-08-26T19:54:30.4699135Z [5381/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u32.c.obj 2025-08-26T19:54:30.4914551Z [5382/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u8.c.obj 2025-08-26T19:54:30.4964351Z [5383/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u8.c.obj 2025-08-26T19:54:30.5024849Z [5384/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u16.c.obj 2025-08-26T19:54:30.5458530Z [5385/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx-u8.c.obj 2025-08-26T19:54:30.5575732Z [5386/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx-u8.c.obj 2025-08-26T19:54:30.5639338Z [5387/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx-u8.c.obj 2025-08-26T19:54:30.5838186Z [5388/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx-u8.c.obj 2025-08-26T19:54:30.6052872Z [5389/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx-u8.c.obj 2025-08-26T19:54:30.6233577Z [5390/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u8.c.obj 2025-08-26T19:54:30.6292971Z [5391/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u32.c.obj 2025-08-26T19:54:30.6656364Z [5392/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u8.c.obj 2025-08-26T19:54:30.7043652Z [5393/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u32.c.obj 2025-08-26T19:54:30.7243595Z [5394/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u24.c.obj 2025-08-26T19:54:30.7255776Z [5395/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u16.c.obj 2025-08-26T19:54:30.7328464Z [5396/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u24.c.obj 2025-08-26T19:54:30.7344468Z [5397/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u8.c.obj 2025-08-26T19:54:30.7453052Z [5398/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u32.c.obj 2025-08-26T19:54:30.7791426Z [5399/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u8.c.obj 2025-08-26T19:54:30.8221494Z [5400/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u32.c.obj 2025-08-26T19:54:30.8419093Z [5401/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u16.c.obj 2025-08-26T19:54:30.8601809Z [5402/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u32.c.obj 2025-08-26T19:54:30.8619787Z [5403/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-nr.c.obj 2025-08-26T19:54:30.8759178Z [5404/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u8.c.obj 2025-08-26T19:54:30.8858137Z [5405/7555] 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-08-26T19:54:30.9346696Z [5406/7555] 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-08-26T19:54:30.9874466Z [5407/7555] 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-08-26T19:54:30.9927128Z [5408/7555] 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-08-26T19:54:30.9996414Z [5409/7555] 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-08-26T19:54:31.0049037Z [5410/7555] 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-08-26T19:54:31.0288682Z [5411/7555] 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-08-26T19:54:31.0304529Z [5412/7555] 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-08-26T19:54:31.0692719Z [5413/7555] 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-08-26T19:54:31.1314543Z [5414/7555] 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-08-26T19:54:31.1393727Z [5415/7555] 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-08-26T19:54:31.1448736Z [5416/7555] 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-08-26T19:54:31.1462575Z [5417/7555] 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-08-26T19:54:31.1653799Z [5418/7555] 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-08-26T19:54:31.1770638Z [5419/7555] 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-08-26T19:54:31.2165660Z [5420/7555] 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-08-26T19:54:31.2787923Z [5421/7555] 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-08-26T19:54:31.2883514Z [5422/7555] 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-08-26T19:54:31.2936297Z [5423/7555] 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-08-26T19:54:31.3015391Z [5424/7555] 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-08-26T19:54:31.3080173Z [5425/7555] 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-08-26T19:54:31.3202182Z [5426/7555] 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-08-26T19:54:31.3484474Z [5427/7555] 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-08-26T19:54:31.4174792Z [5428/7555] 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-08-26T19:54:31.4188176Z [5429/7555] 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-08-26T19:54:31.4199265Z [5430/7555] 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-08-26T19:54:31.4359230Z [5431/7555] 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-08-26T19:54:31.4408883Z [5432/7555] 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-08-26T19:54:31.4459799Z [5433/7555] 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-08-26T19:54:31.4993630Z [5434/7555] 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-08-26T19:54:31.5467745Z [5435/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:31.5479955Z [5436/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:31.5568701Z [5437/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:31.5697120Z [5438/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:31.5787381Z [5439/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:31.6203364Z [5440/7555] 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-08-26T19:54:31.6477835Z [5441/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:31.6688721Z [5442/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:31.6779163Z [5443/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-08-26T19:54:31.6874285Z [5444/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-08-26T19:54:31.6984745Z [5445/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:31.7103685Z [5446/7555] 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-08-26T19:54:31.7502579Z [5447/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-08-26T19:54:31.7748727Z [5448/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:31.8004990Z [5449/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-08-26T19:54:31.8072079Z [5450/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u8.c.obj 2025-08-26T19:54:31.8133007Z [5451/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:31.8148153Z [5452/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u16.c.obj 2025-08-26T19:54:31.8245569Z [5453/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u24.c.obj 2025-08-26T19:54:31.8736140Z [5454/7555] 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-08-26T19:54:31.9046423Z [5455/7555] 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-08-26T19:54:31.9369430Z [5456/7555] 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-08-26T19:54:31.9437239Z [5457/7555] 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-08-26T19:54:31.9490449Z [5458/7555] 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-08-26T19:54:31.9505450Z [5459/7555] 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-08-26T19:54:31.9521283Z [5460/7555] 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-08-26T19:54:31.9947806Z [5461/7555] 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-08-26T19:54:32.0516029Z [5462/7555] 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-08-26T19:54:32.0660754Z [5463/7555] 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-08-26T19:54:32.0745481Z [5464/7555] 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-08-26T19:54:32.0839841Z [5465/7555] 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-08-26T19:54:32.0852789Z [5466/7555] 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-08-26T19:54:32.0908502Z [5467/7555] 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-08-26T19:54:32.1157505Z [5468/7555] 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-08-26T19:54:32.2133385Z [5469/7555] 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-08-26T19:54:32.2323905Z [5470/7555] 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-08-26T19:54:32.2350468Z [5471/7555] 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-08-26T19:54:32.2580967Z [5472/7555] 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-08-26T19:54:32.2636858Z [5473/7555] 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-08-26T19:54:32.2648445Z [5474/7555] 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-08-26T19:54:32.2777410Z [5475/7555] 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-08-26T19:54:32.3757908Z [5476/7555] 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-08-26T19:54:32.4029423Z [5477/7555] 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-08-26T19:54:32.4074802Z [5478/7555] 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-08-26T19:54:32.4227861Z [5479/7555] 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-08-26T19:54:32.4239321Z [5480/7555] 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-08-26T19:54:32.4404283Z [5481/7555] 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-08-26T19:54:32.4593232Z [5482/7555] 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-08-26T19:54:32.5350385Z [5483/7555] 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-08-26T19:54:32.5769692Z [5484/7555] 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-08-26T19:54:32.5817616Z [5485/7555] 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-08-26T19:54:32.5896443Z [5486/7555] 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-08-26T19:54:32.5953995Z [5487/7555] 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-08-26T19:54:32.6002642Z [5488/7555] 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-08-26T19:54:32.6411790Z [5489/7555] 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-08-26T19:54:32.6792586Z [5490/7555] 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-08-26T19:54:32.6997586Z [5491/7555] 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-08-26T19:54:32.7213089Z [5492/7555] 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-08-26T19:54:32.7269886Z [5493/7555] 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-08-26T19:54:32.7282823Z [5494/7555] 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-08-26T19:54:32.7407437Z [5495/7555] 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-08-26T19:54:32.7702095Z [5496/7555] 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-08-26T19:54:32.8068185Z [5497/7555] 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-08-26T19:54:32.8240845Z [5498/7555] 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-08-26T19:54:32.8579471Z [5499/7555] 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-08-26T19:54:32.8592245Z [5500/7555] 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-08-26T19:54:32.8603706Z [5501/7555] 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-08-26T19:54:32.8662891Z [5502/7555] 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-08-26T19:54:32.9043007Z [5503/7555] 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-08-26T19:54:32.9355563Z [5504/7555] 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-08-26T19:54:32.9473083Z [5505/7555] 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-08-26T19:54:32.9872551Z [5506/7555] 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-08-26T19:54:32.9931748Z [5507/7555] 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-08-26T19:54:32.9983190Z [5508/7555] 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-08-26T19:54:32.9999059Z [5509/7555] 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-08-26T19:54:33.0326644Z [5510/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-08-26T19:54:33.0602645Z [5511/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-08-26T19:54:33.0621103Z [5512/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u24.c.obj 2025-08-26T19:54:33.1128138Z [5513/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u32.c.obj 2025-08-26T19:54:33.1198377Z [5514/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u24.c.obj 2025-08-26T19:54:33.1215229Z [5515/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u32.c.obj 2025-08-26T19:54:33.1693372Z [5516/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-08-26T19:54:33.1749978Z [5517/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-08-26T19:54:33.1851039Z [5518/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u24.c.obj 2025-08-26T19:54:33.2088942Z [5519/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-08-26T19:54:33.2305627Z [5520/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u32.c.obj 2025-08-26T19:54:33.2358711Z [5521/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u24.c.obj 2025-08-26T19:54:33.2380606Z [5522/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-08-26T19:54:33.2807832Z [5523/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u8.c.obj 2025-08-26T19:54:33.2888950Z [5524/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u32.c.obj 2025-08-26T19:54:33.3014904Z [5525/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u16.c.obj 2025-08-26T19:54:33.3249629Z [5526/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u8.c.obj 2025-08-26T19:54:33.3532012Z [5527/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u16.c.obj 2025-08-26T19:54:33.3620889Z [5528/7555] 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-08-26T19:54:33.3671032Z [5529/7555] 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-08-26T19:54:33.4013801Z [5530/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:33.4130429Z [5531/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:33.4373874Z [5532/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:33.4584980Z [5533/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:33.4862033Z [5534/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:33.4922013Z [5535/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:33.5066688Z [5536/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-08-26T19:54:33.5219394Z [5537/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:33.5330022Z [5538/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:33.5705445Z [5539/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-08-26T19:54:33.5852855Z [5540/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:33.6043016Z [5541/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u8.c.obj 2025-08-26T19:54:33.6190289Z [5542/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u16.c.obj 2025-08-26T19:54:33.6319676Z [5543/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-08-26T19:54:33.6382217Z [5544/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u24.c.obj 2025-08-26T19:54:33.7075879Z [5545/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:33.7126841Z [5546/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:33.7320441Z [5547/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:33.7452548Z [5548/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:33.7603489Z [5549/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:33.7767268Z [5550/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:33.7814348Z [5551/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:33.8523475Z [5552/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:33.8782067Z [5553/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:33.8837088Z [5554/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:33.9020607Z [5555/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:33.9063719Z [5556/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:33.9254206Z [5557/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:33.9313267Z [5558/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.0056946Z [5559/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.0110002Z [5560/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.0222685Z [5561/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.0769066Z [5562/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.0823119Z [5563/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.0836968Z [5564/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.0889749Z [5565/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.1287670Z [5566/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.1337235Z [5567/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.1535332Z [5568/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.2167130Z [5569/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.2179612Z [5570/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.2191825Z [5571/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.2241315Z [5572/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.2576731Z [5573/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.2591640Z [5574/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.2775816Z [5575/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.3505790Z [5576/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.3522533Z [5577/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.3579405Z [5578/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.3635650Z [5579/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.3893218Z [5580/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.3942060Z [5581/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.4027983Z [5582/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.4834951Z [5583/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-08-26T19:54:34.4851479Z [5584/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-08-26T19:54:34.4922238Z [5585/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-08-26T19:54:34.4939511Z [5586/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-08-26T19:54:34.5132213Z [5587/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-08-26T19:54:34.5234303Z [5588/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-08-26T19:54:34.5435130Z [5589/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-08-26T19:54:34.6028640Z [5590/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u8.c.obj 2025-08-26T19:54:34.6079835Z [5591/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u16.c.obj 2025-08-26T19:54:34.6146089Z [5592/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-08-26T19:54:34.6213896Z [5593/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u8.c.obj 2025-08-26T19:54:34.6415833Z [5594/7555] 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-08-26T19:54:34.6569657Z [5595/7555] 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-08-26T19:54:34.6623357Z [5596/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u16.c.obj 2025-08-26T19:54:34.6914444Z [5597/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u32.c.obj 2025-08-26T19:54:34.7012180Z [5598/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u48.c.obj 2025-08-26T19:54:34.7315810Z [5599/7555] 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-08-26T19:54:34.7492402Z [5600/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u1.c.obj 2025-08-26T19:54:34.7678750Z [5601/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u16.c.obj 2025-08-26T19:54:34.7739918Z [5602/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u8.c.obj 2025-08-26T19:54:34.7797060Z [5603/7555] 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-08-26T19:54:34.8111830Z [5604/7555] 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-08-26T19:54:34.8164850Z [5605/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-avx-u4.c.obj 2025-08-26T19:54:34.8411684Z [5606/7555] 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-08-26T19:54:34.8607042Z [5607/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-avx-u4.c.obj 2025-08-26T19:54:34.8836883Z [5608/7555] 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-08-26T19:54:34.9030503Z [5609/7555] 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-08-26T19:54:34.9088203Z [5610/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u1.c.obj 2025-08-26T19:54:34.9286590Z [5611/7555] 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-08-26T19:54:34.9476104Z [5612/7555] 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-08-26T19:54:34.9620815Z [5613/7555] 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-08-26T19:54:34.9636522Z [5614/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u1.c.obj 2025-08-26T19:54:34.9951293Z [5615/7555] 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-08-26T19:54:35.0203066Z [5616/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-mov-avx.c.obj 2025-08-26T19:54:35.0331498Z [5617/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-switch-avx.c.obj 2025-08-26T19:54:35.0384106Z [5618/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u8.c.obj 2025-08-26T19:54:35.0687563Z [5619/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-mov-avx.c.obj 2025-08-26T19:54:35.0740858Z [5620/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-switch-avx.c.obj 2025-08-26T19:54:35.0753293Z [5621/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-mov-avx.c.obj 2025-08-26T19:54:35.0952881Z [5622/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-multi-avx.c.obj 2025-08-26T19:54:35.1183202Z [5623/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-switch-avx.c.obj 2025-08-26T19:54:35.1313334Z [5624/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-mov-avx.c.obj 2025-08-26T19:54:35.1459405Z [5625/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-switch-avx.c.obj 2025-08-26T19:54:35.1762475Z [5626/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u8.c.obj 2025-08-26T19:54:35.1865423Z [5627/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c16.c.obj 2025-08-26T19:54:35.1917095Z [5628/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c64.c.obj 2025-08-26T19:54:35.2079486Z [5629/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c128.c.obj 2025-08-26T19:54:35.2228703Z [5630/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u8.c.obj 2025-08-26T19:54:35.2405407Z [5631/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u16-acc2.c.obj 2025-08-26T19:54:35.2563033Z [5632/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u24-acc3.c.obj 2025-08-26T19:54:35.2927483Z [5633/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc2.c.obj 2025-08-26T19:54:35.3122253Z [5634/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u8.c.obj 2025-08-26T19:54:35.3136353Z [5635/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vadd-f16c-u8.c.obj 2025-08-26T19:54:35.3278010Z [5636/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u16.c.obj 2025-08-26T19:54:35.3420587Z [5637/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u16.c.obj 2025-08-26T19:54:35.3656999Z [5638/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmax-f16c-u8.c.obj 2025-08-26T19:54:35.3783002Z [5639/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u8.c.obj 2025-08-26T19:54:35.4161950Z [5640/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmin-f16c-u8.c.obj 2025-08-26T19:54:35.4274044Z [5641/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vminc-f16c-u8.c.obj 2025-08-26T19:54:35.4388804Z [5642/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmul-f16c-u8.c.obj 2025-08-26T19:54:35.4578166Z [5643/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u8.c.obj 2025-08-26T19:54:35.4896332Z [5644/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u8.c.obj 2025-08-26T19:54:35.4988708Z [5645/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u16.c.obj 2025-08-26T19:54:35.5098791Z [5646/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u8.c.obj 2025-08-26T19:54:35.5413631Z [5647/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u8.c.obj 2025-08-26T19:54:35.5575566Z [5648/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u8.c.obj 2025-08-26T19:54:35.5691803Z [5649/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u8.c.obj 2025-08-26T19:54:35.5850742Z [5650/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u8.c.obj 2025-08-26T19:54:35.6083036Z [5651/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsub-f16c-u8.c.obj 2025-08-26T19:54:35.6162004Z [5652/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u8.c.obj 2025-08-26T19:54:35.6235579Z [5653/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u8.c.obj 2025-08-26T19:54:35.6608458Z [5654/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u8.c.obj 2025-08-26T19:54:35.6773269Z [5655/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u8.c.obj 2025-08-26T19:54:35.6828216Z [5656/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u8.c.obj 2025-08-26T19:54:35.7047717Z [5657/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u8.c.obj 2025-08-26T19:54:35.7368148Z [5658/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u8.c.obj 2025-08-26T19:54:35.7386274Z [5659/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u8.c.obj 2025-08-26T19:54:35.7403834Z [5660/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u8.c.obj 2025-08-26T19:54:35.7767760Z [5661/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u16.c.obj 2025-08-26T19:54:35.7985566Z [5662/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u8.c.obj 2025-08-26T19:54:35.8047060Z [5663/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u16.c.obj 2025-08-26T19:54:35.8330638Z [5664/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u8.c.obj 2025-08-26T19:54:35.8586822Z [5665/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u32.c.obj 2025-08-26T19:54:35.8639015Z [5666/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u16.c.obj 2025-08-26T19:54:35.8700468Z [5667/7555] 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-08-26T19:54:35.9020989Z [5668/7555] 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-08-26T19:54:35.9208143Z [5669/7555] 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-08-26T19:54:35.9267740Z [5670/7555] 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-08-26T19:54:35.9576963Z [5671/7555] 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-08-26T19:54:35.9757782Z [5672/7555] 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-08-26T19:54:35.9856765Z [5673/7555] 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-08-26T19:54:35.9957541Z [5674/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u8.c.obj 2025-08-26T19:54:36.0285617Z [5675/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u16.c.obj 2025-08-26T19:54:36.0432725Z [5676/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u24.c.obj 2025-08-26T19:54:36.0547297Z [5677/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u32.c.obj 2025-08-26T19:54:36.0773889Z [5678/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vsqr-f16c-u8.c.obj 2025-08-26T19:54:36.0956213Z [5679/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u8.c.obj 2025-08-26T19:54:36.1113178Z [5680/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.1244907Z [5681/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3.c.obj 2025-08-26T19:54:36.1515650Z [5682/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.1719493Z [5683/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.1731831Z [5684/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3.c.obj 2025-08-26T19:54:36.2059798Z [5685/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.2219091Z [5686/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3.c.obj 2025-08-26T19:54:36.2365873Z [5687/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.2668971Z [5688/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.2962716Z [5689/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3.c.obj 2025-08-26T19:54:36.2976228Z [5690/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.3068090Z [5691/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:36.3353462Z [5692/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.3555533Z [5693/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:36.3990883Z [5694/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.4217854Z [5695/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:36.4398067Z [5696/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:36.4473086Z [5697/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.4813497Z [5698/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.4930477Z [5699/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.4996759Z [5700/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:36.5410218Z [5701/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.5715724Z [5702/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:36.5766833Z [5703/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:36.5902740Z [5704/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.6331339Z [5705/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:36.6344409Z [5706/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:36.6403891Z [5707/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.6680120Z [5708/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.7018647Z [5709/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.7031802Z [5710/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3.c.obj 2025-08-26T19:54:36.7196700Z [5711/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.7618205Z [5712/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3.c.obj 2025-08-26T19:54:36.7675303Z [5713/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3.c.obj 2025-08-26T19:54:36.7771385Z [5714/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.8291446Z [5715/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3.c.obj 2025-08-26T19:54:36.8381607Z [5716/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c16.c.obj 2025-08-26T19:54:36.8533870Z [5717/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:36.8549749Z [5718/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3.c.obj 2025-08-26T19:54:36.8759085Z [5719/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c16-minmax-fma3-2x.c.obj 2025-08-26T19:54:36.8847986Z [5720/7555] 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-08-26T19:54:36.9060285Z [5721/7555] 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-08-26T19:54:36.9692556Z [5722/7555] 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-08-26T19:54:36.9705829Z [5723/7555] 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-08-26T19:54:36.9760823Z [5724/7555] 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-08-26T19:54:36.9935980Z [5725/7555] 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-08-26T19:54:37.0210832Z [5726/7555] 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-08-26T19:54:37.0319489Z [5727/7555] 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-08-26T19:54:37.0378973Z [5728/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u8.c.obj 2025-08-26T19:54:37.0994994Z [5729/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.1111138Z [5730/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u24.c.obj 2025-08-26T19:54:37.1267132Z [5731/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3.c.obj 2025-08-26T19:54:37.1386564Z [5732/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u16.c.obj 2025-08-26T19:54:37.1566338Z [5733/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.1658992Z [5734/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.2093473Z [5735/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3.c.obj 2025-08-26T19:54:37.2316975Z [5736/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.2374928Z [5737/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.2780521Z [5738/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:37.2794417Z [5739/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.2880736Z [5740/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:37.2953181Z [5741/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.3405323Z [5742/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.3653261Z [5743/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.3666209Z [5744/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:37.4235442Z [5745/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:37.4252334Z [5746/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3.c.obj 2025-08-26T19:54:37.4502861Z [5747/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.4519762Z [5748/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.4615912Z [5749/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3.c.obj 2025-08-26T19:54:37.4987525Z [5750/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.5040890Z [5751/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.5571685Z [5752/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-08-26T19:54:37.5657793Z [5753/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3.c.obj 2025-08-26T19:54:37.6150833Z [5754/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.6168109Z [5755/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.6184650Z [5756/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.6410162Z [5757/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.6558420Z [5758/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.7041413Z [5759/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.7303533Z [5760/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.8112076Z [5761/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.8124661Z [5762/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.8158897Z [5763/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.8171745Z [5764/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.8716265Z [5765/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.9054757Z [5766/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.9107346Z [5767/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.9679442Z [5768/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.9692108Z [5769/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.9756885Z [5770/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:37.9922800Z [5771/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.0427174Z [5772/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.0531531Z [5773/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.0546274Z [5774/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.1218774Z [5775/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.1279901Z [5776/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.1338769Z [5777/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.1581415Z [5778/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.2048909Z [5779/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.2154611Z [5780/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.2247091Z [5781/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.2596271Z [5782/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.2647000Z [5783/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.2705064Z [5784/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.2975779Z [5785/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.3510725Z [5786/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.3707003Z [5787/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.3723750Z [5788/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.4098685Z [5789/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.4110732Z [5790/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast-prfm.c.obj 2025-08-26T19:54:38.4191886Z [5791/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.4325731Z [5792/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.5011288Z [5793/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.5148191Z [5794/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x8-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.5164179Z [5795/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-08-26T19:54:38.5622084Z [5796/7555] 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-08-26T19:54:38.5741632Z [5797/7555] 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-08-26T19:54:38.5856633Z [5798/7555] 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-08-26T19:54:38.5871313Z [5799/7555] 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-08-26T19:54:38.6455462Z [5800/7555] 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-08-26T19:54:38.6606763Z [5801/7555] 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-08-26T19:54:38.6955707Z [5802/7555] 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-08-26T19:54:38.7329841Z [5803/7555] 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-08-26T19:54:38.7348432Z [5804/7555] 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-08-26T19:54:38.7399406Z [5805/7555] 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-08-26T19:54:38.7468891Z [5806/7555] 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-08-26T19:54:38.7947113Z [5807/7555] 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-08-26T19:54:38.8187458Z [5808/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u8.c.obj 2025-08-26T19:54:38.8250178Z [5809/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u32.c.obj 2025-08-26T19:54:38.8929524Z [5810/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u64.c.obj 2025-08-26T19:54:38.9026433Z [5811/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u8.c.obj 2025-08-26T19:54:38.9041537Z [5812/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u8.c.obj 2025-08-26T19:54:38.9101082Z [5813/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-nr.c.obj 2025-08-26T19:54:38.9483369Z [5814/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u32.c.obj 2025-08-26T19:54:38.9496145Z [5815/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u8.c.obj 2025-08-26T19:54:38.9659456Z [5816/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u32.c.obj 2025-08-26T19:54:39.0286174Z [5817/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-nr.c.obj 2025-08-26T19:54:39.0367603Z [5818/7555] 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-08-26T19:54:39.0592205Z [5819/7555] 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-08-26T19:54:39.0856349Z [5820/7555] 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-08-26T19:54:39.0992841Z [5821/7555] 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-08-26T19:54:39.1055130Z [5822/7555] 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-08-26T19:54:39.1165852Z [5823/7555] 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-08-26T19:54:39.1675081Z [5824/7555] 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-08-26T19:54:39.1728756Z [5825/7555] 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-08-26T19:54:39.1820237Z [5826/7555] 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-08-26T19:54:39.2103923Z [5827/7555] 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-08-26T19:54:39.2354477Z [5828/7555] 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-08-26T19:54:39.2368677Z [5829/7555] 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-08-26T19:54:39.2471174Z [5830/7555] 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-08-26T19:54:39.2992089Z [5831/7555] 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-08-26T19:54:39.3132189Z [5832/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.3220732Z [5833/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.3603544Z [5834/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.3697360Z [5835/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.3755534Z [5836/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.3862643Z [5837/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.4362025Z [5838/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.4553517Z [5839/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.4603517Z [5840/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.4958581Z [5841/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x8-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.5081169Z [5842/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x8-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.5133242Z [5843/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x16-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.5403329Z [5844/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-3x16-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.5564785Z [5845/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x16-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.5874736Z [5846/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x8-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.5933848Z [5847/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x16-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.6145989Z [5848/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16-acc2.c.obj 2025-08-26T19:54:39.6220266Z [5849/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-6x8-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.6326419Z [5850/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-7x8-minmax-avx2-broadcast.c.obj 2025-08-26T19:54:39.6473747Z [5851/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16.c.obj 2025-08-26T19:54:39.6776500Z [5852/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc2.c.obj 2025-08-26T19:54:39.6954606Z [5853/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc4.c.obj 2025-08-26T19:54:39.7029809Z [5854/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc2.c.obj 2025-08-26T19:54:39.7304212Z [5855/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc5.c.obj 2025-08-26T19:54:39.7318968Z [5856/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40.c.obj 2025-08-26T19:54:39.7451265Z [5857/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc2.c.obj 2025-08-26T19:54:39.7583115Z [5858/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc3.c.obj 2025-08-26T19:54:39.7861774Z [5859/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48.c.obj 2025-08-26T19:54:39.8183444Z [5860/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc4.c.obj 2025-08-26T19:54:39.8396068Z [5861/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc2.c.obj 2025-08-26T19:54:39.8408307Z [5862/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64.c.obj 2025-08-26T19:54:39.8456764Z [5863/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72-acc3.c.obj 2025-08-26T19:54:39.8505434Z [5864/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72.c.obj 2025-08-26T19:54:39.8709209Z [5865/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc2.c.obj 2025-08-26T19:54:39.8929402Z [5866/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc5.c.obj 2025-08-26T19:54:39.9551861Z [5867/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc2.c.obj 2025-08-26T19:54:39.9611328Z [5868/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc3.c.obj 2025-08-26T19:54:39.9694164Z [5869/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80.c.obj 2025-08-26T19:54:39.9793486Z [5870/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc6.c.obj 2025-08-26T19:54:39.9805239Z [5871/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96.c.obj 2025-08-26T19:54:39.9889664Z [5872/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u8.c.obj 2025-08-26T19:54:40.0030479Z [5873/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u8.c.obj 2025-08-26T19:54:40.0786634Z [5874/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u16.c.obj 2025-08-26T19:54:40.0841264Z [5875/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u24.c.obj 2025-08-26T19:54:40.0953950Z [5876/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u32.c.obj 2025-08-26T19:54:40.1008068Z [5877/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u16.c.obj 2025-08-26T19:54:40.1058820Z [5878/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u24.c.obj 2025-08-26T19:54:40.1141888Z [5879/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u8.c.obj 2025-08-26T19:54:40.1253237Z [5880/7555] 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-08-26T19:54:40.2084102Z [5881/7555] 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-08-26T19:54:40.2130772Z [5882/7555] 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-08-26T19:54:40.2180631Z [5883/7555] 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-08-26T19:54:40.2231585Z [5884/7555] 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-08-26T19:54:40.2302202Z [5885/7555] 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-08-26T19:54:40.2354243Z [5886/7555] 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-08-26T19:54:40.2421320Z [5887/7555] 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-08-26T19:54:40.3613165Z [5888/7555] 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-08-26T19:54:40.3631294Z [5889/7555] 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-08-26T19:54:40.3685663Z [5890/7555] 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-08-26T19:54:40.3700378Z [5891/7555] 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-08-26T19:54:40.3756101Z [5892/7555] 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-08-26T19:54:40.3968721Z [5893/7555] 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-08-26T19:54:40.4089515Z [5894/7555] 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-08-26T19:54:40.5070891Z [5895/7555] 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-08-26T19:54:40.5140453Z [5896/7555] 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-08-26T19:54:40.5199737Z [5897/7555] 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-08-26T19:54:40.5258358Z [5898/7555] 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-08-26T19:54:40.5273794Z [5899/7555] 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-08-26T19:54:40.5379228Z [5900/7555] 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-08-26T19:54:40.5489521Z [5901/7555] 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-08-26T19:54:40.6538677Z [5902/7555] 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-08-26T19:54:40.6623125Z [5903/7555] 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-08-26T19:54:40.6668213Z [5904/7555] 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-08-26T19:54:40.6743835Z [5905/7555] 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-08-26T19:54:40.6811604Z [5906/7555] 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-08-26T19:54:40.7198440Z [5907/7555] 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-08-26T19:54:40.7372788Z [5908/7555] 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-08-26T19:54:40.7852882Z [5909/7555] 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-08-26T19:54:40.7912592Z [5910/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u16.c.obj 2025-08-26T19:54:40.7960120Z [5911/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u32.c.obj 2025-08-26T19:54:40.8059133Z [5912/7555] 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-08-26T19:54:40.8074402Z [5913/7555] 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-08-26T19:54:40.8295762Z [5914/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u48.c.obj 2025-08-26T19:54:40.8576273Z [5915/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u16.c.obj 2025-08-26T19:54:40.8852344Z [5916/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc2.c.obj 2025-08-26T19:54:40.8955007Z [5917/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u32.c.obj 2025-08-26T19:54:40.8971944Z [5918/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc4.c.obj 2025-08-26T19:54:40.9016461Z [5919/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32.c.obj 2025-08-26T19:54:40.9202002Z [5920/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u48.c.obj 2025-08-26T19:54:40.9375342Z [5921/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc4.c.obj 2025-08-26T19:54:40.9544870Z [5922/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc2.c.obj 2025-08-26T19:54:40.9853649Z [5923/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc2.c.obj 2025-08-26T19:54:40.9899212Z [5924/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72-acc3.c.obj 2025-08-26T19:54:40.9911056Z [5925/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64.c.obj 2025-08-26T19:54:41.0047759Z [5926/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc5.c.obj 2025-08-26T19:54:41.0068495Z [5927/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72.c.obj 2025-08-26T19:54:41.0241488Z [5928/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80.c.obj 2025-08-26T19:54:41.0546894Z [5929/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc2.c.obj 2025-08-26T19:54:41.0799501Z [5930/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc3.c.obj 2025-08-26T19:54:41.0811482Z [5931/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc6.c.obj 2025-08-26T19:54:41.0896001Z [5932/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96.c.obj 2025-08-26T19:54:41.0959683Z [5933/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc2.c.obj 2025-08-26T19:54:41.1107976Z [5934/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc4.c.obj 2025-08-26T19:54:41.1212333Z [5935/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32.c.obj 2025-08-26T19:54:41.1396439Z [5936/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc2.c.obj 2025-08-26T19:54:41.1695176Z [5937/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64.c.obj 2025-08-26T19:54:41.1708316Z [5938/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc4.c.obj 2025-08-26T19:54:41.1866041Z [5939/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72.c.obj 2025-08-26T19:54:41.2019199Z [5940/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc2.c.obj 2025-08-26T19:54:41.2030016Z [5941/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72-acc3.c.obj 2025-08-26T19:54:41.2093829Z [5942/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc5.c.obj 2025-08-26T19:54:41.2259820Z [5943/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80.c.obj 2025-08-26T19:54:41.2642556Z [5944/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc2.c.obj 2025-08-26T19:54:41.2770092Z [5945/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc6.c.obj 2025-08-26T19:54:41.2967749Z [5946/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96.c.obj 2025-08-26T19:54:41.3021234Z [5947/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u8.c.obj 2025-08-26T19:54:41.3280820Z [5948/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u16-acc2.c.obj 2025-08-26T19:54:41.3438730Z [5949/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc2.c.obj 2025-08-26T19:54:41.3546136Z [5950/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc3.c.obj 2025-08-26T19:54:41.3652138Z [5951/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc4.c.obj 2025-08-26T19:54:41.4031744Z [5952/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u8.c.obj 2025-08-26T19:54:41.4246382Z [5953/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc4.c.obj 2025-08-26T19:54:41.4294506Z [5954/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u16-acc2.c.obj 2025-08-26T19:54:41.4455265Z [5955/7555] 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-08-26T19:54:41.4583316Z [5956/7555] 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-08-26T19:54:41.4928389Z [5957/7555] 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-08-26T19:54:41.4997185Z [5958/7555] 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-08-26T19:54:41.5191981Z [5959/7555] 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-08-26T19:54:41.5435296Z [5960/7555] 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-08-26T19:54:41.5602487Z [5961/7555] 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-08-26T19:54:41.5848345Z [5962/7555] 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-08-26T19:54:41.6006508Z [5963/7555] 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-08-26T19:54:41.6104932Z [5964/7555] 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-08-26T19:54:41.6122619Z [5965/7555] 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-08-26T19:54:41.6274218Z [5966/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u8.c.obj 2025-08-26T19:54:41.6642299Z [5967/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u16.c.obj 2025-08-26T19:54:41.6728881Z [5968/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u24.c.obj 2025-08-26T19:54:41.6986011Z [5969/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u16.c.obj 2025-08-26T19:54:41.7173436Z [5970/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u8.c.obj 2025-08-26T19:54:41.7185741Z [5971/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u32.c.obj 2025-08-26T19:54:41.7196931Z [5972/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u24.c.obj 2025-08-26T19:54:41.7211086Z [5973/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u32.c.obj 2025-08-26T19:54:41.7675708Z [5974/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u16.c.obj 2025-08-26T19:54:41.7733528Z [5975/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u8.c.obj 2025-08-26T19:54:41.8048236Z [5976/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u24.c.obj 2025-08-26T19:54:41.8098253Z [5977/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u32.c.obj 2025-08-26T19:54:41.8466579Z [5978/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u24.c.obj 2025-08-26T19:54:41.9034117Z [5979/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u32.c.obj 2025-08-26T19:54:41.9052202Z [5980/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u8.c.obj 2025-08-26T19:54:41.9098554Z [5981/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u16.c.obj 2025-08-26T19:54:41.9233602Z [5982/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u8.c.obj 2025-08-26T19:54:41.9792344Z [5983/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u32.c.obj 2025-08-26T19:54:41.9875961Z [5984/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u24.c.obj 2025-08-26T19:54:42.0308580Z [5985/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u32.c.obj 2025-08-26T19:54:42.0365133Z [5986/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u8.c.obj 2025-08-26T19:54:42.0381994Z [5987/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u24.c.obj 2025-08-26T19:54:42.0590364Z [5988/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u16.c.obj 2025-08-26T19:54:42.0645689Z [5989/7555] 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-08-26T19:54:42.1275826Z [5990/7555] 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-08-26T19:54:42.1291560Z [5991/7555] 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-08-26T19:54:42.2280831Z [5992/7555] 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-08-26T19:54:42.2337595Z [5993/7555] 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-08-26T19:54:42.2353450Z [5994/7555] 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-08-26T19:54:42.2375585Z [5995/7555] 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-08-26T19:54:42.2442811Z [5996/7555] 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-08-26T19:54:42.2626786Z [5997/7555] 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-08-26T19:54:42.2671997Z [5998/7555] 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-08-26T19:54:42.3896085Z [5999/7555] 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-08-26T19:54:42.3953663Z [6000/7555] 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-08-26T19:54:42.3966343Z [6001/7555] 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-08-26T19:54:42.3977913Z [6002/7555] 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-08-26T19:54:42.4024677Z [6003/7555] 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-08-26T19:54:42.4241631Z [6004/7555] 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-08-26T19:54:42.4254704Z [6005/7555] 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-08-26T19:54:42.5397354Z [6006/7555] 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-08-26T19:54:42.5457017Z [6007/7555] 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-08-26T19:54:42.5469015Z [6008/7555] 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-08-26T19:54:42.5516986Z [6009/7555] 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-08-26T19:54:42.5673002Z [6010/7555] 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-08-26T19:54:42.5724424Z [6011/7555] 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-08-26T19:54:42.5812984Z [6012/7555] 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-08-26T19:54:42.6735026Z [6013/7555] 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-08-26T19:54:42.6833082Z [6014/7555] 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-08-26T19:54:42.6886783Z [6015/7555] 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-08-26T19:54:42.7048629Z [6016/7555] 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-08-26T19:54:42.7107399Z [6017/7555] 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-08-26T19:54:42.7197229Z [6018/7555] 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-08-26T19:54:42.7254775Z [6019/7555] 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-08-26T19:54:42.8181979Z [6020/7555] 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-08-26T19:54:42.8315936Z [6021/7555] 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-08-26T19:54:42.8380791Z [6022/7555] 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-08-26T19:54:42.8527156Z [6023/7555] 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-08-26T19:54:42.8542763Z [6024/7555] 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-08-26T19:54:42.8592623Z [6025/7555] 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-08-26T19:54:42.8708583Z [6026/7555] 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-08-26T19:54:42.9637819Z [6027/7555] 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-08-26T19:54:42.9801593Z [6028/7555] 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-08-26T19:54:42.9858403Z [6029/7555] 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-08-26T19:54:43.0010114Z [6030/7555] 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-08-26T19:54:43.0071783Z [6031/7555] 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-08-26T19:54:43.0158808Z [6032/7555] 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-08-26T19:54:43.0368222Z [6033/7555] 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-08-26T19:54:43.1022835Z [6034/7555] 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-08-26T19:54:43.1250596Z [6035/7555] 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-08-26T19:54:43.1316045Z [6036/7555] 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-08-26T19:54:43.1421045Z [6037/7555] 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-08-26T19:54:43.1470972Z [6038/7555] 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-08-26T19:54:43.1621015Z [6039/7555] 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-08-26T19:54:43.1841504Z [6040/7555] 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-08-26T19:54:43.2498863Z [6041/7555] 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-08-26T19:54:43.2661923Z [6042/7555] 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-08-26T19:54:43.2805427Z [6043/7555] 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-08-26T19:54:43.2817633Z [6044/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:43.2990122Z [6045/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:43.3005825Z [6046/7555] 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-08-26T19:54:43.3312494Z [6047/7555] 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-08-26T19:54:43.3901923Z [6048/7555] 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-08-26T19:54:43.3918845Z [6049/7555] 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-08-26T19:54:43.4128793Z [6050/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:43.4199303Z [6051/7555] 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-08-26T19:54:43.4317112Z [6052/7555] 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-08-26T19:54:43.4387153Z [6053/7555] 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-08-26T19:54:43.4573668Z [6054/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:43.5190249Z [6055/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:43.5243419Z [6056/7555] 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-08-26T19:54:43.5388818Z [6057/7555] 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-08-26T19:54:43.5441271Z [6058/7555] 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-08-26T19:54:43.5568757Z [6059/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:43.5677392Z [6060/7555] 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-08-26T19:54:43.5966992Z [6061/7555] 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-08-26T19:54:43.6454431Z [6062/7555] 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-08-26T19:54:43.6514551Z [6063/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:43.6746443Z [6064/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:43.6808848Z [6065/7555] 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-08-26T19:54:43.6864283Z [6066/7555] 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-08-26T19:54:43.6976768Z [6067/7555] 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-08-26T19:54:43.7272702Z [6068/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:43.7772058Z [6069/7555] 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-08-26T19:54:43.8037673Z [6070/7555] 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-08-26T19:54:43.8111005Z [6071/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:43.8170723Z [6072/7555] 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-08-26T19:54:43.8397391Z [6073/7555] 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-08-26T19:54:43.8494154Z [6074/7555] 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-08-26T19:54:43.8545821Z [6075/7555] 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-08-26T19:54:43.9067248Z [6076/7555] 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-08-26T19:54:43.9234205Z [6077/7555] 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-08-26T19:54:43.9615010Z [6078/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:43.9960091Z [6079/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:44.0019683Z [6080/7555] 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-08-26T19:54:44.0377284Z [6081/7555] 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-08-26T19:54:44.0445863Z [6082/7555] 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-08-26T19:54:44.0927885Z [6083/7555] 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-08-26T19:54:44.0992655Z [6084/7555] 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-08-26T19:54:44.1005981Z [6085/7555] 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-08-26T19:54:44.1211387Z [6086/7555] 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-08-26T19:54:44.1365253Z [6087/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:44.1559206Z [6088/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u32.c.obj 2025-08-26T19:54:44.1573180Z [6089/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u24.c.obj 2025-08-26T19:54:44.2051044Z [6090/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u64.c.obj 2025-08-26T19:54:44.2113623Z [6091/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u24.c.obj 2025-08-26T19:54:44.2168878Z [6092/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u8.c.obj 2025-08-26T19:54:44.2429654Z [6093/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u32.c.obj 2025-08-26T19:54:44.2518114Z [6094/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx2-madd.c.obj 2025-08-26T19:54:44.2729149Z [6095/7555] 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-08-26T19:54:44.2819024Z [6096/7555] 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-08-26T19:54:44.3409419Z [6097/7555] 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-08-26T19:54:44.3549232Z [6098/7555] 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-08-26T19:54:44.3562778Z [6099/7555] 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-08-26T19:54:44.3735948Z [6100/7555] 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-08-26T19:54:44.3747714Z [6101/7555] 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-08-26T19:54:44.3928443Z [6102/7555] 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-08-26T19:54:44.4382577Z [6103/7555] 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-08-26T19:54:44.4726463Z [6104/7555] 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-08-26T19:54:44.4819567Z [6105/7555] 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-08-26T19:54:44.4869409Z [6106/7555] 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-08-26T19:54:44.5022250Z [6107/7555] 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-08-26T19:54:44.5082741Z [6108/7555] 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-08-26T19:54:44.5212866Z [6109/7555] 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-08-26T19:54:44.5720362Z [6110/7555] 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-08-26T19:54:44.6055509Z [6111/7555] 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-08-26T19:54:44.6155750Z [6112/7555] 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-08-26T19:54:44.6168884Z [6113/7555] 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-08-26T19:54:44.6595972Z [6114/7555] 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-08-26T19:54:44.6610823Z [6115/7555] 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-08-26T19:54:44.6626374Z [6116/7555] 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-08-26T19:54:44.7291900Z [6117/7555] 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-08-26T19:54:44.7460692Z [6118/7555] 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-08-26T19:54:44.7515581Z [6119/7555] 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-08-26T19:54:44.7568087Z [6120/7555] 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-08-26T19:54:44.7912536Z [6121/7555] 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-08-26T19:54:44.7928101Z [6122/7555] 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-08-26T19:54:44.8010030Z [6123/7555] 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-08-26T19:54:44.8560302Z [6124/7555] 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-08-26T19:54:44.8714376Z [6125/7555] 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-08-26T19:54:44.8830786Z [6126/7555] 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-08-26T19:54:44.8989883Z [6127/7555] 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-08-26T19:54:44.9150172Z [6128/7555] 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-08-26T19:54:44.9247750Z [6129/7555] 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-08-26T19:54:44.9323793Z [6130/7555] 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-08-26T19:54:44.9805794Z [6131/7555] 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-08-26T19:54:45.0015614Z [6132/7555] 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-08-26T19:54:45.0207840Z [6133/7555] 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-08-26T19:54:45.0306119Z [6134/7555] 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-08-26T19:54:45.1054595Z [6135/7555] 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-08-26T19:54:45.1288818Z [6136/7555] 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-08-26T19:54:45.1301575Z [6137/7555] 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-08-26T19:54:45.1314709Z [6138/7555] 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-08-26T19:54:45.3206799Z [6139/7555] 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-08-26T19:54:45.3263230Z [6140/7555] 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-08-26T19:54:45.3277639Z [6141/7555] 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-08-26T19:54:45.3899801Z [6142/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc2.c.obj 2025-08-26T19:54:45.4300689Z [6143/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u32.c.obj 2025-08-26T19:54:45.4353864Z [6144/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c32.c.obj 2025-08-26T19:54:45.5195979Z [6145/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u32.c.obj 2025-08-26T19:54:45.5209552Z [6146/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u24.c.obj 2025-08-26T19:54:45.5221756Z [6147/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-08-26T19:54:45.5278334Z [6148/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc4.c.obj 2025-08-26T19:54:45.7867062Z [6149/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u64.c.obj 2025-08-26T19:54:45.8144837Z [6150/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u16.c.obj 2025-08-26T19:54:45.8157335Z [6151/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u16.c.obj 2025-08-26T19:54:45.8170211Z [6152/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u32.c.obj 2025-08-26T19:54:45.8183989Z [6153/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u24.c.obj 2025-08-26T19:54:45.8239634Z [6154/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u64.c.obj 2025-08-26T19:54:45.8334923Z [6155/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-08-26T19:54:45.9452558Z [6156/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:45.9465108Z [6157/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:45.9476578Z [6158/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:45.9528547Z [6159/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:45.9542964Z [6160/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:45.9657115Z [6161/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:46.1148211Z [6162/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:46.2114438Z [6163/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:46.2140432Z [6164/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:46.2152050Z [6165/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:46.2163852Z [6166/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:46.2222698Z [6167/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:46.2281312Z [6168/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-08-26T19:54:46.2293639Z [6169/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u8.c.obj 2025-08-26T19:54:46.3337203Z [6170/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u24.c.obj 2025-08-26T19:54:46.3402769Z [6171/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u32.c.obj 2025-08-26T19:54:46.3519488Z [6172/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x8c8-minmax-fp32-avx2.c.obj 2025-08-26T19:54:46.3534975Z [6173/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u32.c.obj 2025-08-26T19:54:46.3594854Z [6174/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x8c8-minmax-fp32-avx2.c.obj 2025-08-26T19:54:46.3655889Z [6175/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x8c8-minmax-fp32-avx2.c.obj 2025-08-26T19:54:46.3667861Z [6176/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x8c8-minmax-fp32-avx2.c.obj 2025-08-26T19:54:46.4420503Z [6177/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc2.c.obj 2025-08-26T19:54:46.4531985Z [6178/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc4.c.obj 2025-08-26T19:54:46.4662280Z [6179/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-08-26T19:54:46.4732388Z [6180/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u16.c.obj 2025-08-26T19:54:46.4795051Z [6181/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-08-26T19:54:46.4868949Z [6182/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u16.c.obj 2025-08-26T19:54:46.4880512Z [6183/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u64.c.obj 2025-08-26T19:54:46.5438792Z [6184/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u32.c.obj 2025-08-26T19:54:46.5556105Z [6185/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u64.c.obj 2025-08-26T19:54:46.5630988Z [6186/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u64.c.obj 2025-08-26T19:54:46.5687934Z [6187/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u96.c.obj 2025-08-26T19:54:46.5941887Z [6188/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2-prfm.c.obj 2025-08-26T19:54:46.6019457Z [6189/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2.c.obj 2025-08-26T19:54:46.6041225Z [6190/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2-prfm.c.obj 2025-08-26T19:54:46.6577910Z [6191/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2.c.obj 2025-08-26T19:54:46.6767266Z [6192/7555] 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-08-26T19:54:46.6822631Z [6193/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-avx2-u16.c.obj 2025-08-26T19:54:46.6892938Z [6194/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-mov-avx2.c.obj 2025-08-26T19:54:46.7036212Z [6195/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u8.c.obj 2025-08-26T19:54:46.7155305Z [6196/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-mov-avx2.c.obj 2025-08-26T19:54:46.7264082Z [6197/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-avx2-u16.c.obj 2025-08-26T19:54:46.7608146Z [6198/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u16-acc2.c.obj 2025-08-26T19:54:46.7991618Z [6199/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc4.c.obj 2025-08-26T19:54:46.8257169Z [6200/7555] 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-08-26T19:54:46.8268849Z [6201/7555] 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-08-26T19:54:46.8452544Z [6202/7555] 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-08-26T19:54:46.8605942Z [6203/7555] 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-08-26T19:54:46.8733573Z [6204/7555] 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-08-26T19:54:46.8972767Z [6205/7555] 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-08-26T19:54:46.9610106Z [6206/7555] 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-08-26T19:54:46.9663108Z [6207/7555] 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-08-26T19:54:46.9718135Z [6208/7555] 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-08-26T19:54:47.0011067Z [6209/7555] 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-08-26T19:54:47.0141937Z [6210/7555] 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-08-26T19:54:47.0240336Z [6211/7555] 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-08-26T19:54:47.0300757Z [6212/7555] 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-08-26T19:54:47.1023933Z [6213/7555] 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-08-26T19:54:47.1081507Z [6214/7555] 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-08-26T19:54:47.1142428Z [6215/7555] 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-08-26T19:54:47.1387794Z [6216/7555] 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-08-26T19:54:47.1507215Z [6217/7555] 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-08-26T19:54:47.1725838Z [6218/7555] 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-08-26T19:54:47.1777680Z [6219/7555] 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-08-26T19:54:47.2580540Z [6220/7555] 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-08-26T19:54:47.2602501Z [6221/7555] 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-08-26T19:54:47.2691956Z [6222/7555] 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-08-26T19:54:47.3562895Z [6223/7555] 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-08-26T19:54:47.3582075Z [6224/7555] 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-08-26T19:54:47.3594607Z [6225/7555] 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-08-26T19:54:47.3608194Z [6226/7555] 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-08-26T19:54:47.4531770Z [6227/7555] 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-08-26T19:54:47.4661664Z [6228/7555] 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-08-26T19:54:47.5025150Z [6229/7555] 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-08-26T19:54:47.5176621Z [6230/7555] 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-08-26T19:54:47.5235893Z [6231/7555] 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-08-26T19:54:47.5248132Z [6232/7555] 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-08-26T19:54:47.5260071Z [6233/7555] 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-08-26T19:54:47.5979443Z [6234/7555] 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-08-26T19:54:47.6136743Z [6235/7555] 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-08-26T19:54:47.6391385Z [6236/7555] 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-08-26T19:54:47.6595864Z [6237/7555] 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-08-26T19:54:47.6681971Z [6238/7555] 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-08-26T19:54:47.6770946Z [6239/7555] 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-08-26T19:54:47.7369702Z [6240/7555] 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-08-26T19:54:47.7391231Z [6241/7555] 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-08-26T19:54:47.7494905Z [6242/7555] 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-08-26T19:54:47.7875467Z [6243/7555] 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-08-26T19:54:47.8083121Z [6244/7555] 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-08-26T19:54:47.8131593Z [6245/7555] 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-08-26T19:54:47.8144520Z [6246/7555] 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-08-26T19:54:47.8813705Z [6247/7555] 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-08-26T19:54:47.8878211Z [6248/7555] 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-08-26T19:54:47.8892061Z [6249/7555] 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-08-26T19:54:47.9152845Z [6250/7555] 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-08-26T19:54:47.9439093Z [6251/7555] 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-08-26T19:54:47.9502909Z [6252/7555] 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-08-26T19:54:47.9607171Z [6253/7555] 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-08-26T19:54:47.9971117Z [6254/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u32.c.obj 2025-08-26T19:54:48.0144537Z [6255/7555] 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-08-26T19:54:48.0253237Z [6256/7555] 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-08-26T19:54:48.0315756Z [6257/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc2.c.obj 2025-08-26T19:54:48.0546852Z [6258/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc4.c.obj 2025-08-26T19:54:48.0864336Z [6259/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-08-26T19:54:48.0880287Z [6260/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-08-26T19:54:48.1059988Z [6261/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx-prfm.c.obj 2025-08-26T19:54:48.1385438Z [6262/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx.c.obj 2025-08-26T19:54:48.1444861Z [6263/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx.c.obj 2025-08-26T19:54:48.1518379Z [6264/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx-prfm.c.obj 2025-08-26T19:54:48.1902650Z [6265/7555] 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-08-26T19:54:48.2295146Z [6266/7555] 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-08-26T19:54:48.2373241Z [6267/7555] 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-08-26T19:54:48.2475281Z [6268/7555] 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-08-26T19:54:48.2866823Z [6269/7555] 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-08-26T19:54:48.2926215Z [6270/7555] 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-08-26T19:54:48.2942378Z [6271/7555] 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-08-26T19:54:48.3332998Z [6272/7555] 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-08-26T19:54:48.3718410Z [6273/7555] 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-08-26T19:54:48.3771536Z [6274/7555] 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-08-26T19:54:48.3866495Z [6275/7555] 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-08-26T19:54:48.4303241Z [6276/7555] 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-08-26T19:54:48.4361467Z [6277/7555] 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-08-26T19:54:48.4375929Z [6278/7555] 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-08-26T19:54:48.4779747Z [6279/7555] 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-08-26T19:54:48.5112893Z [6280/7555] 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-08-26T19:54:48.5350924Z [6281/7555] 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-08-26T19:54:48.5495458Z [6282/7555] 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-08-26T19:54:48.5749153Z [6283/7555] 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-08-26T19:54:48.5810359Z [6284/7555] 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-08-26T19:54:48.5869561Z [6285/7555] 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-08-26T19:54:48.6557791Z [6286/7555] 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-08-26T19:54:48.6776842Z [6287/7555] 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-08-26T19:54:48.6876993Z [6288/7555] 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-08-26T19:54:48.6925203Z [6289/7555] 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-08-26T19:54:48.7173125Z [6290/7555] 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-08-26T19:54:48.7246160Z [6291/7555] 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-08-26T19:54:48.7332315Z [6292/7555] 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-08-26T19:54:48.7972151Z [6293/7555] 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-08-26T19:54:48.8140947Z [6294/7555] 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-08-26T19:54:48.8249156Z [6295/7555] 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-08-26T19:54:48.8310464Z [6296/7555] 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-08-26T19:54:48.8955488Z [6297/7555] 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-08-26T19:54:48.8972208Z [6298/7555] 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-08-26T19:54:48.9026606Z [6299/7555] 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-08-26T19:54:48.9374632Z [6300/7555] 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-08-26T19:54:48.9603747Z [6301/7555] 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-08-26T19:54:48.9819076Z [6302/7555] 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-08-26T19:54:48.9833956Z [6303/7555] 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-08-26T19:54:49.0410022Z [6304/7555] 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-08-26T19:54:49.0425979Z [6305/7555] 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-08-26T19:54:49.0626595Z [6306/7555] 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-08-26T19:54:49.0893876Z [6307/7555] 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-08-26T19:54:49.0951491Z [6308/7555] 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-08-26T19:54:49.1286232Z [6309/7555] 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-08-26T19:54:49.1465095Z [6310/7555] 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-08-26T19:54:49.1783804Z [6311/7555] 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-08-26T19:54:49.2247396Z [6312/7555] 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-08-26T19:54:49.2260398Z [6313/7555] 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-08-26T19:54:49.2402989Z [6314/7555] 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-08-26T19:54:49.2457782Z [6315/7555] 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-08-26T19:54:49.2697978Z [6316/7555] 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-08-26T19:54:49.2828886Z [6317/7555] 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-08-26T19:54:49.3677351Z [6318/7555] 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-08-26T19:54:49.3690635Z [6319/7555] 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-08-26T19:54:49.3741160Z [6320/7555] 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-08-26T19:54:49.3822060Z [6321/7555] 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-08-26T19:54:49.4103307Z [6322/7555] 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-08-26T19:54:49.4247370Z [6323/7555] 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-08-26T19:54:49.4468485Z [6324/7555] 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-08-26T19:54:49.5107895Z [6325/7555] 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-08-26T19:54:49.5179689Z [6326/7555] 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-08-26T19:54:49.5192547Z [6327/7555] 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-08-26T19:54:49.5205017Z [6328/7555] 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-08-26T19:54:49.5495403Z [6329/7555] 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-08-26T19:54:49.5733528Z [6330/7555] 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-08-26T19:54:49.5930036Z [6331/7555] 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-08-26T19:54:49.6515221Z [6332/7555] 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-08-26T19:54:49.6651335Z [6333/7555] 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-08-26T19:54:49.6705196Z [6334/7555] 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-08-26T19:54:49.6719756Z [6335/7555] 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-08-26T19:54:49.6966035Z [6336/7555] 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-08-26T19:54:49.7063580Z [6337/7555] 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-08-26T19:54:49.7318371Z [6338/7555] 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-08-26T19:54:49.7944009Z [6339/7555] 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-08-26T19:54:49.8081191Z [6340/7555] 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-08-26T19:54:49.8098779Z [6341/7555] 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-08-26T19:54:49.8163240Z [6342/7555] 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-08-26T19:54:49.8370863Z [6343/7555] 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-08-26T19:54:49.8436066Z [6344/7555] 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-08-26T19:54:49.8734261Z [6345/7555] 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-08-26T19:54:49.9395450Z [6346/7555] 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-08-26T19:54:49.9534786Z [6347/7555] 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-08-26T19:54:49.9611918Z [6348/7555] 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-08-26T19:54:49.9791894Z [6349/7555] 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-08-26T19:54:49.9860446Z [6350/7555] 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-08-26T19:54:49.9931800Z [6351/7555] 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-08-26T19:54:50.0115919Z [6352/7555] 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-08-26T19:54:50.0702575Z [6353/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-08-26T19:54:50.0815520Z [6354/7555] 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-08-26T19:54:50.0953187Z [6355/7555] 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-08-26T19:54:50.1000799Z [6356/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni.c.obj 2025-08-26T19:54:50.1123317Z [6357/7555] 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-08-26T19:54:50.1377995Z [6358/7555] 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-08-26T19:54:50.1605017Z [6359/7555] 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-08-26T19:54:50.2087723Z [6360/7555] 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-08-26T19:54:50.2192344Z [6361/7555] 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-08-26T19:54:50.2613553Z [6362/7555] 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-08-26T19:54:50.2629101Z [6363/7555] 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-08-26T19:54:50.2644291Z [6364/7555] 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-08-26T19:54:50.2867139Z [6365/7555] 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-08-26T19:54:50.2980864Z [6366/7555] 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-08-26T19:54:50.3532320Z [6367/7555] 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-08-26T19:54:50.3636839Z [6368/7555] 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-08-26T19:54:50.4064158Z [6369/7555] 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-08-26T19:54:50.4121960Z [6370/7555] 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-08-26T19:54:50.4137084Z [6371/7555] 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-08-26T19:54:50.4240102Z [6372/7555] 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-08-26T19:54:50.4438748Z [6373/7555] 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-08-26T19:54:50.4922960Z [6374/7555] 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-08-26T19:54:50.5068483Z [6375/7555] 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-08-26T19:54:50.5568324Z [6376/7555] 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-08-26T19:54:50.5628781Z [6377/7555] 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-08-26T19:54:50.5641565Z [6378/7555] 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-08-26T19:54:50.5811441Z [6379/7555] 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-08-26T19:54:50.5825850Z [6380/7555] 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-08-26T19:54:50.6343741Z [6381/7555] 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-08-26T19:54:50.6472567Z [6382/7555] 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-08-26T19:54:50.7004370Z [6383/7555] 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-08-26T19:54:50.7023943Z [6384/7555] 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-08-26T19:54:50.7148078Z [6385/7555] 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-08-26T19:54:50.7210374Z [6386/7555] 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-08-26T19:54:50.7326805Z [6387/7555] 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-08-26T19:54:50.7835958Z [6388/7555] 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-08-26T19:54:50.7985802Z [6389/7555] 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-08-26T19:54:50.8088677Z [6390/7555] 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-08-26T19:54:50.8150747Z [6391/7555] 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-08-26T19:54:50.8226646Z [6392/7555] 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-08-26T19:54:50.8279576Z [6393/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u32.c.obj 2025-08-26T19:54:50.8414802Z [6394/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u64-acc2.c.obj 2025-08-26T19:54:50.8968803Z [6395/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc2.c.obj 2025-08-26T19:54:50.9239169Z [6396/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc4.c.obj 2025-08-26T19:54:50.9549645Z [6397/7555] 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-08-26T19:54:50.9619955Z [6398/7555] 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-08-26T19:54:50.9685834Z [6399/7555] 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-08-26T19:54:50.9803701Z [6400/7555] 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-08-26T19:54:50.9862532Z [6401/7555] 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-08-26T19:54:51.0276059Z [6402/7555] 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-08-26T19:54:51.0620093Z [6403/7555] 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-08-26T19:54:51.1018001Z [6404/7555] 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-08-26T19:54:51.1042562Z [6405/7555] 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-08-26T19:54:51.1151961Z [6406/7555] 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-08-26T19:54:51.1228397Z [6407/7555] 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-08-26T19:54:51.1328763Z [6408/7555] 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-08-26T19:54:51.1728887Z [6409/7555] 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-08-26T19:54:51.2064589Z [6410/7555] 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-08-26T19:54:51.2403842Z [6411/7555] 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-08-26T19:54:51.2494658Z [6412/7555] 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-08-26T19:54:51.2656031Z [6413/7555] 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-08-26T19:54:51.2721393Z [6414/7555] 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-08-26T19:54:51.2737207Z [6415/7555] 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-08-26T19:54:51.3172729Z [6416/7555] 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-08-26T19:54:51.3431719Z [6417/7555] 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-08-26T19:54:51.3866760Z [6418/7555] 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-08-26T19:54:51.3948022Z [6419/7555] 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-08-26T19:54:51.4109492Z [6420/7555] 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-08-26T19:54:51.4175457Z [6421/7555] 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-08-26T19:54:51.4187929Z [6422/7555] 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-08-26T19:54:51.4541186Z [6423/7555] 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-08-26T19:54:51.4757887Z [6424/7555] 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-08-26T19:54:51.5221306Z [6425/7555] 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-08-26T19:54:51.5463970Z [6426/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f-acc2.c.obj 2025-08-26T19:54:51.5513336Z [6427/7555] 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-08-26T19:54:51.5592173Z [6428/7555] 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-08-26T19:54:51.5699216Z [6429/7555] 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-08-26T19:54:51.5753858Z [6430/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f-acc2.c.obj 2025-08-26T19:54:51.6014508Z [6431/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f.c.obj 2025-08-26T19:54:51.6485972Z [6432/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f-acc2.c.obj 2025-08-26T19:54:51.6701135Z [6433/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f-acc2.c.obj 2025-08-26T19:54:51.6792106Z [6434/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f.c.obj 2025-08-26T19:54:51.6915040Z [6435/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f-acc2.c.obj 2025-08-26T19:54:51.6989968Z [6436/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f-acc2.c.obj 2025-08-26T19:54:51.7044266Z [6437/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f.c.obj 2025-08-26T19:54:51.7342744Z [6438/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f-acc2.c.obj 2025-08-26T19:54:51.7791994Z [6439/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f-acc2.c.obj 2025-08-26T19:54:51.8043886Z [6440/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f-acc2.c.obj 2025-08-26T19:54:51.8056624Z [6441/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f.c.obj 2025-08-26T19:54:51.8282201Z [6442/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f.c.obj 2025-08-26T19:54:51.8416881Z [6443/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f-acc2.c.obj 2025-08-26T19:54:51.8433810Z [6444/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:51.8840422Z [6445/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:51.9185482Z [6446/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:51.9447696Z [6447/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:51.9468463Z [6448/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:51.9733933Z [6449/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:51.9812232Z [6450/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:51.9864382Z [6451/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.0182759Z [6452/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.0950357Z [6453/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.0998044Z [6454/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.1115313Z [6455/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.1166667Z [6456/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.1183637Z [6457/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.1460210Z [6458/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.1997877Z [6459/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.2382813Z [6460/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.2394841Z [6461/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.2451389Z [6462/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.2559845Z [6463/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.2642827Z [6464/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.2868045Z [6465/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.3342765Z [6466/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.3860465Z [6467/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.3907834Z [6468/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.3971142Z [6469/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.3983941Z [6470/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.4263254Z [6471/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.4356127Z [6472/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.4826670Z [6473/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.5382633Z [6474/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.5454680Z [6475/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.5502768Z [6476/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.5519260Z [6477/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.5701891Z [6478/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.5813200Z [6479/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.6158030Z [6480/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.6878798Z [6481/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.6968166Z [6482/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.6980344Z [6483/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.7033187Z [6484/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x64-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.7237650Z [6485/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.7488413Z [6486/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.7873301Z [6487/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.8198485Z [6488/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.8314210Z [6489/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.8365348Z [6490/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.8511072Z [6491/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.8586463Z [6492/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.8757985Z [6493/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.9198579Z [6494/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.9510183Z [6495/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.9631171Z [6496/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc2.c.obj 2025-08-26T19:54:52.9692268Z [6497/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.9716530Z [6498/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.9773052Z [6499/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x16-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:52.9913504Z [6500/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x32-minmax-avx512f-broadcast.c.obj 2025-08-26T19:54:53.0034395Z [6501/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc4.c.obj 2025-08-26T19:54:53.0397703Z [6502/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-08-26T19:54:53.0632477Z [6503/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128.c.obj 2025-08-26T19:54:53.0679041Z [6504/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc2.c.obj 2025-08-26T19:54:53.0689448Z [6505/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc4.c.obj 2025-08-26T19:54:53.0894893Z [6506/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc2.c.obj 2025-08-26T19:54:53.0962031Z [6507/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144-acc3.c.obj 2025-08-26T19:54:53.1319133Z [6508/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc5.c.obj 2025-08-26T19:54:53.1368045Z [6509/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144.c.obj 2025-08-26T19:54:53.1524691Z [6510/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160.c.obj 2025-08-26T19:54:53.1648383Z [6511/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc2.c.obj 2025-08-26T19:54:53.1747764Z [6512/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc3.c.obj 2025-08-26T19:54:53.1760207Z [6513/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc6.c.obj 2025-08-26T19:54:53.2124565Z [6514/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192.c.obj 2025-08-26T19:54:53.2181373Z [6515/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc2.c.obj 2025-08-26T19:54:53.2338613Z [6516/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc4.c.obj 2025-08-26T19:54:53.2471808Z [6517/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64.c.obj 2025-08-26T19:54:53.2521417Z [6518/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc2.c.obj 2025-08-26T19:54:53.2648110Z [6519/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc4.c.obj 2025-08-26T19:54:53.2916918Z [6520/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128.c.obj 2025-08-26T19:54:53.3061140Z [6521/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144-acc3.c.obj 2025-08-26T19:54:53.3113454Z [6522/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144.c.obj 2025-08-26T19:54:53.3230460Z [6523/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc2.c.obj 2025-08-26T19:54:53.3322870Z [6524/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc5.c.obj 2025-08-26T19:54:53.3513350Z [6525/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160.c.obj 2025-08-26T19:54:53.3599703Z [6526/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc2.c.obj 2025-08-26T19:54:53.3958283Z [6527/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc6.c.obj 2025-08-26T19:54:53.4009298Z [6528/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192.c.obj 2025-08-26T19:54:53.4147006Z [6529/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc3.c.obj 2025-08-26T19:54:53.4338382Z [6530/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u16.c.obj 2025-08-26T19:54:53.4389073Z [6531/7555] 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-08-26T19:54:53.4594482Z [6532/7555] 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-08-26T19:54:53.4689933Z [6533/7555] 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-08-26T19:54:53.5082807Z [6534/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u32-acc2.c.obj 2025-08-26T19:54:53.5102499Z [6535/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u16.c.obj 2025-08-26T19:54:53.5193704Z [6536/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc4.c.obj 2025-08-26T19:54:53.5422822Z [6537/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c16.c.obj 2025-08-26T19:54:53.5562816Z [6538/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c32.c.obj 2025-08-26T19:54:53.5684452Z [6539/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c128.c.obj 2025-08-26T19:54:53.5852672Z [6540/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u16.c.obj 2025-08-26T19:54:53.6210133Z [6541/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u48-acc3.c.obj 2025-08-26T19:54:53.6285920Z [6542/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u32-acc2.c.obj 2025-08-26T19:54:53.6447084Z [6543/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc2.c.obj 2025-08-26T19:54:53.6524411Z [6544/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u16.c.obj 2025-08-26T19:54:53.6648243Z [6545/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u32-acc2.c.obj 2025-08-26T19:54:53.6745058Z [6546/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u48-acc3.c.obj 2025-08-26T19:54:53.6871771Z [6547/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc2.c.obj 2025-08-26T19:54:53.7340529Z [6548/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc4.c.obj 2025-08-26T19:54:53.7392509Z [6549/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u16.c.obj 2025-08-26T19:54:53.7566438Z [6550/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u32-acc2.c.obj 2025-08-26T19:54:53.7654975Z [6551/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u48-acc3.c.obj 2025-08-26T19:54:53.7811727Z [6552/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc2.c.obj 2025-08-26T19:54:53.7931582Z [6553/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u16.c.obj 2025-08-26T19:54:53.8003604Z [6554/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u32-acc2.c.obj 2025-08-26T19:54:53.8416996Z [6555/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u48-acc3.c.obj 2025-08-26T19:54:53.8519110Z [6556/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc2.c.obj 2025-08-26T19:54:53.8809750Z [6557/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u16.c.obj 2025-08-26T19:54:53.8894913Z [6558/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u16.c.obj 2025-08-26T19:54:53.9002709Z [6559/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u16.c.obj 2025-08-26T19:54:53.9101114Z [6560/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u16.c.obj 2025-08-26T19:54:53.9234057Z [6561/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u16.c.obj 2025-08-26T19:54:53.9730843Z [6562/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u16.c.obj 2025-08-26T19:54:53.9780869Z [6563/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u16.c.obj 2025-08-26T19:54:53.9949563Z [6564/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u16.c.obj 2025-08-26T19:54:54.0117673Z [6565/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u16.c.obj 2025-08-26T19:54:54.0186251Z [6566/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u16.c.obj 2025-08-26T19:54:54.0319135Z [6567/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u16.c.obj 2025-08-26T19:54:54.0783813Z [6568/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u16.c.obj 2025-08-26T19:54:54.0854072Z [6569/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u16.c.obj 2025-08-26T19:54:54.0985931Z [6570/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u16.c.obj 2025-08-26T19:54:54.1197570Z [6571/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u16.c.obj 2025-08-26T19:54:54.1381494Z [6572/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u16.c.obj 2025-08-26T19:54:54.1434315Z [6573/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u16.c.obj 2025-08-26T19:54:54.1448551Z [6574/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u16.c.obj 2025-08-26T19:54:54.1977024Z [6575/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u16.c.obj 2025-08-26T19:54:54.2037307Z [6576/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u32.c.obj 2025-08-26T19:54:54.2281114Z [6577/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u16.c.obj 2025-08-26T19:54:54.2378852Z [6578/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u64.c.obj 2025-08-26T19:54:54.2597933Z [6579/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u128.c.obj 2025-08-26T19:54:54.2653297Z [6580/7555] 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-08-26T19:54:54.2963329Z [6581/7555] 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-08-26T19:54:54.3247569Z [6582/7555] 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-08-26T19:54:54.3262625Z [6583/7555] 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-08-26T19:54:54.3415000Z [6584/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u16.c.obj 2025-08-26T19:54:54.3551528Z [6585/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u32.c.obj 2025-08-26T19:54:54.3814930Z [6586/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u48.c.obj 2025-08-26T19:54:54.3830616Z [6587/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-div.c.obj 2025-08-26T19:54:54.4141044Z [6588/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u32.c.obj 2025-08-26T19:54:54.4479179Z [6589/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u32.c.obj 2025-08-26T19:54:54.4491979Z [6590/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-nr.c.obj 2025-08-26T19:54:54.4710264Z [6591/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u32.c.obj 2025-08-26T19:54:54.4973112Z [6592/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u32.c.obj 2025-08-26T19:54:54.5063295Z [6593/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u32.c.obj 2025-08-26T19:54:54.5127829Z [6594/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u16.c.obj 2025-08-26T19:54:54.5423034Z [6595/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u32.c.obj 2025-08-26T19:54:54.5719806Z [6596/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u32.c.obj 2025-08-26T19:54:54.5782390Z [6597/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u16.c.obj 2025-08-26T19:54:54.6011010Z [6598/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u64.c.obj 2025-08-26T19:54:54.6156110Z [6599/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u48.c.obj 2025-08-26T19:54:54.6176696Z [6600/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u16.c.obj 2025-08-26T19:54:54.6239090Z [6601/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-08-26T19:54:54.6424633Z [6602/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u32.c.obj 2025-08-26T19:54:54.6715276Z [6603/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u32.c.obj 2025-08-26T19:54:54.6857412Z [6604/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u48.c.obj 2025-08-26T19:54:54.7032114Z [6605/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u64.c.obj 2025-08-26T19:54:54.7086233Z [6606/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u16.c.obj 2025-08-26T19:54:54.7454468Z [6607/7555] 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-08-26T19:54:54.7472459Z [6608/7555] 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-08-26T19:54:54.7618669Z [6609/7555] 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-08-26T19:54:54.7858346Z [6610/7555] 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-08-26T19:54:54.8127589Z [6611/7555] 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-08-26T19:54:54.8236951Z [6612/7555] 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-08-26T19:54:54.8253065Z [6613/7555] 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-08-26T19:54:54.8667046Z [6614/7555] 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-08-26T19:54:54.8727067Z [6615/7555] 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-08-26T19:54:54.8865904Z [6616/7555] 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-08-26T19:54:54.9112962Z [6617/7555] 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-08-26T19:54:54.9299586Z [6618/7555] 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-08-26T19:54:54.9431124Z [6619/7555] 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-08-26T19:54:54.9451697Z [6620/7555] 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-08-26T19:54:54.9863528Z [6621/7555] 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-08-26T19:54:54.9967687Z [6622/7555] 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-08-26T19:54:55.0018654Z [6623/7555] 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-08-26T19:54:55.0358156Z [6624/7555] 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-08-26T19:54:55.0497312Z [6625/7555] 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-08-26T19:54:55.0786550Z [6626/7555] 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-08-26T19:54:55.0882433Z [6627/7555] 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-08-26T19:54:55.1041548Z [6628/7555] 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-08-26T19:54:55.1146210Z [6629/7555] 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-08-26T19:54:55.1202994Z [6630/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u32.c.obj 2025-08-26T19:54:55.1490172Z [6631/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u48.c.obj 2025-08-26T19:54:55.1791351Z [6632/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-div.c.obj 2025-08-26T19:54:55.1910961Z [6633/7555] 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-08-26T19:54:55.1971228Z [6634/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u1.c.obj 2025-08-26T19:54:55.2159892Z [6635/7555] 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-08-26T19:54:55.2285496Z [6636/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u8.c.obj 2025-08-26T19:54:55.2380448Z [6637/7555] 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-08-26T19:54:55.2749115Z [6638/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx512f-u4.c.obj 2025-08-26T19:54:55.2949932Z [6639/7555] 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-08-26T19:54:55.3024580Z [6640/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u1.c.obj 2025-08-26T19:54:55.3102744Z [6641/7555] 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-08-26T19:54:55.3307382Z [6642/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-goi-avx512f-u4.c.obj 2025-08-26T19:54:55.3421318Z [6643/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u32.c.obj 2025-08-26T19:54:55.3440835Z [6644/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c16.c.obj 2025-08-26T19:54:55.3858189Z [6645/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c32.c.obj 2025-08-26T19:54:55.4038365Z [6646/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c128.c.obj 2025-08-26T19:54:55.4249843Z [6647/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u16.c.obj 2025-08-26T19:54:55.4298913Z [6648/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u32-acc2.c.obj 2025-08-26T19:54:55.4372245Z [6649/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u48-acc3.c.obj 2025-08-26T19:54:55.4506815Z [6650/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc2.c.obj 2025-08-26T19:54:55.4555573Z [6651/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u128-acc4.c.obj 2025-08-26T19:54:55.4928286Z [6652/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u16.c.obj 2025-08-26T19:54:55.5159125Z [6653/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u32-acc2.c.obj 2025-08-26T19:54:55.5391000Z [6654/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u48-acc3.c.obj 2025-08-26T19:54:55.5449247Z [6655/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc2.c.obj 2025-08-26T19:54:55.5588480Z [6656/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u32-acc2.c.obj 2025-08-26T19:54:55.5641503Z [6657/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u48-acc3.c.obj 2025-08-26T19:54:55.5699754Z [6658/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u16.c.obj 2025-08-26T19:54:55.5975419Z [6659/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc2.c.obj 2025-08-26T19:54:55.6223146Z [6660/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc4.c.obj 2025-08-26T19:54:55.6513368Z [6661/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u32-acc2.c.obj 2025-08-26T19:54:55.6528529Z [6662/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u16.c.obj 2025-08-26T19:54:55.6699608Z [6663/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u48-acc3.c.obj 2025-08-26T19:54:55.6754204Z [6664/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc2.c.obj 2025-08-26T19:54:55.6972866Z [6665/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u16.c.obj 2025-08-26T19:54:55.7153791Z [6666/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u32.c.obj 2025-08-26T19:54:55.7385699Z [6667/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u64.c.obj 2025-08-26T19:54:55.7695726Z [6668/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u32.c.obj 2025-08-26T19:54:55.7870284Z [6669/7555] 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-08-26T19:54:55.8143023Z [6670/7555] 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-08-26T19:54:55.8195285Z [6671/7555] 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-08-26T19:54:55.8391597Z [6672/7555] 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-08-26T19:54:55.8571319Z [6673/7555] 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-08-26T19:54:55.8786211Z [6674/7555] 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-08-26T19:54:55.9188017Z [6675/7555] 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-08-26T19:54:55.9334703Z [6676/7555] 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-08-26T19:54:55.9537411Z [6677/7555] 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-08-26T19:54:55.9602262Z [6678/7555] 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-08-26T19:54:55.9798027Z [6679/7555] 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-08-26T19:54:55.9974227Z [6680/7555] 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-08-26T19:54:56.0131491Z [6681/7555] 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-08-26T19:54:56.0610854Z [6682/7555] 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-08-26T19:54:56.1176617Z [6683/7555] 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-08-26T19:54:56.1189224Z [6684/7555] 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-08-26T19:54:56.1236379Z [6685/7555] 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-08-26T19:54:56.1284730Z [6686/7555] 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-08-26T19:54:56.1415833Z [6687/7555] 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-08-26T19:54:56.1626295Z [6688/7555] 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-08-26T19:54:56.1682221Z [6689/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u32.c.obj 2025-08-26T19:54:56.2340514Z [6690/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u32.c.obj 2025-08-26T19:54:56.2395600Z [6691/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u64.c.obj 2025-08-26T19:54:56.2407910Z [6692/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u96.c.obj 2025-08-26T19:54:56.2468694Z [6693/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u64.c.obj 2025-08-26T19:54:56.2545304Z [6694/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u96.c.obj 2025-08-26T19:54:56.3031772Z [6695/7555] 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-08-26T19:54:56.3048145Z [6696/7555] 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-08-26T19:54:56.3809359Z [6697/7555] 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-08-26T19:54:56.3826586Z [6698/7555] 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-08-26T19:54:56.3884986Z [6699/7555] 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-08-26T19:54:56.3939215Z [6700/7555] 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-08-26T19:54:56.3999938Z [6701/7555] 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-08-26T19:54:56.4431855Z [6702/7555] 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-08-26T19:54:56.4452095Z [6703/7555] 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-08-26T19:54:56.5226221Z [6704/7555] 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-08-26T19:54:56.5343529Z [6705/7555] 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-08-26T19:54:56.5357837Z [6706/7555] 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-08-26T19:54:56.5413090Z [6707/7555] 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-08-26T19:54:56.5532183Z [6708/7555] 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-08-26T19:54:56.5886455Z [6709/7555] 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-08-26T19:54:56.5940369Z [6710/7555] 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-08-26T19:54:56.6621484Z [6711/7555] 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-08-26T19:54:56.6778660Z [6712/7555] 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-08-26T19:54:56.6830132Z [6713/7555] 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-08-26T19:54:56.6967360Z [6714/7555] 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-08-26T19:54:56.6979552Z [6715/7555] 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-08-26T19:54:56.7211092Z [6716/7555] 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-08-26T19:54:56.7376660Z [6717/7555] 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-08-26T19:54:56.8196171Z [6718/7555] 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-08-26T19:54:56.8286446Z [6719/7555] 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-08-26T19:54:56.8340141Z [6720/7555] 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-08-26T19:54:56.8355755Z [6721/7555] 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-08-26T19:54:56.8476988Z [6722/7555] 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-08-26T19:54:56.8706730Z [6723/7555] 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-08-26T19:54:56.8802204Z [6724/7555] 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-08-26T19:54:56.9602809Z [6725/7555] 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-08-26T19:54:56.9712576Z [6726/7555] 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-08-26T19:54:56.9794067Z [6727/7555] 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-08-26T19:54:56.9891165Z [6728/7555] 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-08-26T19:54:57.0013294Z [6729/7555] 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-08-26T19:54:57.0258277Z [6730/7555] 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-08-26T19:54:57.0360276Z [6731/7555] 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-08-26T19:54:57.0998310Z [6732/7555] 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-08-26T19:54:57.1114315Z [6733/7555] 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-08-26T19:54:57.1289939Z [6734/7555] 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-08-26T19:54:57.1359672Z [6735/7555] 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-08-26T19:54:57.1466290Z [6736/7555] 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-08-26T19:54:57.1612123Z [6737/7555] 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-08-26T19:54:57.1723799Z [6738/7555] 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-08-26T19:54:57.2401564Z [6739/7555] 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-08-26T19:54:57.2476195Z [6740/7555] 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-08-26T19:54:57.2596906Z [6741/7555] 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-08-26T19:54:57.2666472Z [6742/7555] 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-08-26T19:54:57.2810705Z [6743/7555] 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-08-26T19:54:57.3017960Z [6744/7555] 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-08-26T19:54:57.3330321Z [6745/7555] 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-08-26T19:54:57.3718846Z [6746/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:54:57.3769020Z [6747/7555] 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-08-26T19:54:57.4008653Z [6748/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:54:57.4406597Z [6749/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:54:57.4632199Z [6750/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:54:57.4823147Z [6751/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:54:57.5028432Z [6752/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:54:57.5205783Z [6753/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:54:57.5407114Z [6754/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:54:57.5608841Z [6755/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u16.c.obj 2025-08-26T19:54:57.5803921Z [6756/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u48.c.obj 2025-08-26T19:54:57.5973940Z [6757/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u64.c.obj 2025-08-26T19:54:57.6162742Z [6758/7555] 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-08-26T19:54:57.6392540Z [6759/7555] 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-08-26T19:54:57.6597528Z [6760/7555] 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-08-26T19:54:57.6781391Z [6761/7555] 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-08-26T19:54:57.7285391Z [6762/7555] 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-08-26T19:54:57.7748655Z [6763/7555] 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-08-26T19:54:57.7951848Z [6764/7555] 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-08-26T19:54:57.8163414Z [6765/7555] 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-08-26T19:54:57.8371011Z [6766/7555] 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-08-26T19:54:57.8561434Z [6767/7555] 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-08-26T19:54:57.8849938Z [6768/7555] 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-08-26T19:54:57.9059742Z [6769/7555] 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-08-26T19:54:57.9275733Z [6770/7555] 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-08-26T19:54:57.9490995Z [6771/7555] 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-08-26T19:54:57.9665845Z [6772/7555] 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-08-26T19:54:57.9864668Z [6773/7555] 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-08-26T19:54:58.0034940Z [6774/7555] 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-08-26T19:54:58.0226287Z [6775/7555] 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-08-26T19:54:58.0416986Z [6776/7555] 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-08-26T19:54:58.0609895Z [6777/7555] 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-08-26T19:54:58.0818818Z [6778/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c128.c.obj 2025-08-26T19:54:58.1053672Z [6779/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u64.c.obj 2025-08-26T19:54:58.1211889Z [6780/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc2.c.obj 2025-08-26T19:54:58.1416649Z [6781/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc4.c.obj 2025-08-26T19:54:58.1607605Z [6782/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-08-26T19:54:58.1794837Z [6783/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-08-26T19:54:58.1974723Z [6784/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:54:58.2157353Z [6785/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:54:58.2354770Z [6786/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:55:01.1680400Z [6787/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:55:01.1890567Z [6788/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:55:01.2151378Z [6789/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:55:01.2457483Z [6790/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:55:01.2683712Z [6791/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-08-26T19:55:01.2874279Z [6792/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u48.c.obj 2025-08-26T19:55:01.2998750Z [6793/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u64.c.obj 2025-08-26T19:55:01.3129224Z [6794/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u16.c.obj 2025-08-26T19:55:01.3215313Z [6795/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-08-26T19:55:01.3365882Z [6796/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-08-26T19:55:01.3837397Z [6797/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-08-26T19:55:01.4349732Z [6798/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-08-26T19:55:01.4408421Z [6799/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-08-26T19:55:01.4421787Z [6800/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-08-26T19:55:01.4439393Z [6801/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-08-26T19:55:01.4552777Z [6802/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-08-26T19:55:01.4673110Z [6803/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-08-26T19:55:01.5100813Z [6804/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-08-26T19:55:01.5449423Z [6805/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u128.c.obj 2025-08-26T19:55:01.5578887Z [6806/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u192.c.obj 2025-08-26T19:55:01.5639035Z [6807/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-08-26T19:55:01.5685891Z [6808/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-08-26T19:55:01.5699504Z [6809/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-08-26T19:55:01.5923458Z [6810/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u256.c.obj 2025-08-26T19:55:01.6071491Z [6811/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-08-26T19:55:01.6313286Z [6812/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u64.c.obj 2025-08-26T19:55:01.6496307Z [6813/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u192.c.obj 2025-08-26T19:55:01.6510429Z [6814/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u256.c.obj 2025-08-26T19:55:01.7037472Z [6815/7555] 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-08-26T19:55:01.7139447Z [6816/7555] 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-08-26T19:55:01.7309684Z [6817/7555] 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-08-26T19:55:01.7512587Z [6818/7555] 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-08-26T19:55:01.7868895Z [6819/7555] 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-08-26T19:55:01.7923021Z [6820/7555] 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-08-26T19:55:01.7980861Z [6821/7555] 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-08-26T19:55:01.8439404Z [6822/7555] 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-08-26T19:55:01.8517117Z [6823/7555] 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-08-26T19:55:01.8733745Z [6824/7555] 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-08-26T19:55:01.9016412Z [6825/7555] 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-08-26T19:55:01.9355374Z [6826/7555] 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-08-26T19:55:01.9368962Z [6827/7555] 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-08-26T19:55:01.9459687Z [6828/7555] 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-08-26T19:55:01.9889750Z [6829/7555] 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-08-26T19:55:01.9952872Z [6830/7555] 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-08-26T19:55:02.0188689Z [6831/7555] 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-08-26T19:55:02.0404587Z [6832/7555] 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-08-26T19:55:02.0850872Z [6833/7555] 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-08-26T19:55:02.1106105Z [6834/7555] 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-08-26T19:55:02.1162000Z [6835/7555] 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-08-26T19:55:02.1350510Z [6836/7555] 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-08-26T19:55:02.1369058Z [6837/7555] 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-08-26T19:55:02.1597374Z [6838/7555] 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-08-26T19:55:02.2111083Z [6839/7555] 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-08-26T19:55:02.2431750Z [6840/7555] 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-08-26T19:55:02.2525800Z [6841/7555] 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-08-26T19:55:02.2787157Z [6842/7555] 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-08-26T19:55:02.3006607Z [6843/7555] 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-08-26T19:55:02.3060124Z [6844/7555] 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-08-26T19:55:02.3353291Z [6845/7555] 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-08-26T19:55:02.3425128Z [6846/7555] 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-08-26T19:55:02.3760106Z [6847/7555] 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-08-26T19:55:02.3816383Z [6848/7555] 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-08-26T19:55:02.4668868Z [6849/7555] 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-08-26T19:55:02.4779280Z [6850/7555] 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-08-26T19:55:02.4887218Z [6851/7555] 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-08-26T19:55:02.5026012Z [6852/7555] 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-08-26T19:55:02.5146486Z [6853/7555] 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-08-26T19:55:02.5209632Z [6854/7555] 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-08-26T19:55:02.5524807Z [6855/7555] 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-08-26T19:55:02.6094048Z [6856/7555] 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-08-26T19:55:02.6425823Z [6857/7555] 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-08-26T19:55:02.6570783Z [6858/7555] 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-08-26T19:55:02.6744036Z [6859/7555] 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-08-26T19:55:02.6760294Z [6860/7555] 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-08-26T19:55:02.6828520Z [6861/7555] 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-08-26T19:55:02.6841033Z [6862/7555] 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-08-26T19:55:02.7852356Z [6863/7555] 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-08-26T19:55:02.7952008Z [6864/7555] 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-08-26T19:55:02.8240761Z [6865/7555] 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-08-26T19:55:02.8290773Z [6866/7555] 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-08-26T19:55:02.8472135Z [6867/7555] 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-08-26T19:55:02.8525181Z [6868/7555] 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-08-26T19:55:02.8657048Z [6869/7555] 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-08-26T19:55:02.9563627Z [6870/7555] 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-08-26T19:55:02.9623809Z [6871/7555] 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-08-26T19:55:02.9637483Z [6872/7555] 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-08-26T19:55:02.9757870Z [6873/7555] 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-08-26T19:55:02.9859033Z [6874/7555] 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-08-26T19:55:02.9949261Z [6875/7555] 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-08-26T19:55:03.0408105Z [6876/7555] 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-08-26T19:55:03.1315216Z [6877/7555] 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-08-26T19:55:03.1402293Z [6878/7555] 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-08-26T19:55:03.1413793Z [6879/7555] 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-08-26T19:55:03.1558208Z [6880/7555] 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-08-26T19:55:03.1690074Z [6881/7555] 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-08-26T19:55:03.1770204Z [6882/7555] 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-08-26T19:55:03.1873790Z [6883/7555] 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-08-26T19:55:03.3122613Z [6884/7555] 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-08-26T19:55:03.3169136Z [6885/7555] 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-08-26T19:55:03.3289186Z [6886/7555] 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-08-26T19:55:03.3409278Z [6887/7555] 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-08-26T19:55:03.3424649Z [6888/7555] 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-08-26T19:55:03.3486725Z [6889/7555] 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-08-26T19:55:03.3544091Z [6890/7555] 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-08-26T19:55:03.4578078Z [6891/7555] 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-08-26T19:55:03.4595270Z [6892/7555] 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-08-26T19:55:03.4734473Z [6893/7555] 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-08-26T19:55:03.4807486Z [6894/7555] 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-08-26T19:55:03.4860419Z [6895/7555] 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-08-26T19:55:03.4911094Z [6896/7555] 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-08-26T19:55:03.4945742Z [6897/7555] 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-08-26T19:55:03.6007329Z [6898/7555] 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-08-26T19:55:03.6194499Z [6899/7555] 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-08-26T19:55:03.6261480Z [6900/7555] 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-08-26T19:55:03.6278440Z [6901/7555] 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-08-26T19:55:03.6383138Z [6902/7555] 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-08-26T19:55:03.6395190Z [6903/7555] 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-08-26T19:55:03.6956814Z [6904/7555] 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-08-26T19:55:03.7373288Z [6905/7555] 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-08-26T19:55:03.7610370Z [6906/7555] 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-08-26T19:55:03.7655005Z [6907/7555] 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-08-26T19:55:03.7668101Z [6908/7555] 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-08-26T19:55:03.7835736Z [6909/7555] 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-08-26T19:55:03.7889526Z [6910/7555] 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-08-26T19:55:03.8384560Z [6911/7555] 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-08-26T19:55:03.8790542Z [6912/7555] 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-08-26T19:55:03.9020944Z [6913/7555] 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-08-26T19:55:03.9118052Z [6914/7555] 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-08-26T19:55:03.9183051Z [6915/7555] 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-08-26T19:55:03.9364855Z [6916/7555] 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-08-26T19:55:03.9384936Z [6917/7555] 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-08-26T19:55:03.9967189Z [6918/7555] 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-08-26T19:55:04.0320763Z [6919/7555] 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-08-26T19:55:04.0432225Z [6920/7555] 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-08-26T19:55:04.0555016Z [6921/7555] 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-08-26T19:55:04.0714646Z [6922/7555] 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-08-26T19:55:04.0840620Z [6923/7555] 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-08-26T19:55:04.0904930Z [6924/7555] 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-08-26T19:55:04.1532207Z [6925/7555] 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-08-26T19:55:04.1867078Z [6926/7555] 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-08-26T19:55:04.1945802Z [6927/7555] 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-08-26T19:55:04.2003756Z [6928/7555] 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-08-26T19:55:04.2077760Z [6929/7555] 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-08-26T19:55:04.2219470Z [6930/7555] 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-08-26T19:55:04.2337190Z [6931/7555] 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-08-26T19:55:04.2868213Z [6932/7555] 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-08-26T19:55:04.3366261Z [6933/7555] 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-08-26T19:55:04.3380846Z [6934/7555] 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-08-26T19:55:04.3438775Z [6935/7555] 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-08-26T19:55:04.3490600Z [6936/7555] 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-08-26T19:55:04.3673474Z [6937/7555] 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-08-26T19:55:04.3765053Z [6938/7555] 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-08-26T19:55:04.4429419Z [6939/7555] 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-08-26T19:55:04.4799755Z [6940/7555] 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-08-26T19:55:04.4850583Z [6941/7555] 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-08-26T19:55:04.4905283Z [6942/7555] 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-08-26T19:55:04.4923345Z [6943/7555] 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-08-26T19:55:04.5134392Z [6944/7555] 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-08-26T19:55:04.5243825Z [6945/7555] 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-08-26T19:55:04.5816691Z [6946/7555] 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-08-26T19:55:04.6258061Z [6947/7555] 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-08-26T19:55:04.6348461Z [6948/7555] 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-08-26T19:55:04.6401871Z [6949/7555] 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-08-26T19:55:04.6415247Z [6950/7555] 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-08-26T19:55:04.6546677Z [6951/7555] 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-08-26T19:55:04.6660840Z [6952/7555] 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-08-26T19:55:04.7591825Z [6953/7555] 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-08-26T19:55:04.7783474Z [6954/7555] 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-08-26T19:55:04.7829369Z [6955/7555] 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-08-26T19:55:04.7916586Z [6956/7555] 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-08-26T19:55:04.7929132Z [6957/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c4-minmax-avx512vnni.c.obj 2025-08-26T19:55:04.7942520Z [6958/7555] 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-08-26T19:55:04.8008976Z [6959/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-avx512vnni.c.obj 2025-08-26T19:55:04.8999144Z [6960/7555] 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-08-26T19:55:04.9223007Z [6961/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x16c4-minmax-avx512vnni.c.obj 2025-08-26T19:55:04.9269036Z [6962/7555] 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-08-26T19:55:04.9375317Z [6963/7555] 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-08-26T19:55:04.9437073Z [6964/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c4-minmax-avx512vnni.c.obj 2025-08-26T19:55:04.9450320Z [6965/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-avx512vnni.c.obj 2025-08-26T19:55:04.9461992Z [6966/7555] 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-08-26T19:55:05.0354419Z [6967/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c4-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.0662183Z [6968/7555] 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-08-26T19:55:05.0721032Z [6969/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.0870616Z [6970/7555] 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-08-26T19:55:05.0883069Z [6971/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c4-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.0946957Z [6972/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.0962903Z [6973/7555] 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-08-26T19:55:05.1803286Z [6974/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c4-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.2158244Z [6975/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c8-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.2391250Z [6976/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c8-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.2407014Z [6977/7555] 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-08-26T19:55:05.2418371Z [6978/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c4-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.2475137Z [6979/7555] 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-08-26T19:55:05.3284090Z [6980/7555] 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-08-26T19:55:05.3353823Z [6981/7555] 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-08-26T19:55:05.3447358Z [6982/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c4-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.3752490Z [6983/7555] 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-08-26T19:55:05.3765509Z [6984/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c4-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.3902795Z [6985/7555] 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-08-26T19:55:05.3915717Z [6986/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c8-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.4537654Z [6987/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u64.c.obj 2025-08-26T19:55:05.4771090Z [6988/7555] 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-08-26T19:55:05.4848686Z [6989/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc4.c.obj 2025-08-26T19:55:05.4907369Z [6990/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc2.c.obj 2025-08-26T19:55:05.4922049Z [6991/7555] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c8-minmax-avx512vnni.c.obj 2025-08-26T19:55:05.5286958Z [6992/7555] 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-08-26T19:55:05.5488512Z [6993/7555] 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-08-26T19:55:05.5876640Z [6994/7555] 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-08-26T19:55:05.6166091Z [6995/7555] 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-08-26T19:55:05.6319981Z [6996/7555] 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-08-26T19:55:05.6371783Z [6997/7555] 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-08-26T19:55:05.6385959Z [6998/7555] 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-08-26T19:55:05.6658459Z [6999/7555] 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-08-26T19:55:05.6889699Z [7000/7555] 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-08-26T19:55:05.7384952Z [7001/7555] 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-08-26T19:55:05.7584377Z [7002/7555] 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-08-26T19:55:05.7852053Z [7003/7555] 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-08-26T19:55:05.7867864Z [7004/7555] 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-08-26T19:55:05.7923546Z [7005/7555] 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-08-26T19:55:05.8068381Z [7006/7555] 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-08-26T19:55:05.8333099Z [7007/7555] 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-08-26T19:55:05.8827218Z [7008/7555] 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-08-26T19:55:05.9070018Z [7009/7555] 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-08-26T19:55:05.9289180Z [7010/7555] 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-08-26T19:55:05.9367698Z [7011/7555] 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-08-26T19:55:05.9421968Z [7012/7555] 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-08-26T19:55:05.9489781Z [7013/7555] 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-08-26T19:55:05.9721724Z [7014/7555] 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-08-26T19:55:06.0229943Z [7015/7555] 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-08-26T19:55:06.0529031Z [7016/7555] 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-08-26T19:55:06.0700114Z [7017/7555] 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-08-26T19:55:06.0777712Z [7018/7555] 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-08-26T19:55:06.0893503Z [7019/7555] 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-08-26T19:55:06.0947085Z [7020/7555] 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-08-26T19:55:06.1115659Z [7021/7555] 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-08-26T19:55:06.1840828Z [7022/7555] 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-08-26T19:55:06.2162871Z [7023/7555] 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-08-26T19:55:06.2178845Z [7024/7555] 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-08-26T19:55:06.2246799Z [7025/7555] 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-08-26T19:55:06.2342231Z [7026/7555] 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-08-26T19:55:06.2485902Z [7027/7555] 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-08-26T19:55:06.2571057Z [7028/7555] 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-08-26T19:55:06.3217733Z [7029/7555] 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-08-26T19:55:06.3622525Z [7030/7555] 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-08-26T19:55:06.3683934Z [7031/7555] 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-08-26T19:55:06.3765700Z [7032/7555] 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-08-26T19:55:06.3827767Z [7033/7555] 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-08-26T19:55:06.3963416Z [7034/7555] 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-08-26T19:55:06.4009868Z [7035/7555] 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-08-26T19:55:06.7145665Z [7036/7555] 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-08-26T19:55:06.7824281Z [7037/7555] 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-08-26T19:55:07.2391972Z [7038/7555] Linking CXX static library lib\gtest_main.lib 2025-08-26T19:55:09.1798332Z [7039/7555] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark_main.dir\benchmark_main.cc.obj 2025-08-26T19:55:09.7048883Z [7040/7555] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\format.cc.obj 2025-08-26T19:55:09.8577965Z [7041/7555] Linking CXX static library lib\gmock.lib 2025-08-26T19:55:10.0759911Z [7042/7555] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\os.cc.obj 2025-08-26T19:55:10.1596618Z [7043/7555] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock_main.cc.obj 2025-08-26T19:55:10.2813004Z [7044/7555] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock-all.cc.obj 2025-08-26T19:55:10.3417636Z [7045/7555] Building CXX object c10\test\CMakeFiles\c10_AllocatorConfig_test.dir\core\AllocatorConfig_test.cpp.obj 2025-08-26T19:55:10.3693657Z [7046/7555] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\__\googletest\src\gtest-all.cc.obj 2025-08-26T19:55:10.4171067Z [7047/7555] Linking CXX static library lib\benchmark.lib 2025-08-26T19:55:10.4478450Z [7048/7555] Building CXX object c10\test\CMakeFiles\c10_CompileTimeFunctionPointer_test.dir\core\CompileTimeFunctionPointer_test.cpp.obj 2025-08-26T19:55:10.6318220Z [7049/7555] Building CXX object c10\test\CMakeFiles\c10_DeviceGuard_test.dir\core\DeviceGuard_test.cpp.obj 2025-08-26T19:55:10.6921206Z [7050/7555] Building CXX object c10\test\CMakeFiles\c10_Device_test.dir\core\Device_test.cpp.obj 2025-08-26T19:55:10.7037584Z [7051/7555] Building C object third_party\ittapi\CMakeFiles\jitprofiling.dir\src\ittnotify\jitprofiling.c.obj 2025-08-26T19:55:10.7343868Z [7052/7555] Building CXX object c10\test\CMakeFiles\c10_DispatchKeySet_test.dir\core\DispatchKeySet_test.cpp.obj 2025-08-26T19:55:10.7462013Z [7053/7555] Building CXX object c10\test\CMakeFiles\c10_StreamGuard_test.dir\core\StreamGuard_test.cpp.obj 2025-08-26T19:55:10.8401941Z [7054/7555] Building CXX object c10\test\CMakeFiles\c10_Scalar_test.dir\core\Scalar_test.cpp.obj 2025-08-26T19:55:10.8474644Z [7055/7555] Building CXX object c10\test\CMakeFiles\c10_SymInt_test.dir\core\SymInt_test.cpp.obj 2025-08-26T19:55:11.0483587Z [7056/7555] Building CXX object c10\test\CMakeFiles\c10_ConstexprCrc_test.dir\util\ConstexprCrc_test.cpp.obj 2025-08-26T19:55:11.0558488Z [7057/7555] Building CXX object c10\test\CMakeFiles\c10_InlineDeviceGuard_test.dir\core\impl\InlineDeviceGuard_test.cpp.obj 2025-08-26T19:55:11.0961276Z [7058/7555] Building CXX object c10\test\CMakeFiles\c10_SizesAndStrides_test.dir\core\impl\SizesAndStrides_test.cpp.obj 2025-08-26T19:55:11.1592925Z [7059/7555] Building CXX object c10\test\CMakeFiles\c10_ArrayRef_test.dir\util\ArrayRef_test.cpp.obj 2025-08-26T19:55:11.1753022Z [7060/7555] Building CXX object c10\test\CMakeFiles\c10_InlineStreamGuard_test.dir\core\impl\InlineStreamGuard_test.cpp.obj 2025-08-26T19:55:11.2210438Z [7061/7555] Building CXX object c10\test\CMakeFiles\c10_cow_test.dir\core\impl\cow_test.cpp.obj 2025-08-26T19:55:11.2561881Z [7062/7555] Building CXX object c10\test\CMakeFiles\c10_Bitset_test.dir\util\Bitset_test.cpp.obj 2025-08-26T19:55:11.4106819Z [7063/7555] Building CXX object c10\test\CMakeFiles\c10_DeadlockDetection_test.dir\util\DeadlockDetection_test.cpp.obj 2025-08-26T19:55:11.4405497Z [7064/7555] Building CXX object c10\test\CMakeFiles\c10_Enumerate_test.dir\util\Enumerate_test.cpp.obj 2025-08-26T19:55:11.4893852Z [7065/7555] Building CXX object c10\test\CMakeFiles\c10_Half_test.dir\util\Half_test.cpp.obj 2025-08-26T19:55:11.5559154Z [7066/7555] Building CXX object c10\test\CMakeFiles\c10_IntrusiveList_test.dir\util\IntrusiveList_test.cpp.obj 2025-08-26T19:55:11.5634103Z [7067/7555] Building CXX object c10\test\CMakeFiles\c10_LeftRight_test.dir\util\LeftRight_test.cpp.obj 2025-08-26T19:55:11.5971579Z [7068/7555] Building CXX object c10\test\CMakeFiles\c10_Metaprogramming_test.dir\util\Metaprogramming_test.cpp.obj 2025-08-26T19:55:11.6127871Z [7069/7555] Building CXX object c10\test\CMakeFiles\c10_NetworkFlow_test.dir\util\NetworkFlow_test.cpp.obj 2025-08-26T19:55:11.8084596Z [7070/7555] Building CXX object c10\test\CMakeFiles\c10_Synchronized_test.dir\util\Synchronized_test.cpp.obj 2025-08-26T19:55:11.8159914Z [7071/7555] Building CXX object c10\test\CMakeFiles\c10_Semaphore_test.dir\util\Semaphore_test.cpp.obj 2025-08-26T19:55:11.8949545Z [7072/7555] Building CXX object c10\test\CMakeFiles\c10_ThreadLocal_test.dir\util\ThreadLocal_test.cpp.obj 2025-08-26T19:55:11.9150995Z [7073/7555] Building CXX object c10\test\CMakeFiles\c10_TypeList_test.dir\util\TypeList_test.cpp.obj 2025-08-26T19:55:11.9391066Z [7074/7555] Building CXX object c10\test\CMakeFiles\c10_TypeIndex_test.dir\util\TypeIndex_test.cpp.obj 2025-08-26T19:55:11.9649367Z [7075/7555] Building CXX object c10\test\CMakeFiles\c10_TypeTraits_test.dir\util\TypeTraits_test.cpp.obj 2025-08-26T19:55:12.0663847Z [7076/7555] Building CXX object c10\test\CMakeFiles\c10_accumulate_test.dir\util\accumulate_test.cpp.obj 2025-08-26T19:55:12.1663948Z [7077/7555] Building CXX object c10\test\CMakeFiles\c10_bit_cast_test.dir\util\bit_cast_test.cpp.obj 2025-08-26T19:55:12.2845168Z [7078/7555] Building CXX object c10\test\CMakeFiles\c10_complex_math_test.dir\util\complex_math_test.cpp.obj 2025-08-26T19:55:12.3189140Z [7079/7555] Building CXX object c10\test\CMakeFiles\c10_error_test.dir\util\error_test.cpp.obj 2025-08-26T19:55:12.3341556Z [7080/7555] Building CXX object c10\test\CMakeFiles\c10_bfloat16_test.dir\util\bfloat16_test.cpp.obj 2025-08-26T19:55:12.4183057Z [7081/7555] Building CXX object c10\test\CMakeFiles\c10_exception_test.dir\util\exception_test.cpp.obj 2025-08-26T19:55:12.4285493Z [7082/7555] Building CXX object c10\test\CMakeFiles\c10_flags_test.dir\util\flags_test.cpp.obj 2025-08-26T19:55:12.4373967Z [7083/7555] Building CXX object c10\test\CMakeFiles\c10_complex_test.dir\util\complex_test.cpp.obj 2025-08-26T19:55:12.4957174Z [7084/7555] Building CXX object c10\test\CMakeFiles\c10_generic_math_test.dir\util\generic_math_test.cpp.obj 2025-08-26T19:55:12.7212516Z [7085/7555] Building CXX object c10\test\CMakeFiles\c10_irange_test.dir\util\irange_test.cpp.obj 2025-08-26T19:55:12.7227761Z [7086/7555] Building CXX object c10\test\CMakeFiles\c10_lazy_test.dir\util\lazy_test.cpp.obj 2025-08-26T19:55:12.8029616Z [7087/7555] Building CXX object c10\test\CMakeFiles\c10_intrusive_ptr_test.dir\util\intrusive_ptr_test.cpp.obj 2025-08-26T19:55:12.8418877Z [7088/7555] Building CXX object c10\test\CMakeFiles\c10_logging_test.dir\util\logging_test.cpp.obj 2025-08-26T19:55:12.8554814Z [7089/7555] Building CXX object c10\test\CMakeFiles\c10_registry_test.dir\util\registry_test.cpp.obj 2025-08-26T19:55:12.8647950Z [7090/7555] Building CXX object c10\test\CMakeFiles\c10_optional_test.dir\util\optional_test.cpp.obj 2025-08-26T19:55:12.8649677Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): warning C4834: discarding return value of function with [[nodiscard]] attribute 2025-08-26T19:55:12.8651275Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): note: the template instantiation context (the oldest one first) is 2025-08-26T19:55:12.8653403Z 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-08-26T19:55:12.8657080Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(694): note: while compiling class template member function 'bool testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register(const char *,testing::internal::CodeLocation,const char *,const char *,int,const std::vector> &)' 2025-08-26T19:55:12.8661320Z 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-08-26T19:55:12.8664998Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(711): note: see reference to class template instantiation 'testing::internal::SuiteApiResolver,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register::TestClass>' being compiled 2025-08-26T19:55:12.8668085Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(491): note: see reference to class template instantiation '`anonymous-namespace'::OptionalTest_Empty_Test' being compiled 2025-08-26T19:55:12.8669804Z with 2025-08-26T19:55:12.8670014Z [ 2025-08-26T19:55:12.8671871Z T=testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register::Type 2025-08-26T19:55:12.8673782Z ] 2025-08-26T19:55:12.8675236Z 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-08-26T19:55:12.8676874Z with 2025-08-26T19:55:12.8677186Z [ 2025-08-26T19:55:12.9491988Z T=testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register::Type 2025-08-26T19:55:12.9493342Z ] 2025-08-26T19:55:12.9493895Z [7091/7555] Building CXX object c10\test\CMakeFiles\c10_ordered_preserving_dict_test.dir\util\ordered_preserving_dict_test.cpp.obj 2025-08-26T19:55:13.1167743Z [7092/7555] Building CXX object c10\test\CMakeFiles\c10_ssize_test.dir\util\ssize_test.cpp.obj 2025-08-26T19:55:13.1736971Z [7093/7555] Building CXX object c10\test\CMakeFiles\c10_string_util_test.dir\util\string_util_test.cpp.obj 2025-08-26T19:55:13.2038304Z [7094/7555] Building CXX object c10\test\CMakeFiles\c10_small_vector_test.dir\util\small_vector_test.cpp.obj 2025-08-26T19:55:13.2071315Z [7095/7555] Building CXX object c10\test\CMakeFiles\c10_tempfile_test.dir\util\tempfile_test.cpp.obj 2025-08-26T19:55:13.2858304Z [7096/7555] Building CXX object c10\test\CMakeFiles\c10_string_view_test.dir\util\string_view_test.cpp.obj 2025-08-26T19:55:13.2991360Z [7097/7555] Building CXX object c10\benchmark\CMakeFiles\c10_intrusive_ptr_benchmark.dir\intrusive_ptr_benchmark.cpp.obj 2025-08-26T19:55:13.3510717Z [7098/7555] Building CXX object c10\test\CMakeFiles\c10_typeid_test.dir\util\typeid_test.cpp.obj 2025-08-26T19:55:14.6031381Z [7099/7555] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_from_2_processes.dir\impl\CUDAAssertionsTest_from_2_processes.cu.obj 2025-08-26T19:55:14.6295052Z CUDAAssertionsTest_from_2_processes.cu 2025-08-26T19:55:14.6295553Z tmpxft_000001d0_00000000-7_CUDAAssertionsTest_from_2_processes.cudafe1.cpp 2025-08-26T19:55:14.6296551Z [7100/7555] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_catches_stream.dir\impl\CUDAAssertionsTest_catches_stream.cu.obj 2025-08-26T19:55:14.6481420Z CUDAAssertionsTest_catches_stream.cu 2025-08-26T19:55:14.6482140Z tmpxft_0000162c_00000000-7_CUDAAssertionsTest_catches_stream.cudafe1.cpp 2025-08-26T19:55:14.6483478Z [7101/7555] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_1_var_test.dir\impl\CUDAAssertionsTest_1_var_test.cu.obj 2025-08-26T19:55:14.6819799Z CUDAAssertionsTest_1_var_test.cu 2025-08-26T19:55:14.6820531Z tmpxft_000017c8_00000000-7_CUDAAssertionsTest_1_var_test.cudafe1.cpp 2025-08-26T19:55:14.6822302Z [7102/7555] 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-08-26T19:55:14.7169459Z CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu 2025-08-26T19:55:14.7170110Z tmpxft_00001208_00000000-7_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cudafe1.cpp 2025-08-26T19:55:14.7170870Z [7103/7555] Building C object caffe2\CMakeFiles\torch_global_deps.dir\__\torch\csrc\empty.c.obj 2025-08-26T19:55:14.7729882Z [7104/7555] 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-08-26T19:55:14.8482185Z CUDAAssertionsTest_catches_thread_and_block_and_device.cu 2025-08-26T19:55:14.8483011Z tmpxft_000015ac_00000000-7_CUDAAssertionsTest_catches_thread_and_block_and_device.cudafe1.cpp 2025-08-26T19:55:14.8484173Z [7105/7555] 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-08-26T19:55:14.8622246Z CUDAAssertionsTest_multiple_writes_from_same_block.cu 2025-08-26T19:55:14.8622939Z tmpxft_00001100_00000000-7_CUDAAssertionsTest_multiple_writes_from_same_block.cudafe1.cpp 2025-08-26T19:55:14.8624369Z [7106/7555] 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-08-26T19:55:14.9651762Z CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu 2025-08-26T19:55:14.9652444Z tmpxft_000015a4_00000000-7_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cudafe1.cpp 2025-08-26T19:55:14.9653167Z [7107/7555] Building CXX object c10\cuda\test\CMakeFiles\c10_cuda_CUDATest.dir\impl\CUDATest.cpp.obj 2025-08-26T19:55:14.9908631Z [7108/7555] Building CXX object caffe2\CMakeFiles\caffe2_nvrtc.dir\__\aten\src\ATen\cuda\nvrtc_stub\ATenNVRTC.cpp.obj 2025-08-26T19:55:15.2452237Z [7109/7555] Building CXX object caffe2\CMakeFiles\Dimname_test.dir\__\aten\src\ATen\test\Dimname_test.cpp.obj 2025-08-26T19:55:15.7508900Z [7110/7555] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX512.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-08-26T19:55:15.7696177Z [7111/7555] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX2.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-08-26T19:55:15.7698546Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-08-26T19:55:15.7701287Z 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-08-26T19:55:15.7717287Z 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-08-26T19:55:15.7718706Z 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-08-26T19:55:15.7720798Z [7112/7555] Building CXX object caffe2\CMakeFiles\vec_test_all_types_DEFAULT.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-08-26T19:55:17.8449969Z [7113/7555] Building CXX object caffe2\CMakeFiles\Dict_test.dir\__\aten\src\ATen\test\Dict_test.cpp.obj 2025-08-26T19:55:17.9495946Z [7114/7555] Building CXX object caffe2\CMakeFiles\MaybeOwned_test.dir\__\aten\src\ATen\test\MaybeOwned_test.cpp.obj 2025-08-26T19:55:18.0085341Z [7115/7555] Building CXX object caffe2\CMakeFiles\NamedTensor_test.dir\__\aten\src\ATen\test\NamedTensor_test.cpp.obj 2025-08-26T19:55:18.2673851Z [7116/7555] Building CXX object caffe2\CMakeFiles\apply_utils_test.dir\__\aten\src\ATen\test\apply_utils_test.cpp.obj 2025-08-26T19:55:18.6978175Z [7117/7555] Building CXX object caffe2\CMakeFiles\atest.dir\__\aten\src\ATen\test\atest.cpp.obj 2025-08-26T19:55:18.7338498Z [7118/7555] Building CXX object caffe2\CMakeFiles\broadcast_test.dir\__\aten\src\ATen\test\broadcast_test.cpp.obj 2025-08-26T19:55:18.8106863Z [7119/7555] Building CXX object caffe2\CMakeFiles\basic.dir\__\aten\src\ATen\test\basic.cpp.obj 2025-08-26T19:55:20.9099015Z [7120/7555] Building CXX object caffe2\CMakeFiles\cpu_allocator_test.dir\__\aten\src\ATen\test\cpu_allocator_test.cpp.obj 2025-08-26T19:55:21.0080003Z [7121/7555] Building CXX object caffe2\CMakeFiles\cpu_generator_test.dir\__\aten\src\ATen\test\cpu_generator_test.cpp.obj 2025-08-26T19:55:21.0507638Z [7122/7555] Building CXX object caffe2\CMakeFiles\cpu_profiling_allocator_test.dir\__\aten\src\ATen\test\cpu_profiling_allocator_test.cpp.obj 2025-08-26T19:55:21.7509598Z [7123/7555] Building CXX object caffe2\CMakeFiles\extension_backend_test.dir\__\aten\src\ATen\test\extension_backend_test.cpp.obj 2025-08-26T19:55:21.7713856Z [7124/7555] Building CXX object caffe2\CMakeFiles\dlconvertor_test.dir\__\aten\src\ATen\test\dlconvertor_test.cpp.obj 2025-08-26T19:55:21.8330832Z [7125/7555] Building CXX object caffe2\CMakeFiles\half_test.dir\__\aten\src\ATen\test\half_test.cpp.obj 2025-08-26T19:55:21.9141826Z [7126/7555] Building CXX object caffe2\CMakeFiles\cpu_rng_test.dir\__\aten\src\ATen\test\cpu_rng_test.cpp.obj 2025-08-26T19:55:24.0170800Z [7127/7555] Building CXX object caffe2\CMakeFiles\lazy_tensor_test.dir\__\aten\src\ATen\test\lazy_tensor_test.cpp.obj 2025-08-26T19:55:24.2382105Z [7128/7555] Building CXX object caffe2\CMakeFiles\ivalue_test.dir\__\aten\src\ATen\test\ivalue_test.cpp.obj 2025-08-26T19:55:24.3576055Z [7129/7555] Building CXX object caffe2\CMakeFiles\math_kernel_test.dir\__\aten\src\ATen\test\math_kernel_test.cpp.obj 2025-08-26T19:55:24.3748340Z [7130/7555] Building CXX object caffe2\CMakeFiles\operator_name_test.dir\__\aten\src\ATen\test\operator_name_test.cpp.obj 2025-08-26T19:55:24.7355464Z [7131/7555] Building CXX object caffe2\CMakeFiles\memory_format_test.dir\__\aten\src\ATen\test\memory_format_test.cpp.obj 2025-08-26T19:55:24.8076376Z [7132/7555] Building CXX object caffe2\CMakeFiles\memory_overlapping_test.dir\__\aten\src\ATen\test\memory_overlapping_test.cpp.obj 2025-08-26T19:55:24.9180453Z [7133/7555] Building CXX object caffe2\CMakeFiles\native_test.dir\__\aten\src\ATen\test\native_test.cpp.obj 2025-08-26T19:55:25.1457396Z [7134/7555] Building CXX object caffe2\CMakeFiles\mobile_memory_cleanup.dir\__\aten\src\ATen\test\mobile_memory_cleanup.cpp.obj 2025-08-26T19:55:27.2589976Z [7135/7555] Building CXX object caffe2\CMakeFiles\operators_test.dir\__\aten\src\ATen\test\operators_test.cpp.obj 2025-08-26T19:55:27.3991427Z [7136/7555] Building CXX object caffe2\CMakeFiles\pow_test.dir\__\aten\src\ATen\test\pow_test.cpp.obj 2025-08-26T19:55:27.4617711Z [7137/7555] Building CXX object caffe2\CMakeFiles\packedtensoraccessor_test.dir\__\aten\src\ATen\test\packedtensoraccessor_test.cpp.obj 2025-08-26T19:55:27.7608466Z [7138/7555] Building CXX object caffe2\CMakeFiles\quantized_test.dir\__\aten\src\ATen\test\quantized_test.cpp.obj 2025-08-26T19:55:27.9619189Z [7139/7555] Building CXX object caffe2\CMakeFiles\reduce_ops_test.dir\__\aten\src\ATen\test\reduce_ops_test.cpp.obj 2025-08-26T19:55:27.9897997Z [7140/7555] Building CXX object caffe2\CMakeFiles\reportMemoryUsage_test.dir\__\aten\src\ATen\test\reportMemoryUsage_test.cpp.obj 2025-08-26T19:55:28.1269046Z [7141/7555] Building CXX object caffe2\CMakeFiles\scalar_tensor_test.dir\__\aten\src\ATen\test\scalar_tensor_test.cpp.obj 2025-08-26T19:55:28.9483665Z [7142/7555] Building CXX object caffe2\CMakeFiles\type_ptr_test.dir\__\aten\src\ATen\test\type_ptr_test.cpp.obj 2025-08-26T19:55:29.4135779Z [7143/7555] Building CXX object caffe2\CMakeFiles\StorageUtils_test.dir\__\aten\src\ATen\test\StorageUtils_test.cpp.obj 2025-08-26T19:55:30.3211730Z [7144/7555] Building CXX object caffe2\CMakeFiles\scalar_test.dir\__\aten\src\ATen\test\scalar_test.cpp.obj 2025-08-26T19:55:30.5009304Z [7145/7555] Building CXX object caffe2\CMakeFiles\stride_properties_test.dir\__\aten\src\ATen\test\stride_properties_test.cpp.obj 2025-08-26T19:55:30.8955417Z [7146/7555] Building CXX object caffe2\CMakeFiles\tensor_iterator_test.dir\__\aten\src\ATen\test\tensor_iterator_test.cpp.obj 2025-08-26T19:55:30.9092799Z [7147/7555] Building CXX object caffe2\CMakeFiles\thread_init_test.dir\__\aten\src\ATen\test\thread_init_test.cpp.obj 2025-08-26T19:55:32.2486921Z [7148/7555] Building CXX object caffe2\CMakeFiles\type_test.dir\__\aten\src\ATen\test\type_test.cpp.obj 2025-08-26T19:55:32.4468022Z [7149/7555] Building CXX object caffe2\CMakeFiles\undefined_tensor_test.dir\__\aten\src\ATen\test\undefined_tensor_test.cpp.obj 2025-08-26T19:55:32.9056036Z [7150/7555] Building CXX object caffe2\CMakeFiles\test_parallel.dir\__\aten\src\ATen\test\test_parallel.cpp.obj 2025-08-26T19:55:33.2186048Z [7151/7555] Building CXX object caffe2\CMakeFiles\verify_api_visibility.dir\__\aten\src\ATen\test\verify_api_visibility.cpp.obj 2025-08-26T19:55:33.4687173Z [7152/7555] Building CXX object caffe2\CMakeFiles\legacy_vmap_test.dir\__\aten\src\ATen\test\legacy_vmap_test.cpp.obj 2025-08-26T19:55:33.9305280Z [7153/7555] Building CXX object caffe2\CMakeFiles\wrapdim_test.dir\__\aten\src\ATen\test\wrapdim_test.cpp.obj 2025-08-26T19:55:34.0094640Z [7154/7555] Building CXX object caffe2\CMakeFiles\List_test.dir\__\aten\src\ATen\core\List_test.cpp.obj 2025-08-26T19:55:34.0391968Z [7155/7555] Building CXX object caffe2\CMakeFiles\weakref_test.dir\__\aten\src\ATen\test\weakref_test.cpp.obj 2025-08-26T19:55:34.5396288Z [7156/7555] Building CXX object caffe2\CMakeFiles\IListRef_test.dir\__\aten\src\ATen\core\IListRef_test.cpp.obj 2025-08-26T19:55:34.5812093Z [7157/7555] Building CXX object caffe2\CMakeFiles\kernel_function_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_legacy_test.cpp.obj 2025-08-26T19:55:34.9783137Z [7158/7555] Building CXX object caffe2\CMakeFiles\kernel_function_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_test.cpp.obj 2025-08-26T19:55:34.9937443Z [7159/7555] Building CXX object caffe2\CMakeFiles\kernel_lambda_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_legacy_test.cpp.obj 2025-08-26T19:55:35.0329655Z [7160/7555] Building CXX object caffe2\CMakeFiles\kernel_lambda_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_test.cpp.obj 2025-08-26T19:55:35.2463482Z [7161/7555] Building CXX object caffe2\CMakeFiles\xla_tensor_test.dir\__\aten\src\ATen\test\xla_tensor_test.cpp.obj 2025-08-26T19:55:35.4174357Z [7162/7555] Building CXX object caffe2\CMakeFiles\op_allowlist_test.dir\__\aten\src\ATen\core\op_registration\op_allowlist_test.cpp.obj 2025-08-26T19:55:35.5103135Z [7163/7555] Building CXX object caffe2\CMakeFiles\kernel_stackbased_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_stackbased_test.cpp.obj 2025-08-26T19:55:35.6317217Z [7164/7555] Building CXX object caffe2\CMakeFiles\CppSignature_test.dir\__\aten\src\ATen\core\dispatch\CppSignature_test.cpp.obj 2025-08-26T19:55:35.6522879Z [7165/7555] 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-08-26T19:55:36.0815275Z [7166/7555] Building CXX object caffe2\CMakeFiles\inline_container_test.dir\serialize\inline_container_test.cc.obj 2025-08-26T19:55:36.2893760Z [7167/7555] Building CXX object caffe2\CMakeFiles\KernelFunction_test.dir\__\aten\src\ATen\core\boxing\KernelFunction_test.cpp.obj 2025-08-26T19:55:36.4436865Z [7168/7555] Building CXX object caffe2\CMakeFiles\op_registration_test.dir\__\aten\src\ATen\core\op_registration\op_registration_test.cpp.obj 2025-08-26T19:55:36.5741235Z [7169/7555] Building CXX object caffe2\CMakeFiles\cuda_apply_test.dir\__\aten\src\ATen\test\cuda_apply_test.cpp.obj 2025-08-26T19:55:38.1744527Z [7170/7555] Building CXX object caffe2\CMakeFiles\backend_fallback_test.dir\__\aten\src\ATen\core\dispatch\backend_fallback_test.cpp.obj 2025-08-26T19:55:38.2437295Z [7171/7555] Building CUDA object caffe2\CMakeFiles\cuda_atomic_ops_test.dir\__\aten\src\ATen\test\cuda_atomic_ops_test.cu.obj 2025-08-26T19:55:38.3435215Z cuda_atomic_ops_test.cu 2025-08-26T19:55:38.3435864Z tmpxft_000007b8_00000000-7_cuda_atomic_ops_test.cudafe1.cpp 2025-08-26T19:55:38.3437151Z [7172/7555] Building CUDA object caffe2\CMakeFiles\cuda_complex_math_test.dir\__\aten\src\ATen\test\cuda_complex_math_test.cu.obj 2025-08-26T19:55:38.8527349Z cuda_complex_math_test.cu 2025-08-26T19:55:38.8528053Z tmpxft_000008f4_00000000-7_cuda_complex_math_test.cudafe1.cpp 2025-08-26T19:55:38.8529325Z [7173/7555] Building CXX object caffe2\CMakeFiles\cuda_allocator_test.dir\__\aten\src\ATen\test\cuda_allocator_test.cpp.obj 2025-08-26T19:55:38.9044879Z [7174/7555] Building CUDA object caffe2\CMakeFiles\cuda_complex_test.dir\__\aten\src\ATen\test\cuda_complex_test.cu.obj 2025-08-26T19:55:38.9351776Z cuda_complex_test.cu 2025-08-26T19:55:38.9352352Z tmpxft_00001608_00000000-7_cuda_complex_test.cudafe1.cpp 2025-08-26T19:55:38.9353434Z [7175/7555] Building CXX object caffe2\CMakeFiles\cuda_device_test.dir\__\aten\src\ATen\test\cuda_device_test.cpp.obj 2025-08-26T19:55:39.4166071Z [7176/7555] Building CXX object caffe2\CMakeFiles\cuda_caching_host_allocator_test.dir\__\aten\src\ATen\test\cuda_caching_host_allocator_test.cpp.obj 2025-08-26T19:55:39.6825145Z [7177/7555] Building CXX object caffe2\CMakeFiles\cuda_exchange_device_test.dir\__\aten\src\ATen\test\cuda_exchange_device_test.cpp.obj 2025-08-26T19:55:39.7607843Z [7178/7555] Building CUDA object caffe2\CMakeFiles\cuda_cub_test.dir\__\aten\src\ATen\test\cuda_cub_test.cu.obj 2025-08-26T19:55:41.9678620Z cuda_cub_test.cu 2025-08-26T19:55:41.9680660Z tmpxft_0000048c_00000000-7_cuda_cub_test.cudafe1.cpp 2025-08-26T19:55:41.9682979Z [7179/7555] Building CXX object caffe2\CMakeFiles\cuda_dlconvertor_test.dir\__\aten\src\ATen\test\cuda_dlconvertor_test.cpp.obj 2025-08-26T19:55:42.2322528Z [7180/7555] Building CUDA object caffe2\CMakeFiles\cuda_integer_divider_test.dir\__\aten\src\ATen\test\cuda_integer_divider_test.cu.obj 2025-08-26T19:55:42.2323767Z cuda_integer_divider_test.cu 2025-08-26T19:55:42.2324417Z tmpxft_000012b8_00000000-7_cuda_integer_divider_test.cudafe1.cpp 2025-08-26T19:55:42.2326148Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T19:55:42.2328947Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): note: the template instantiation context (the oldest one first) is 2025-08-26T19:55:42.2332305Z 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-08-26T19:55:42.2335047Z 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-08-26T19:55:42.2336117Z with 2025-08-26T19:55:42.2336307Z [ 2025-08-26T19:55:42.2336590Z Value=unsigned __int64 2025-08-26T19:55:42.2336912Z ] 2025-08-26T19:55:42.2337707Z 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-08-26T19:55:42.2340237Z 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-08-26T19:55:42.2341790Z with 2025-08-26T19:55:42.2341964Z [ 2025-08-26T19:55:42.2342165Z _Ty=TestCase, 2025-08-26T19:55:42.2342441Z Value=unsigned __int64 2025-08-26T19:55:42.2342690Z ] 2025-08-26T19:55:42.2344565Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(Value &,unsigned __int64 &&,int &)' being compiled 2025-08-26T19:55:42.2346786Z with 2025-08-26T19:55:42.2347093Z [ 2025-08-26T19:55:42.2347426Z _Ty=TestCase, 2025-08-26T19:55:42.2347952Z Value=unsigned __int64 2025-08-26T19:55:42.2348374Z ] 2025-08-26T19:55:42.2350509Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(Value &,unsigned __int64 &&,int &)' being compiled 2025-08-26T19:55:42.2352836Z with 2025-08-26T19:55:42.2353131Z [ 2025-08-26T19:55:42.2353468Z _Ty=TestCase, 2025-08-26T19:55:42.2353973Z Value=unsigned __int64 2025-08-26T19:55:42.2354435Z ] 2025-08-26T19:55:42.7944517Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(794): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,Value&,unsigned __int64,int&>(_Alloc &,_Objty *const ,Value &,unsigned __int64 &&,int &)' being compiled 2025-08-26T19:55:42.7946965Z with 2025-08-26T19:55:42.7947269Z [ 2025-08-26T19:55:42.7947674Z _Alloc=std::allocator>, 2025-08-26T19:55:42.7948355Z _Ty=TestCase, 2025-08-26T19:55:42.7948802Z Value=unsigned __int64, 2025-08-26T19:55:42.7949238Z _Objty=TestCase 2025-08-26T19:55:42.7949705Z ] 2025-08-26T19:55:42.7950809Z [7181/7555] Building CXX object caffe2\CMakeFiles\cuda_allocatorTraceTracker_test.dir\__\aten\src\ATen\test\cuda_allocatorTraceTracker_test.cpp.obj 2025-08-26T19:55:43.6471476Z [7182/7555] Building CXX object caffe2\CMakeFiles\cuda_stream_test.dir\__\aten\src\ATen\test\cuda_stream_test.cpp.obj 2025-08-26T19:55:45.0909115Z [7183/7555] Building CXX object caffe2\CMakeFiles\cuda_reportMemoryUsage_test.dir\__\aten\src\ATen\test\cuda_reportMemoryUsage_test.cpp.obj 2025-08-26T19:55:46.3464420Z [7184/7555] Building CUDA object caffe2\CMakeFiles\cuda_distributions_test.dir\__\aten\src\ATen\test\cuda_distributions_test.cu.obj 2025-08-26T19:55:46.5460465Z cuda_distributions_test.cu 2025-08-26T19:55:46.5460939Z tmpxft_00000dd8_00000000-7_cuda_distributions_test.cudafe1.cpp 2025-08-26T19:55:46.5461536Z [7185/7555] Building C object sleef\src\libm\CMakeFiles\mkrename_gnuabi.dir\mkrename_gnuabi.c.obj 2025-08-26T19:55:46.6557632Z [7186/7555] Building C object sleef\src\libm\CMakeFiles\mkmasked_gnuabi.dir\mkmasked_gnuabi.c.obj 2025-08-26T19:55:46.7175126Z [7187/7555] Building CUDA object caffe2\CMakeFiles\cuda_generator_test.dir\__\aten\src\ATen\test\cuda_generator_test.cu.obj 2025-08-26T19:55:46.7960482Z cuda_generator_test.cu 2025-08-26T19:55:46.7961045Z tmpxft_0000153c_00000000-7_cuda_generator_test.cudafe1.cpp 2025-08-26T19:55:46.7962361Z [7188/7555] Building CUDA object caffe2\CMakeFiles\cuda_half_test.dir\__\aten\src\ATen\test\cuda_half_test.cu.obj 2025-08-26T19:55:46.8415092Z cuda_half_test.cu 2025-08-26T19:55:46.8415713Z tmpxft_000015a0_00000000-7_cuda_half_test.cudafe1.cpp 2025-08-26T19:55:46.8416861Z [7189/7555] Building C object sleef\src\common\CMakeFiles\addSuffix.dir\addSuffix.c.obj 2025-08-26T19:55:47.3635069Z [7190/7555] Building CUDA object caffe2\CMakeFiles\cuda_optional_test.dir\__\aten\src\ATen\test\cuda_optional_test.cu.obj 2025-08-26T19:55:47.3715137Z cuda_optional_test.cu 2025-08-26T19:55:47.3715530Z tmpxft_00000180_00000000-7_cuda_optional_test.cudafe1.cpp 2025-08-26T19:55:47.3716075Z [7191/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\__\common\main.cpp.obj 2025-08-26T19:55:47.4014211Z [7192/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\source_range_test.cpp.obj 2025-08-26T19:55:47.5805436Z [7193/7555] Building CUDA object caffe2\CMakeFiles\cuda_packedtensoraccessor_test.dir\__\aten\src\ATen\test\cuda_packedtensoraccessor_test.cu.obj 2025-08-26T19:55:48.2787310Z cuda_packedtensoraccessor_test.cu 2025-08-26T19:55:48.2788081Z tmpxft_0000172c_00000000-7_cuda_packedtensoraccessor_test.cudafe1.cpp 2025-08-26T19:55:48.2789354Z [7194/7555] Building CXX object caffe2\CMakeFiles\cuda_cudnn_test.dir\__\aten\src\ATen\test\cuda_cudnn_test.cpp.obj 2025-08-26T19:55:48.3316438Z [7195/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_add_if_then_else.cpp.obj 2025-08-26T19:55:49.3648619Z [7196/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_load_upgraders.cpp.obj 2025-08-26T19:55:49.4376535Z [7197/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_op_replacement.cpp.obj 2025-08-26T19:55:49.6361869Z [7198/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_alias_analysis.cpp.obj 2025-08-26T19:55:49.6630423Z [7199/7555] Building CXX object test_jit\CMakeFiles\torchbind_test.dir\test_custom_class_registrations.cpp.obj 2025-08-26T19:55:50.2850454Z [7200/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_upgrader_utils.cpp.obj 2025-08-26T19:55:50.5904718Z [7201/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_parser.cpp.obj 2025-08-26T19:55:50.6235476Z [7202/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_argument_spec.cpp.obj 2025-08-26T19:55:50.7629285Z [7203/7555] Building CUDA object caffe2\CMakeFiles\cuda_vectorized_test.dir\__\aten\src\ATen\test\cuda_vectorized_test.cu.obj 2025-08-26T19:55:50.9542982Z cuda_vectorized_test.cu 2025-08-26T19:55:50.9543445Z tmpxft_00000da4_00000000-7_cuda_vectorized_test.cudafe1.cpp 2025-08-26T19:55:50.9544110Z [7204/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_autodiff.cpp.obj 2025-08-26T19:55:51.5839686Z [7205/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_code_template.cpp.obj 2025-08-26T19:55:51.7180841Z [7206/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_constant_pooling.cpp.obj 2025-08-26T19:55:51.9774932Z [7207/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cleanup_passes.cpp.obj 2025-08-26T19:55:52.5675678Z [7208/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_create_autodiff_subgraphs.cpp.obj 2025-08-26T19:55:52.8041768Z [7209/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_concat_opt.cpp.obj 2025-08-26T19:55:52.8812208Z [7210/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_backend.cpp.obj 2025-08-26T19:55:53.0962951Z [7211/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_import.cpp.obj 2025-08-26T19:55:53.7543609Z [7212/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_type.cpp.obj 2025-08-26T19:55:53.7770613Z [7213/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_dce.cpp.obj 2025-08-26T19:55:54.9935870Z [7214/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class.cpp.obj 2025-08-26T19:55:55.1387590Z [7215/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class_registrations.cpp.obj 2025-08-26T19:55:55.9013223Z [7216/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_operators.cpp.obj 2025-08-26T19:55:55.9684870Z [7217/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_inliner.cpp.obj 2025-08-26T19:55:56.2542151Z [7218/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_fuser.cpp.obj 2025-08-26T19:55:56.5007472Z [7219/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_executor.cpp.obj 2025-08-26T19:55:57.0199921Z [7220/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_ir.cpp.obj 2025-08-26T19:55:57.2050376Z [7221/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_iterator.cpp.obj 2025-08-26T19:55:57.2354106Z [7222/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_irparser.cpp.obj 2025-08-26T19:55:57.2906860Z [7223/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cs_debug_info_serialization.cpp.obj 2025-08-26T19:55:57.4962013Z [7224/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_type.cpp.obj 2025-08-26T19:55:57.5097907Z [7225/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lexer.cpp.obj 2025-08-26T19:55:58.5058775Z [7226/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_memory_dag.cpp.obj 2025-08-26T19:55:58.6133707Z [7227/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interface.cpp.obj 2025-08-26T19:55:59.4423687Z [7228/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interpreter.cpp.obj 2025-08-26T19:55:59.4715180Z [7229/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_mobile_type_parser.cpp.obj 2025-08-26T19:55:59.9005642Z [7230/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_qualified_name.cpp.obj 2025-08-26T19:56:00.3875715Z [7231/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_peephole_optimize.cpp.obj 2025-08-26T19:56:00.6962514Z [7232/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter_direct.cpp.obj 2025-08-26T19:56:00.7710604Z [7233/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_trainer.cpp.obj 2025-08-26T19:56:00.8307419Z [7234/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter.cpp.obj 2025-08-26T19:56:01.0551484Z [7235/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_misc.cpp.obj 2025-08-26T19:56:01.7223088Z [7236/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_matching.cpp.obj 2025-08-26T19:56:01.8027345Z [7237/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_matcher.cpp.obj 2025-08-26T19:56:02.0473426Z [7238/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_rewriter.cpp.obj 2025-08-26T19:56:02.1521058Z [7239/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_module_api.cpp.obj 2025-08-26T19:56:02.5351123Z [7240/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_info.cpp.obj 2025-08-26T19:56:02.7148603Z [7241/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_utils.cpp.obj 2025-08-26T19:56:02.7765305Z [7242/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_union.cpp.obj 2025-08-26T19:56:03.0483145Z [7243/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_stack_opt.cpp.obj 2025-08-26T19:56:03.1622899Z [7244/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_script_profile.cpp.obj 2025-08-26T19:56:03.1810108Z [7245/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_file_format.cpp.obj 2025-08-26T19:56:03.3259092Z [7246/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_save_load.cpp.obj 2025-08-26T19:56:03.5430564Z [7247/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\common\main.cpp.obj 2025-08-26T19:56:03.7054760Z [7248/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_logging_levels.cpp.obj 2025-08-26T19:56:04.2794536Z [7249/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_alias_analyzer.cpp.obj 2025-08-26T19:56:04.5258769Z [7250/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_execution_frame.cpp.obj 2025-08-26T19:56:04.6689433Z [7251/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_file_util.cpp.obj 2025-08-26T19:56:04.7134981Z [7252/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_execution_planner.cpp.obj 2025-08-26T19:56:05.2560204Z [7253/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph_signature.cpp.obj 2025-08-26T19:56:05.3154798Z [7254/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_utils.cpp.obj 2025-08-26T19:56:05.3452263Z [7255/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_function_schema.cpp.obj 2025-08-26T19:56:05.6597195Z [7256/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph.cpp.obj 2025-08-26T19:56:05.6822377Z [7257/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_shape_analysis.cpp.obj 2025-08-26T19:56:05.6971105Z [7258/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_layout_planner_algorithm.cpp.obj 2025-08-26T19:56:06.0335015Z [7259/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_mpmc_queue.cpp.obj 2025-08-26T19:56:06.2789413Z [7260/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_itree.cpp.obj 2025-08-26T19:56:06.3956042Z [7261/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_placement.cpp.obj 2025-08-26T19:56:06.6741402Z [7262/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_op_kernel.cpp.obj 2025-08-26T19:56:06.7173106Z [7263/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_c10_kernel.cpp.obj 2025-08-26T19:56:06.7358296Z [7264/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_pass_manager.cpp.obj 2025-08-26T19:56:06.7790878Z [7265/7555] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_flatbuffer.cpp.obj 2025-08-26T19:56:07.2489682Z [7266/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_serialization.cpp.obj 2025-08-26T19:56:07.3077498Z [7267/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_tensor_meta.cpp.obj 2025-08-26T19:56:07.3707117Z [7268/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_static_dispatch_kernel_registration.cpp.obj 2025-08-26T19:56:07.8339171Z [7269/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-08-26T19:56:07.9046454Z [7270/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\ModelRunner.cpp.obj 2025-08-26T19:56:08.2717913Z [7271/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\Graph.cpp.obj 2025-08-26T19:56:08.3551260Z [7272/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\GraphPasses.cpp.obj 2025-08-26T19:56:08.3957887Z [7273/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-08-26T19:56:08.4442056Z [7274/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_layout_planner.cpp.obj 2025-08-26T19:56:08.8237243Z [7275/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-08-26T19:56:08.8402237Z [7276/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\GraphUtils.cpp.obj 2025-08-26T19:56:09.2482384Z [7277/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\common\FileUtil.cpp.obj 2025-08-26T19:56:09.2606670Z [7278/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\Serialization.cpp.obj 2025-08-26T19:56:09.3842172Z [7279/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\OpKernel.cpp.obj 2025-08-26T19:56:09.6323604Z [7280/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\FunctionSchema.cpp.obj 2025-08-26T19:56:10.1023998Z [7281/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_static_kernel_ops.cpp.obj 2025-08-26T19:56:10.1260450Z [7282/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_weights.cpp.obj 2025-08-26T19:56:10.1576116Z [7283/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ExecutionPlanner.cpp.obj 2025-08-26T19:56:10.2534780Z [7284/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\detail\ITree.cpp.obj 2025-08-26T19:56:10.3141571Z [7285/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\Bump.cpp.obj 2025-08-26T19:56:10.3669033Z [7286/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ExecutionFrame.cpp.obj 2025-08-26T19:56:10.4773310Z [7287/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\GreedyBySize.cpp.obj 2025-08-26T19:56:10.5075599Z [7288/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\DisjointStorageGroups.cpp.obj 2025-08-26T19:56:10.6606303Z [7289/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\Weights.cpp.obj 2025-08-26T19:56:10.7001071Z [7290/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\C10Kernel.cpp.obj 2025-08-26T19:56:11.1857005Z [7291/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\LayoutPlanner.cpp.obj 2025-08-26T19:56:11.2558850Z [7292/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\LayoutManager.cpp.obj 2025-08-26T19:56:11.2932174Z [7293/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\AliasAnalyzer.cpp.obj 2025-08-26T19:56:11.4405642Z [7294/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\Executor.cpp.obj 2025-08-26T19:56:11.6028822Z [7295/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ConstantFolder.cpp.obj 2025-08-26T19:56:11.7314603Z [7296/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\GraphExecutorBase.cpp.obj 2025-08-26T19:56:12.1308812Z [7297/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\SerialGraphExecutor.cpp.obj 2025-08-26T19:56:12.1938974Z [7298/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ParallelGraphExecutor.cpp.obj 2025-08-26T19:56:12.2578744Z [7299/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\AutoFunctionalizeKernel.cpp.obj 2025-08-26T19:56:12.3883327Z [7300/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\CallTorchBindKernel.cpp.obj 2025-08-26T19:56:12.6341240Z [7301/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\HigherOrderKernel.cpp.obj 2025-08-26T19:56:12.6895222Z [7302/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\passes\SubgraphRewriter.cpp.obj 2025-08-26T19:56:13.0767702Z [7303/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\passes\pass_manager\GraphPasses.cpp.obj 2025-08-26T19:56:13.0892893Z [7304/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\passes\pass_manager\PassManager.cpp.obj 2025-08-26T19:56:13.5128007Z [7305/7555] Building CXX object test_cpp_c10d\CMakeFiles\BackoffTest.dir\BackoffTest.cpp.obj 2025-08-26T19:56:13.5433135Z [7306/7555] Building CXX object test_cpp_c10d\CMakeFiles\FileStoreTest.dir\FileStoreTest.cpp.obj 2025-08-26T19:56:13.6181743Z [7307/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\KernelFactory.cpp.obj 2025-08-26T19:56:13.9518027Z [7308/7555] Building CXX object test_api\CMakeFiles\test_api.dir\__\common\main.cpp.obj 2025-08-26T19:56:13.9913103Z [7309/7555] Building CXX object test_cpp_c10d\CMakeFiles\TCPStoreTest.dir\TCPStoreTest.cpp.obj 2025-08-26T19:56:15.0646969Z [7310/7555] Building CXX object test_inductor\CMakeFiles\aoti_custom_ops.dir\custom_ops.cpp.obj 2025-08-26T19:56:15.2964455Z [7311/7555] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\KernelHandlerRegistry.cpp.obj 2025-08-26T19:56:16.3077733Z [7312/7555] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooTest.dir\ProcessGroupGlooTest.cpp.obj 2025-08-26T19:56:16.9902036Z [7313/7555] Building CXX object test_api\CMakeFiles\test_api.dir\autograd.cpp.obj 2025-08-26T19:56:17.0524709Z [7314/7555] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooAsyncTest.dir\ProcessGroupGlooAsyncTest.cpp.obj 2025-08-26T19:56:17.2143661Z [7315/7555] Building CXX object test_api\CMakeFiles\test_api.dir\any.cpp.obj 2025-08-26T19:56:17.3491746Z [7316/7555] Building CXX object test_api\CMakeFiles\test_api.dir\dataloader.cpp.obj 2025-08-26T19:56:18.2375833Z [7317/7555] Building CXX object test_api\CMakeFiles\test_api.dir\enum.cpp.obj 2025-08-26T19:56:18.5244602Z [7318/7555] Building CXX object test_api\CMakeFiles\test_api.dir\expanding-array.cpp.obj 2025-08-26T19:56:18.8869794Z [7319/7555] Building CXX object test_api\CMakeFiles\test_api.dir\memory.cpp.obj 2025-08-26T19:56:19.4767641Z [7320/7555] Building CXX object test_api\CMakeFiles\test_api.dir\fft.cpp.obj 2025-08-26T19:56:20.2774203Z [7321/7555] Building CXX object test_api\CMakeFiles\test_api.dir\init.cpp.obj 2025-08-26T19:56:20.3518303Z [7322/7555] Building CXX object test_api\CMakeFiles\test_api.dir\functional.cpp.obj 2025-08-26T19:56:20.4584086Z [7323/7555] Building CXX object test_api\CMakeFiles\test_api.dir\integration.cpp.obj 2025-08-26T19:56:20.5996970Z [7324/7555] Building CXX object test_api\CMakeFiles\test_api.dir\ivalue.cpp.obj 2025-08-26T19:56:21.3476653Z [7325/7555] Building CXX object test_api\CMakeFiles\test_api.dir\jit.cpp.obj 2025-08-26T19:56:22.4024929Z [7326/7555] Building CXX object test_api\CMakeFiles\test_api.dir\meta_tensor.cpp.obj 2025-08-26T19:56:22.7802863Z [7327/7555] Building CXX object test_api\CMakeFiles\test_api.dir\misc.cpp.obj 2025-08-26T19:56:23.5806802Z [7328/7555] Building CXX object test_api\CMakeFiles\test_api.dir\module.cpp.obj 2025-08-26T19:56:23.6147821Z [7329/7555] Building CXX object test_api\CMakeFiles\test_api.dir\moduledict.cpp.obj 2025-08-26T19:56:23.7123889Z [7330/7555] Building CXX object test_api\CMakeFiles\test_api.dir\modulelist.cpp.obj 2025-08-26T19:56:23.9788720Z [7331/7555] Building CXX object test_api\CMakeFiles\test_api.dir\modules.cpp.obj 2025-08-26T19:56:24.4959951Z [7332/7555] Building CXX object test_api\CMakeFiles\test_api.dir\nested.cpp.obj 2025-08-26T19:56:25.6305822Z [7333/7555] Building CXX object test_api\CMakeFiles\test_api.dir\parameterdict.cpp.obj 2025-08-26T19:56:25.9872760Z [7334/7555] Building CXX object test_api\CMakeFiles\test_api.dir\parameterlist.cpp.obj 2025-08-26T19:56:26.8071559Z [7335/7555] Building CXX object test_api\CMakeFiles\test_api.dir\namespace.cpp.obj 2025-08-26T19:56:26.8767167Z [7336/7555] Building CXX object test_api\CMakeFiles\test_api.dir\nn_utils.cpp.obj 2025-08-26T19:56:26.9515243Z [7337/7555] Building CXX object test_api\CMakeFiles\test_api.dir\optim.cpp.obj 2025-08-26T19:56:27.1714963Z [7338/7555] Building CXX object test_api\CMakeFiles\test_api.dir\ordered_dict.cpp.obj 2025-08-26T19:56:28.0120771Z [7339/7555] Building CXX object test_api\CMakeFiles\test_api.dir\rnn.cpp.obj 2025-08-26T19:56:28.8137726Z [7340/7555] Building CXX object test_api\CMakeFiles\test_api.dir\sequential.cpp.obj 2025-08-26T19:56:29.2215887Z [7341/7555] Building CXX object test_api\CMakeFiles\test_api.dir\transformer.cpp.obj 2025-08-26T19:56:30.0434220Z [7342/7555] Building CXX object test_api\CMakeFiles\test_api.dir\serialize.cpp.obj 2025-08-26T19:56:30.0717772Z [7343/7555] Building CXX object test_api\CMakeFiles\test_api.dir\special.cpp.obj 2025-08-26T19:56:30.1494397Z [7344/7555] Building CXX object test_api\CMakeFiles\test_api.dir\static.cpp.obj 2025-08-26T19:56:30.1813889Z [7345/7555] Building CXX object test_api\CMakeFiles\test_api.dir\support.cpp.obj 2025-08-26T19:56:31.1997485Z [7346/7555] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_cuda.cpp.obj 2025-08-26T19:56:32.1025668Z [7347/7555] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_indexing.cpp.obj 2025-08-26T19:56:32.3839753Z [7348/7555] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options_cuda.cpp.obj 2025-08-26T19:56:33.2626511Z [7349/7555] Building CXX object test_api\CMakeFiles\test_api.dir\tensor.cpp.obj 2025-08-26T19:56:33.2934144Z [7350/7555] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options.cpp.obj 2025-08-26T19:56:33.3320143Z [7351/7555] Building CXX object test_api\CMakeFiles\test_api.dir\torch_include.cpp.obj 2025-08-26T19:56:33.3765355Z [7352/7555] Building CXX object test_api\CMakeFiles\test_api.dir\inference_mode.cpp.obj 2025-08-26T19:56:33.7277231Z [7353/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\__\common\main.cpp.obj 2025-08-26T19:56:34.2646733Z [7354/7555] Building CXX object test_api\CMakeFiles\test_api.dir\grad_mode.cpp.obj 2025-08-26T19:56:34.6902790Z [7355/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_cache.cpp.obj 2025-08-26T19:56:35.3351998Z [7356/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir.cpp.obj 2025-08-26T19:56:35.3498155Z [7357/7555] Building CXX object test_api\CMakeFiles\test_api.dir\operations.cpp.obj 2025-08-26T19:56:35.6094037Z [7358/7555] Building CXX object test_api\CMakeFiles\test_api.dir\nested_int.cpp.obj 2025-08-26T19:56:35.7273690Z [7359/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir_util.cpp.obj 2025-08-26T19:56:35.7354826Z [7360/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_permutation_util.cpp.obj 2025-08-26T19:56:36.0792446Z [7361/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_misc.cpp.obj 2025-08-26T19:56:36.1292313Z [7362/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_util.cpp.obj 2025-08-26T19:56:36.2943802Z [7363/7555] Building CXX object test_api\CMakeFiles\parallel_benchmark.dir\parallel_benchmark.cpp.obj 2025-08-26T19:56:36.4269781Z [7364/7555] Building CXX object test_api\CMakeFiles\test_api.dir\parallel.cpp.obj 2025-08-26T19:56:36.5131979Z [7365/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_backend_device.cpp.obj 2025-08-26T19:56:36.5650682Z [7366/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_shape.cpp.obj 2025-08-26T19:56:36.6781409Z [7367/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_trie_cache.cpp.obj 2025-08-26T19:56:36.8742247Z [7368/7555] Building C object functorch\CMakeFiles\functorch.dir\csrc\dim\dim_opcode.c.obj 2025-08-26T19:56:39.2601588Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-08-26T19:56:39.2602646Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-08-26T19:56:39.2603427Z [7369/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_graph_executor.cpp.obj 2025-08-26T19:56:39.5290253Z [7370/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops_util.cpp.obj 2025-08-26T19:56:40.3747326Z [7371/7555] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_preprocess.cpp.obj 2025-08-26T19:56:41.7902083Z [7372/7555] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops.cpp.obj 2025-08-26T19:56:41.8725368Z [7373/7555] Linking C static library lib\cpuinfo_internals.lib 2025-08-26T19:56:41.8905178Z [7374/7555] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_lib.cpp.obj 2025-08-26T19:56:41.9126294Z [7375/7555] Linking CXX static library lib\benchmark_main.lib 2025-08-26T19:56:41.9593248Z [7376/7555] Linking C static library lib\libjitprofiling.lib 2025-08-26T19:56:41.9691225Z [7377/7555] Linking CXX static library lib\fmt.lib 2025-08-26T19:56:42.0321680Z [7378/7555] Linking CXX static library lib\gmock_main.lib 2025-08-26T19:56:42.0544085Z [7379/7555] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\dim\dim.cpp.obj 2025-08-26T19:56:42.1277637Z [7380/7555] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\init_dim_only.cpp.obj 2025-08-26T19:56:43.4119912Z [7381/7555] Linking CXX executable bin\c10_CompileTimeFunctionPointer_test.exe 2025-08-26T19:56:43.4840539Z [7382/7555] Linking CXX executable bin\c10_DispatchKeySet_test.exe 2025-08-26T19:56:43.4850511Z [7383/7555] Linking CXX executable bin\c10_Device_test.exe 2025-08-26T19:56:43.4859703Z [7384/7555] Linking CXX executable bin\c10_DeviceGuard_test.exe 2025-08-26T19:56:43.5374324Z [7385/7555] Linking CXX executable bin\c10_AllocatorConfig_test.exe 2025-08-26T19:56:43.7709532Z [7386/7555] Linking CXX executable bin\c10_SymInt_test.exe 2025-08-26T19:56:43.7720211Z [7387/7555] Linking CXX executable bin\c10_StreamGuard_test.exe 2025-08-26T19:56:43.7729502Z [7388/7555] Linking CXX executable bin\c10_Scalar_test.exe 2025-08-26T19:56:43.8593351Z [7389/7555] Linking CXX executable bin\c10_InlineDeviceGuard_test.exe 2025-08-26T19:56:43.8624498Z [7390/7555] Linking CXX executable bin\c10_InlineStreamGuard_test.exe 2025-08-26T19:56:43.9939112Z [7391/7555] Linking CXX executable bin\c10_SizesAndStrides_test.exe 2025-08-26T19:56:44.0700481Z [7392/7555] Linking CXX static library lib\libprotobuf-lite.lib 2025-08-26T19:56:44.1351391Z [7393/7555] Linking CXX executable bin\c10_ArrayRef_test.exe 2025-08-26T19:56:44.1361575Z [7394/7555] Linking CXX executable bin\c10_cow_test.exe 2025-08-26T19:56:44.1371559Z [7395/7555] Linking CXX executable bin\c10_Bitset_test.exe 2025-08-26T19:56:44.1496895Z [7396/7555] Linking CXX executable bin\c10_ConstexprCrc_test.exe 2025-08-26T19:56:44.3146003Z [7397/7555] Linking CXX executable bin\c10_DeadlockDetection_test.exe 2025-08-26T19:56:44.3418538Z [7398/7555] Linking CXX executable bin\c10_Enumerate_test.exe 2025-08-26T19:56:44.3437604Z [7399/7555] Linking CXX executable bin\c10_Half_test.exe 2025-08-26T19:56:44.3474439Z [7400/7555] Linking CXX executable bin\c10_Metaprogramming_test.exe 2025-08-26T19:56:44.3578929Z [7401/7555] Linking CXX executable bin\c10_LeftRight_test.exe 2025-08-26T19:56:44.3590907Z [7402/7555] Linking CXX executable bin\c10_IntrusiveList_test.exe 2025-08-26T19:56:44.5262404Z [7403/7555] Linking CXX executable bin\c10_Synchronized_test.exe 2025-08-26T19:56:44.5274020Z [7404/7555] Linking CXX executable bin\c10_Semaphore_test.exe 2025-08-26T19:56:44.5285757Z [7405/7555] Linking CXX executable bin\c10_NetworkFlow_test.exe 2025-08-26T19:56:44.6115306Z [7406/7555] Linking CXX executable bin\c10_TypeIndex_test.exe 2025-08-26T19:56:44.6243451Z [7407/7555] Linking CXX executable bin\c10_ThreadLocal_test.exe 2025-08-26T19:56:44.6759407Z [7408/7555] Linking CXX executable bin\c10_TypeList_test.exe 2025-08-26T19:56:44.7021134Z [7409/7555] Linking CXX executable bin\c10_TypeTraits_test.exe 2025-08-26T19:56:44.7182253Z [7410/7555] Linking CXX executable bin\c10_bfloat16_test.exe 2025-08-26T19:56:44.7211408Z [7411/7555] Linking CXX executable bin\c10_accumulate_test.exe 2025-08-26T19:56:44.7695980Z [7412/7555] Linking CXX executable bin\c10_bit_cast_test.exe 2025-08-26T19:56:44.7876126Z [7413/7555] Linking CXX executable bin\c10_complex_math_test.exe 2025-08-26T19:56:44.8411575Z [7414/7555] Linking CXX executable bin\c10_complex_test.exe 2025-08-26T19:56:44.8679444Z [7415/7555] Linking CXX executable bin\c10_exception_test.exe 2025-08-26T19:56:44.8838052Z [7416/7555] Linking CXX executable bin\c10_error_test.exe 2025-08-26T19:56:44.9728980Z [7417/7555] Linking CXX executable bin\c10_generic_math_test.exe 2025-08-26T19:56:45.0605536Z [7418/7555] Linking CXX executable bin\c10_flags_test.exe 2025-08-26T19:56:45.0798129Z [7419/7555] Linking CXX executable bin\c10_irange_test.exe 2025-08-26T19:56:45.0821293Z [7420/7555] Linking CXX executable bin\c10_lazy_test.exe 2025-08-26T19:56:45.1556794Z [7421/7555] Linking CXX executable bin\c10_logging_test.exe 2025-08-26T19:56:45.1570028Z [7422/7555] Linking CXX executable bin\c10_intrusive_ptr_test.exe 2025-08-26T19:56:45.2461840Z [7423/7555] Linking CXX executable bin\c10_ordered_preserving_dict_test.exe 2025-08-26T19:56:45.2561721Z [7424/7555] Linking CXX executable bin\c10_optional_test.exe 2025-08-26T19:56:45.3117201Z [7425/7555] Linking CXX executable bin\c10_registry_test.exe 2025-08-26T19:56:45.3194347Z [7426/7555] Linking CXX executable bin\c10_small_vector_test.exe 2025-08-26T19:56:45.3606967Z [7427/7555] Linking CXX executable bin\c10_ssize_test.exe 2025-08-26T19:56:45.3993666Z [7428/7555] Linking CXX executable bin\c10_string_util_test.exe 2025-08-26T19:56:45.4984432Z [7429/7555] Linking CXX executable bin\c10_string_view_test.exe 2025-08-26T19:56:45.5529674Z [7430/7555] Linking CXX executable bin\c10_tempfile_test.exe 2025-08-26T19:56:45.6685451Z [7431/7555] Linking CXX executable bin\c10_typeid_test.exe 2025-08-26T19:56:45.6930006Z [7432/7555] Linking CXX executable bin\c10_intrusive_ptr_benchmark.exe 2025-08-26T19:56:45.8409470Z [7433/7555] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe 2025-08-26T19:56:45.8425024Z [7434/7555] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_1_var_test.exe 2025-08-26T19:56:45.8439976Z [7435/7555] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_stream.exe 2025-08-26T19:56:45.8660788Z [7436/7555] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_from_2_processes.exe 2025-08-26T19:56:45.8786136Z [7437/7555] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe 2025-08-26T19:56:45.8999498Z [7438/7555] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe 2025-08-26T19:56:46.0788825Z [7439/7555] Linking C executable sleef\bin\mkrename_gnuabi.exe 2025-08-26T19:56:46.1508854Z [7440/7555] Linking CXX executable bin\c10_cuda_CUDATest.exe 2025-08-26T19:56:46.1518620Z [7441/7555] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe 2025-08-26T19:56:46.1610255Z [7442/7555] Linking C executable sleef\bin\mkmasked_gnuabi.exe 2025-08-26T19:56:46.1621052Z [7443/7555] Linking C shared library bin\torch_global_deps.dll 2025-08-26T19:56:46.2616712Z [7444/7555] Linking C executable sleef\bin\addSuffix.exe 2025-08-26T19:56:46.2992296Z [7445/7555] Linking CXX shared library bin\caffe2_nvrtc.dll 2025-08-26T19:56:46.3451229Z [7446/7555] Building C object sleef\src\common\CMakeFiles\arraymap.dir\arraymap.c.obj 2025-08-26T19:56:48.8800729Z [7447/7555] Linking C static library lib\microkernels-all.lib 2025-08-26T20:09:17.2438933Z [7448/7555] Linking CXX shared library bin\torch_cpu.dll 2025-08-26T20:09:18.5946510Z [7449/7555] Linking CXX executable bin\BackoffTest.exe 2025-08-26T20:09:18.5951387Z [7450/7555] Linking CXX executable bin\FileStoreTest.exe 2025-08-26T20:09:18.5959633Z [7451/7555] Linking CXX executable bin\TCPStoreTest.exe 2025-08-26T20:09:49.9623895Z [7452/7555] Linking CXX shared library bin\torch_cuda.dll 2025-08-26T20:09:50.1302941Z [7453/7555] Linking CXX shared library bin\torch.dll 2025-08-26T20:09:50.1397324Z [7454/7555] Linking CXX shared library bin\c10d_cuda_test.dll 2025-08-26T20:09:50.3615235Z [7455/7555] Linking CXX shared library bin\shm.dll 2025-08-26T20:09:50.5945308Z [7456/7555] Linking CXX executable bin\Dimname_test.exe 2025-08-26T20:09:50.7266823Z [7457/7555] Linking CXX shared library bin\jitbackend_test.dll 2025-08-26T20:09:50.8703831Z [7458/7555] Linking CXX executable bin\Dict_test.exe 2025-08-26T20:09:50.9682669Z [7459/7555] Linking CXX shared library bin\backend_with_compiler.dll 2025-08-26T20:09:51.1441918Z [7460/7555] Linking CXX executable bin\NamedTensor_test.exe 2025-08-26T20:09:51.1953013Z [7461/7555] Linking CXX executable bin\MaybeOwned_test.exe 2025-08-26T20:09:51.3135679Z [7462/7555] Linking CXX executable bin\apply_utils_test.exe 2025-08-26T20:09:51.3512803Z [7463/7555] Linking CXX executable bin\atest.exe 2025-08-26T20:09:51.6022449Z [7464/7555] Linking CXX executable bin\broadcast_test.exe 2025-08-26T20:09:51.6092895Z [7465/7555] Linking CXX executable bin\basic.exe 2025-08-26T20:09:51.6625125Z [7466/7555] Linking CXX executable bin\cpu_allocator_test.exe 2025-08-26T20:09:51.8067480Z [7467/7555] Linking CXX executable bin\cpu_generator_test.exe 2025-08-26T20:09:52.0011240Z [7468/7555] Linking CXX executable bin\cpu_profiling_allocator_test.exe 2025-08-26T20:09:52.0685321Z [7469/7555] Linking CXX executable bin\dlconvertor_test.exe 2025-08-26T20:09:52.2644962Z [7470/7555] Linking CXX executable bin\extension_backend_test.exe 2025-08-26T20:09:52.4556449Z [7471/7555] Linking CXX executable bin\half_test.exe 2025-08-26T20:09:52.7173790Z [7472/7555] Linking CXX executable bin\lazy_tensor_test.exe 2025-08-26T20:09:52.7348431Z [7473/7555] Linking CXX executable bin\ivalue_test.exe 2025-08-26T20:09:52.7975915Z [7474/7555] Linking CXX executable bin\math_kernel_test.exe 2025-08-26T20:09:53.0928984Z [7475/7555] Linking CXX executable bin\memory_format_test.exe 2025-08-26T20:09:53.1459922Z [7476/7555] Linking CXX executable bin\memory_overlapping_test.exe 2025-08-26T20:09:53.1705282Z [7477/7555] Linking CXX executable bin\cpu_rng_test.exe 2025-08-26T20:09:53.1939486Z [7478/7555] Linking CXX executable bin\mobile_memory_cleanup.exe 2025-08-26T20:09:53.4471126Z [7479/7555] Linking CXX executable bin\operator_name_test.exe 2025-08-26T20:09:53.5135377Z [7480/7555] Linking CXX executable bin\native_test.exe 2025-08-26T20:09:53.5311270Z [7481/7555] Linking CXX executable bin\operators_test.exe 2025-08-26T20:09:53.5322305Z [7482/7555] Linking CXX executable bin\packedtensoraccessor_test.exe 2025-08-26T20:09:53.7326342Z [7483/7555] Linking CXX executable bin\vec_test_all_types_DEFAULT.exe 2025-08-26T20:09:53.7338614Z [7484/7555] Linking CXX executable bin\vec_test_all_types_AVX2.exe 2025-08-26T20:09:53.8645815Z [7485/7555] Linking CXX executable bin\quantized_test.exe 2025-08-26T20:09:53.8830434Z [7486/7555] Linking CXX executable bin\reduce_ops_test.exe 2025-08-26T20:09:53.9361254Z [7487/7555] Linking CXX executable bin\pow_test.exe 2025-08-26T20:09:53.9372449Z [7488/7555] Linking CXX executable bin\reportMemoryUsage_test.exe 2025-08-26T20:09:53.9866599Z [7489/7555] Linking CXX executable bin\vec_test_all_types_AVX512.exe 2025-08-26T20:09:54.3101261Z [7490/7555] Linking CXX executable bin\scalar_tensor_test.exe 2025-08-26T20:09:54.3643233Z [7491/7555] Linking CXX executable bin\StorageUtils_test.exe 2025-08-26T20:09:54.4024241Z [7492/7555] Linking CXX executable bin\scalar_test.exe 2025-08-26T20:09:54.4039522Z [7493/7555] Linking CXX executable bin\stride_properties_test.exe 2025-08-26T20:09:54.4254793Z [7494/7555] Linking CXX executable bin\test_parallel.exe 2025-08-26T20:09:54.4408267Z [7495/7555] Linking CXX executable bin\thread_init_test.exe 2025-08-26T20:09:54.8058853Z [7496/7555] Linking CXX executable bin\type_ptr_test.exe 2025-08-26T20:09:54.8558687Z [7497/7555] Linking CXX executable bin\undefined_tensor_test.exe 2025-08-26T20:09:54.8635085Z [7498/7555] Linking CXX executable bin\verify_api_visibility.exe 2025-08-26T20:09:54.8712025Z [7499/7555] Linking CXX executable bin\weakref_test.exe 2025-08-26T20:09:54.9407001Z [7500/7555] Linking CXX executable bin\tensor_iterator_test.exe 2025-08-26T20:09:54.9447312Z [7501/7555] Linking CXX executable bin\type_test.exe 2025-08-26T20:09:55.1609443Z [7502/7555] Linking CXX executable bin\legacy_vmap_test.exe 2025-08-26T20:09:55.3466311Z [7503/7555] Linking CXX executable bin\wrapdim_test.exe 2025-08-26T20:09:55.3960222Z [7504/7555] Linking CXX executable bin\xla_tensor_test.exe 2025-08-26T20:09:55.6124391Z [7505/7555] Linking CXX executable bin\IListRef_test.exe 2025-08-26T20:09:55.7656107Z [7506/7555] Linking CXX executable bin\KernelFunction_test.exe 2025-08-26T20:09:55.9165218Z [7507/7555] Linking CXX executable bin\List_test.exe 2025-08-26T20:09:56.2169333Z [7508/7555] Linking CXX executable bin\kernel_stackbased_test.exe 2025-08-26T20:09:56.2193989Z [7509/7555] Linking CXX executable bin\CppSignature_test.exe 2025-08-26T20:09:56.4822554Z [7510/7555] Linking CXX executable bin\op_allowlist_test.exe 2025-08-26T20:09:56.5385212Z [7511/7555] Linking CXX executable bin\kernel_function_test.exe 2025-08-26T20:09:56.7047290Z [7512/7555] Linking CXX executable bin\backend_fallback_test.exe 2025-08-26T20:09:56.9429811Z [7513/7555] Linking CXX executable bin\make_boxed_from_unboxed_functor_test.exe 2025-08-26T20:09:57.0225977Z [7514/7555] Linking CXX executable bin\kernel_lambda_test.exe 2025-08-26T20:09:57.2485794Z [7515/7555] Linking CXX executable bin\cuda_apply_test.exe 2025-08-26T20:09:57.2551481Z [7516/7555] Linking CXX executable bin\cuda_allocator_test.exe 2025-08-26T20:09:57.2734026Z [7517/7555] Linking CXX executable bin\kernel_function_legacy_test.exe 2025-08-26T20:09:57.3562645Z [7518/7555] Linking CXX executable bin\inline_container_test.exe 2025-08-26T20:09:57.4199532Z [7519/7555] Linking CXX executable bin\cuda_atomic_ops_test.exe 2025-08-26T20:09:57.7266254Z [7520/7555] Linking CXX executable bin\cuda_complex_math_test.exe 2025-08-26T20:09:57.7569827Z [7521/7555] Linking CXX executable bin\cuda_complex_test.exe 2025-08-26T20:09:57.7728929Z [7522/7555] Linking CXX executable bin\cuda_device_test.exe 2025-08-26T20:09:57.8398966Z [7523/7555] Linking CXX executable bin\cuda_cub_test.exe 2025-08-26T20:09:57.8556437Z [7524/7555] Linking CXX executable bin\cuda_caching_host_allocator_test.exe 2025-08-26T20:09:57.8781852Z [7525/7555] Linking CXX executable bin\kernel_lambda_legacy_test.exe 2025-08-26T20:09:58.1500954Z [7526/7555] Linking CXX executable bin\cuda_exchange_device_test.exe 2025-08-26T20:09:58.3594893Z [7527/7555] Linking CXX executable bin\cuda_dlconvertor_test.exe 2025-08-26T20:09:58.3770734Z [7528/7555] Linking CXX executable bin\cuda_integer_divider_test.exe 2025-08-26T20:09:58.4130252Z [7529/7555] Linking CXX executable bin\cuda_distributions_test.exe 2025-08-26T20:09:58.4267581Z [7530/7555] Linking CXX executable bin\cuda_half_test.exe 2025-08-26T20:09:58.4278590Z [7531/7555] Linking CXX executable bin\cuda_generator_test.exe 2025-08-26T20:09:58.7962988Z [7532/7555] Linking CXX executable bin\cuda_allocatorTraceTracker_test.exe 2025-08-26T20:09:58.8135592Z [7533/7555] Linking CXX executable bin\cuda_optional_test.exe 2025-08-26T20:09:58.8492681Z [7534/7555] Linking CXX executable bin\cuda_packedtensoraccessor_test.exe 2025-08-26T20:09:58.8815323Z [7535/7555] Linking CXX executable bin\cuda_reportMemoryUsage_test.exe 2025-08-26T20:09:58.8825406Z [7536/7555] Linking CXX executable bin\cuda_stream_test.exe 2025-08-26T20:09:58.9184855Z [7537/7555] Linking CXX executable bin\cuda_vectorized_test.exe 2025-08-26T20:09:59.3043419Z [7538/7555] Linking CXX executable bin\cuda_cudnn_test.exe 2025-08-26T20:09:59.5951079Z [7539/7555] Linking CXX executable bin\ProcessGroupGlooTest.exe 2025-08-26T20:09:59.6596675Z [7540/7555] Linking CXX shared library bin\aoti_custom_ops.dll 2025-08-26T20:09:59.8755718Z [7541/7555] Linking CXX executable bin\ProcessGroupGlooAsyncTest.exe 2025-08-26T20:10:00.1079912Z [7542/7555] Linking CXX executable bin\parallel_benchmark.exe 2025-08-26T20:10:01.5343731Z [7543/7555] Linking CXX shared library bin\torchbind_test.dll 2025-08-26T20:10:03.8515928Z [7544/7555] Linking CXX executable bin\test_lazy.exe 2025-08-26T20:10:05.1416656Z [7545/7555] Linking CXX executable bin\op_registration_test.exe 2025-08-26T20:10:09.0632694Z [7546/7555] Linking CXX executable bin\test_nativert.exe 2025-08-26T20:10:10.5708937Z [7547/7555] Linking CXX executable bin\test_jit.exe 2025-08-26T20:10:11.3534431Z [7548/7555] Linking CXX executable bin\test_api.exe 2025-08-26T20:10:22.6304644Z [7549/7555] Linking CXX shared library bin\torch_python.dll 2025-08-26T20:10:22.9416151Z [7550/7555] Linking CXX shared module functorch\functorch.pyd 2025-08-26T20:10:22.9652457Z [7551/7555] Linking CXX shared library bin\nnapi_backend.dll 2025-08-26T20:10:22.9653448Z [7551/7555] Install the project... 2025-08-26T20:10:23.0843642Z -- Install configuration: "Release" 2025-08-26T20:11:17.2775822Z 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-08-26T20:11:17.5574690Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\config\_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-08-26T20:11:17.5575559Z !! 2025-08-26T20:11:17.5575693Z 2025-08-26T20:11:17.5575854Z ******************************************************************************** 2025-08-26T20:11:17.5576759Z 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-08-26T20:11:17.5577475Z 2025-08-26T20:11:17.5577699Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-08-26T20:11:17.5578213Z or your builds will no longer be supported. 2025-08-26T20:11:17.5578457Z 2025-08-26T20:11:17.5578851Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-08-26T20:11:17.5579460Z ******************************************************************************** 2025-08-26T20:11:17.5579694Z 2025-08-26T20:11:17.5579780Z !! 2025-08-26T20:11:17.5580015Z corresp(dist, value, root_dir) 2025-08-26T20:11:17.7217595Z -- Checkout nccl release tag: v2.27.5-1 2025-08-26T20:11:17.7245410Z running bdist_wheel 2025-08-26T20:11:25.8021546Z running build 2025-08-26T20:11:25.8021867Z running build_py 2025-08-26T20:11:25.8112424Z creating build\lib.win-amd64-cpython-39\functorch 2025-08-26T20:11:25.8117226Z copying functorch\__init__.py -> build\lib.win-amd64-cpython-39\functorch 2025-08-26T20:11:25.8136310Z creating build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:25.8139395Z copying torch\functional.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:25.8766160Z copying torch\hub.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:25.8785332Z copying torch\library.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:25.8819080Z copying torch\overrides.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.0030736Z copying torch\quasirandom.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.0872838Z copying torch\random.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.0882699Z copying torch\return_types.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.0898145Z copying torch\serialization.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.0928712Z copying torch\storage.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.1994933Z copying torch\torch_version.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.2501303Z copying torch\types.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.2509887Z copying torch\version.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.2515810Z copying torch\_appdirs.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.2963368Z copying torch\_classes.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.3406092Z copying torch\_compile.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.3415494Z copying torch\_custom_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.3726693Z copying torch\_environment.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.3732169Z copying torch\_guards.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.4183528Z copying torch\_jit_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.4207181Z copying torch\_linalg_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.4218198Z copying torch\_lobpcg.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.4236688Z copying torch\_lowrank.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.4251711Z copying torch\_meta_registrations.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.6101189Z copying torch\_namedtensor_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.6112835Z copying torch\_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.6146138Z copying torch\_python_dispatcher.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.6166670Z copying torch\_size_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.6575940Z copying torch\_sources.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.6590719Z copying torch\_storage_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.6599858Z copying torch\_streambase.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.6606015Z copying torch\_tensor.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.8073527Z copying torch\_tensor_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.8157906Z copying torch\_tensor_str.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.8172372Z copying torch\_thread_safe_fork.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.8177206Z copying torch\_torch_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.9252024Z copying torch\_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.9279619Z copying torch\_utils_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.9285852Z copying torch\_VF.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.9296238Z copying torch\_vmap_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.9307232Z copying torch\_weights_only_unpickler.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.9321758Z copying torch\__config__.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.9332509Z copying torch\__future__.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:26.9342379Z copying torch\__init__.py -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:27.0092439Z creating build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.0095915Z copying torchgen\code_template.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.0647599Z copying torchgen\context.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.1245433Z copying torchgen\gen.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.1283560Z copying torchgen\gen_aoti_c_shim.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.1298816Z copying torchgen\gen_backend_stubs.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.1326731Z copying torchgen\gen_functionalization_type.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.1343023Z copying torchgen\gen_lazy_tensor.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.1356552Z copying torchgen\gen_schema_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.1365432Z copying torchgen\gen_vmap_plumbing.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.1374869Z copying torchgen\local.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.1383427Z copying torchgen\model.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.1433347Z copying torchgen\native_function_generation.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.2042741Z copying torchgen\utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.2057309Z copying torchgen\yaml_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.2066392Z copying torchgen\__init__.py -> build\lib.win-amd64-cpython-39\torchgen 2025-08-26T20:11:27.2078032Z creating build\lib.win-amd64-cpython-39\functorch\compile 2025-08-26T20:11:27.2080893Z copying functorch\compile\__init__.py -> build\lib.win-amd64-cpython-39\functorch\compile 2025-08-26T20:11:27.2093235Z creating build\lib.win-amd64-cpython-39\functorch\dim 2025-08-26T20:11:27.2096155Z copying functorch\dim\magic_trace.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-08-26T20:11:27.2106669Z copying functorch\dim\op_properties.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-08-26T20:11:27.2475706Z copying functorch\dim\tree_map.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-08-26T20:11:27.2481329Z copying functorch\dim\wrap_type.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-08-26T20:11:27.2508207Z copying functorch\dim\__init__.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-08-26T20:11:27.2520570Z creating build\lib.win-amd64-cpython-39\functorch\einops 2025-08-26T20:11:27.2523573Z copying functorch\einops\rearrange.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-08-26T20:11:27.2534744Z copying functorch\einops\_parsing.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-08-26T20:11:27.2544809Z copying functorch\einops\__init__.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-08-26T20:11:27.2551641Z creating build\lib.win-amd64-cpython-39\functorch\experimental 2025-08-26T20:11:27.2567361Z copying functorch\experimental\control_flow.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-08-26T20:11:27.2572985Z copying functorch\experimental\ops.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-08-26T20:11:27.2578309Z copying functorch\experimental\__init__.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-08-26T20:11:27.2584723Z creating build\lib.win-amd64-cpython-39\functorch\_src 2025-08-26T20:11:27.2587515Z copying functorch\_src\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src 2025-08-26T20:11:27.2593123Z creating build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-08-26T20:11:27.2595979Z copying functorch\_src\aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-08-26T20:11:27.2602399Z creating build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-08-26T20:11:27.2605400Z copying functorch\_src\eager_transforms\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-08-26T20:11:27.2611956Z creating build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-08-26T20:11:27.2627344Z copying functorch\_src\make_functional\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-08-26T20:11:27.2633804Z creating build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-08-26T20:11:27.2636817Z copying functorch\_src\vmap\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-08-26T20:11:27.2643394Z creating build\lib.win-amd64-cpython-39\torch\accelerator 2025-08-26T20:11:27.2646505Z copying torch\accelerator\memory.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-08-26T20:11:27.2657838Z copying torch\accelerator\_utils.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-08-26T20:11:27.3295420Z copying torch\accelerator\__init__.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-08-26T20:11:27.3309688Z creating build\lib.win-amd64-cpython-39\torch\amp 2025-08-26T20:11:27.3312568Z copying torch\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-08-26T20:11:27.3326871Z copying torch\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-08-26T20:11:27.3346127Z copying torch\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-08-26T20:11:27.3351989Z creating build\lib.win-amd64-cpython-39\torch\ao 2025-08-26T20:11:27.3354793Z copying torch\ao\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao 2025-08-26T20:11:27.3363165Z creating build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.3366290Z copying torch\autograd\anomaly_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.4103770Z copying torch\autograd\forward_ad.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.4113302Z copying torch\autograd\function.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.4130059Z copying torch\autograd\functional.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.4169506Z copying torch\autograd\gradcheck.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.4199843Z copying torch\autograd\grad_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.4212508Z copying torch\autograd\graph.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.4227172Z copying torch\autograd\profiler.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.4247871Z copying torch\autograd\profiler_legacy.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.4257430Z copying torch\autograd\profiler_util.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.4276425Z copying torch\autograd\variable.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.4282250Z copying torch\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-08-26T20:11:27.5163540Z creating build\lib.win-amd64-cpython-39\torch\backends 2025-08-26T20:11:27.5166332Z copying torch\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends 2025-08-26T20:11:27.5177956Z creating build\lib.win-amd64-cpython-39\torch\compiler 2025-08-26T20:11:27.5180812Z copying torch\compiler\config.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-08-26T20:11:27.5191698Z copying torch\compiler\_cache.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-08-26T20:11:27.5203476Z copying torch\compiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-08-26T20:11:27.5218434Z creating build\lib.win-amd64-cpython-39\torch\contrib 2025-08-26T20:11:27.5222485Z copying torch\contrib\_tensorboard_vis.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-08-26T20:11:27.5230526Z copying torch\contrib\__init__.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-08-26T20:11:27.5236191Z creating build\lib.win-amd64-cpython-39\torch\cpu 2025-08-26T20:11:27.5239431Z copying torch\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu 2025-08-26T20:11:27.5251752Z creating build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5254740Z copying torch\cuda\comm.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5260344Z copying torch\cuda\gds.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5270938Z copying torch\cuda\graphs.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5284756Z copying torch\cuda\jiterator.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5293791Z copying torch\cuda\memory.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5311545Z copying torch\cuda\nccl.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5332420Z copying torch\cuda\nvtx.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5343029Z copying torch\cuda\profiler.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5351405Z copying torch\cuda\random.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5360509Z copying torch\cuda\sparse.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5366146Z copying torch\cuda\streams.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5376178Z copying torch\cuda\tunable.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5389550Z copying torch\cuda\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5399049Z copying torch\cuda\_memory_viz.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5418184Z copying torch\cuda\_pin_memory_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5427443Z copying torch\cuda\_sanitizer.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5441629Z copying torch\cuda\_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5450939Z copying torch\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-08-26T20:11:27.5483022Z creating build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:27.5486352Z copying torch\distributed\argparse_util.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:27.6203273Z copying torch\distributed\c10d_logger.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:27.6497181Z copying torch\distributed\collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:27.7679880Z copying torch\distributed\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:27.7709496Z copying torch\distributed\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:27.7736407Z copying torch\distributed\distributed_c10d.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:27.8567170Z copying torch\distributed\launch.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:27.9151226Z copying torch\distributed\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:27.9156831Z copying torch\distributed\remote_device.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:27.9886234Z copying torch\distributed\rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:27.9896885Z copying torch\distributed\run.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:28.0927688Z copying torch\distributed\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:28.1806128Z copying torch\distributed\_checkpointable.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:28.1821689Z copying torch\distributed\_composable_state.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:28.1868188Z copying torch\distributed\_dist2.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:28.1873979Z copying torch\distributed\_functional_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:28.1874853Z copying torch\distributed\_functional_collectives_impl.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:28.1875701Z copying torch\distributed\_serialization.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:28.1897126Z copying torch\distributed\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:28.2425222Z copying torch\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-08-26T20:11:28.2443361Z creating build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2446630Z copying torch\distributions\bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2456513Z copying torch\distributions\beta.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2465623Z copying torch\distributions\binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2474656Z copying torch\distributions\categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2497942Z copying torch\distributions\cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2507259Z copying torch\distributions\chi2.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2515692Z copying torch\distributions\constraints.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2530249Z copying torch\distributions\constraint_registry.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2539465Z copying torch\distributions\continuous_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2549447Z copying torch\distributions\dirichlet.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2562337Z copying torch\distributions\distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2572144Z copying torch\distributions\exponential.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2580946Z copying torch\distributions\exp_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2589952Z copying torch\distributions\fishersnedecor.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2599403Z copying torch\distributions\gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2619136Z copying torch\distributions\generalized_pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2628613Z copying torch\distributions\geometric.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2637734Z copying torch\distributions\gumbel.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2646804Z copying torch\distributions\half_cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2660269Z copying torch\distributions\half_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2669742Z copying torch\distributions\independent.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2678951Z copying torch\distributions\inverse_gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2704331Z copying torch\distributions\kl.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2718727Z copying torch\distributions\kumaraswamy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2728837Z copying torch\distributions\laplace.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2736459Z copying torch\distributions\lkj_cholesky.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2746650Z copying torch\distributions\logistic_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2755780Z copying torch\distributions\log_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2765047Z copying torch\distributions\lowrank_multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2775730Z copying torch\distributions\mixture_same_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2786604Z copying torch\distributions\multinomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2795055Z copying torch\distributions\multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2817828Z copying torch\distributions\negative_binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2827829Z copying torch\distributions\normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2842194Z copying torch\distributions\one_hot_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2851306Z copying torch\distributions\pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2860464Z copying torch\distributions\poisson.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2869522Z copying torch\distributions\relaxed_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2879281Z copying torch\distributions\relaxed_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2889310Z copying torch\distributions\studentT.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2900225Z copying torch\distributions\transformed_distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2909653Z copying torch\distributions\transforms.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2933246Z copying torch\distributions\uniform.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2945748Z copying torch\distributions\utils.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2957221Z copying torch\distributions\von_mises.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2979784Z copying torch\distributions\weibull.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.2990338Z copying torch\distributions\wishart.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.3001364Z copying torch\distributions\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-08-26T20:11:28.3016179Z creating build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3019556Z copying torch\export\custom_obj.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3025779Z copying torch\export\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3784862Z copying torch\export\decomp_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3794795Z copying torch\export\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3830212Z copying torch\export\exported_program.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3858031Z copying torch\export\graph_signature.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3909863Z copying torch\export\unflatten.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3937142Z copying torch\export\_draft_export.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3951166Z copying torch\export\_remove_auto_functionalized_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3960301Z copying torch\export\_remove_effect_tokens_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3969774Z copying torch\export\_safeguard.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3978816Z copying torch\export\_swap.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.3991617Z copying torch\export\_trace.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.4022342Z copying torch\export\_tree_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.4031600Z copying torch\export\_unlift.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.4044202Z copying torch\export\_wrapper_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.4050179Z copying torch\export\__init__.py -> build\lib.win-amd64-cpython-39\torch\export 2025-08-26T20:11:28.4066021Z creating build\lib.win-amd64-cpython-39\torch\fft 2025-08-26T20:11:28.4068908Z copying torch\fft\__init__.py -> build\lib.win-amd64-cpython-39\torch\fft 2025-08-26T20:11:28.4093030Z creating build\lib.win-amd64-cpython-39\torch\func 2025-08-26T20:11:28.4096009Z copying torch\func\__init__.py -> build\lib.win-amd64-cpython-39\torch\func 2025-08-26T20:11:28.4103178Z creating build\lib.win-amd64-cpython-39\torch\futures 2025-08-26T20:11:28.4106839Z copying torch\futures\__init__.py -> build\lib.win-amd64-cpython-39\torch\futures 2025-08-26T20:11:28.4121579Z creating build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.4125102Z copying torch\fx\annotate.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.4135292Z copying torch\fx\config.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.4140939Z copying torch\fx\graph.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5149987Z copying torch\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5175626Z copying torch\fx\immutable_collections.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5196535Z copying torch\fx\interpreter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5209479Z copying torch\fx\node.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5226899Z copying torch\fx\operator_schemas.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5240651Z copying torch\fx\proxy.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5255564Z copying torch\fx\subgraph_rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5269624Z copying torch\fx\tensor_type.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5278652Z copying torch\fx\traceback.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5292905Z copying torch\fx\_compatibility.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5305455Z copying torch\fx\_graph_pickler.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5320450Z copying torch\fx\_lazy_graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5331632Z copying torch\fx\_pytree.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5342215Z copying torch\fx\_symbolic_trace.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5362870Z copying torch\fx\_utils.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5371699Z copying torch\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-08-26T20:11:28.5386446Z creating build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5389607Z copying torch\jit\annotations.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5403817Z copying torch\jit\frontend.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5423350Z copying torch\jit\generate_bytecode.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5432402Z copying torch\jit\quantized.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5457011Z copying torch\jit\supported_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5466870Z copying torch\jit\unsupported_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5482595Z copying torch\jit\_async.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5493013Z copying torch\jit\_await.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5502742Z copying torch\jit\_builtins.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5513671Z copying torch\jit\_check.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5527834Z copying torch\jit\_dataclass_impls.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5538416Z copying torch\jit\_decompositions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5548148Z copying torch\jit\_decomposition_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5553708Z copying torch\jit\_freeze.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5563430Z copying torch\jit\_fuser.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5573348Z copying torch\jit\_ir_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5582482Z copying torch\jit\_logging.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5588112Z copying torch\jit\_monkeytype_config.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5598835Z copying torch\jit\_pickle.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5611884Z copying torch\jit\_recursive.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5630970Z copying torch\jit\_script.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5655649Z copying torch\jit\_serialization.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5667568Z copying torch\jit\_shape_functions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5699110Z copying torch\jit\_state.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5708594Z copying torch\jit\_trace.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5734704Z copying torch\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:28.5747296Z creating build\lib.win-amd64-cpython-39\torch\linalg 2025-08-26T20:11:28.5750347Z copying torch\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\linalg 2025-08-26T20:11:28.5793650Z creating build\lib.win-amd64-cpython-39\torch\masked 2025-08-26T20:11:28.5809689Z copying torch\masked\_docs.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-08-26T20:11:28.5832590Z copying torch\masked\_ops.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-08-26T20:11:28.5857086Z copying torch\masked\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-08-26T20:11:28.5869231Z creating build\lib.win-amd64-cpython-39\torch\monitor 2025-08-26T20:11:28.5873052Z copying torch\monitor\__init__.py -> build\lib.win-amd64-cpython-39\torch\monitor 2025-08-26T20:11:28.5884366Z creating build\lib.win-amd64-cpython-39\torch\mps 2025-08-26T20:11:28.5922680Z copying torch\mps\event.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-08-26T20:11:28.5932972Z copying torch\mps\profiler.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-08-26T20:11:28.5941941Z copying torch\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-08-26T20:11:28.5953323Z creating build\lib.win-amd64-cpython-39\torch\mtia 2025-08-26T20:11:28.5956216Z copying torch\mtia\memory.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-08-26T20:11:28.5966887Z copying torch\mtia\_utils.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-08-26T20:11:28.5976362Z copying torch\mtia\__init__.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-08-26T20:11:28.5992700Z creating build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-08-26T20:11:28.5995374Z copying torch\multiprocessing\pool.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-08-26T20:11:28.6006381Z copying torch\multiprocessing\queue.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-08-26T20:11:28.6016207Z copying torch\multiprocessing\reductions.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-08-26T20:11:28.6033216Z copying torch\multiprocessing\spawn.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-08-26T20:11:28.6043593Z copying torch\multiprocessing\_atfork.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-08-26T20:11:28.6057595Z copying torch\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-08-26T20:11:28.6067270Z creating build\lib.win-amd64-cpython-39\torch\nested 2025-08-26T20:11:28.6070204Z copying torch\nested\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested 2025-08-26T20:11:28.6086071Z creating build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:28.6088956Z copying torch\nn\common_types.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:28.6132759Z copying torch\nn\cpp.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:28.6143003Z copying torch\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:28.6936061Z copying torch\nn\grad.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:28.6944835Z copying torch\nn\init.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:28.6975979Z copying torch\nn\parameter.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:28.7770462Z copying torch\nn\_reduction.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:28.7780022Z copying torch\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:28.7790048Z creating build\lib.win-amd64-cpython-39\torch\numa 2025-08-26T20:11:28.7792971Z copying torch\numa\binding.py -> build\lib.win-amd64-cpython-39\torch\numa 2025-08-26T20:11:28.8435046Z copying torch\numa\__init__.py -> build\lib.win-amd64-cpython-39\torch\numa 2025-08-26T20:11:28.8445545Z creating build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.8448234Z copying torch\onnx\errors.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9035469Z copying torch\onnx\operators.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9044596Z copying torch\onnx\symbolic_helper.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9076456Z copying torch\onnx\symbolic_opset10.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9105236Z copying torch\onnx\symbolic_opset11.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9126806Z copying torch\onnx\symbolic_opset12.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9138685Z copying torch\onnx\symbolic_opset13.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9157857Z copying torch\onnx\symbolic_opset14.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9171460Z copying torch\onnx\symbolic_opset15.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9180611Z copying torch\onnx\symbolic_opset16.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9190609Z copying torch\onnx\symbolic_opset17.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9200452Z copying torch\onnx\symbolic_opset18.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9214149Z copying torch\onnx\symbolic_opset19.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9219993Z copying torch\onnx\symbolic_opset20.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9229560Z copying torch\onnx\symbolic_opset7.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9238448Z copying torch\onnx\symbolic_opset8.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9674230Z copying torch\onnx\symbolic_opset9.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9742722Z copying torch\onnx\utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9769453Z copying torch\onnx\verification.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9798765Z copying torch\onnx\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9822744Z copying torch\onnx\_experimental.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9832597Z copying torch\onnx\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9842002Z copying torch\onnx\_globals.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9851948Z copying torch\onnx\_type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9866123Z copying torch\onnx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-08-26T20:11:28.9885219Z creating build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:28.9906774Z copying torch\optim\adadelta.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0574944Z copying torch\optim\adagrad.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0592371Z copying torch\optim\adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0628491Z copying torch\optim\adamax.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0630990Z copying torch\optim\adamw.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0640350Z copying torch\optim\asgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0653916Z copying torch\optim\lbfgs.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0681071Z copying torch\optim\lr_scheduler.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0843051Z copying torch\optim\nadam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0856875Z copying torch\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0882350Z copying torch\optim\radam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0896493Z copying torch\optim\rmsprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0909778Z copying torch\optim\rprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0923102Z copying torch\optim\sgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0944118Z copying torch\optim\sparse_adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0953834Z copying torch\optim\swa_utils.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0967054Z copying torch\optim\_adafactor.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0980650Z copying torch\optim\_functional.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.0995921Z copying torch\optim\_muon.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.1005225Z copying torch\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-08-26T20:11:29.1017306Z creating build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1020540Z copying torch\package\file_structure_representation.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1031416Z copying torch\package\find_file_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1075140Z copying torch\package\glob_group.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1075773Z copying torch\package\importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1076412Z copying torch\package\package_exporter.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1101589Z copying torch\package\package_importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1116363Z copying torch\package\_digraph.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1127167Z copying torch\package\_directory_reader.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1138707Z copying torch\package\_importlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1147736Z copying torch\package\_mangling.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1158277Z copying torch\package\_mock.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1167068Z copying torch\package\_package_pickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1176490Z copying torch\package\_package_unpickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1189456Z copying torch\package\_stdlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1198318Z copying torch\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\package 2025-08-26T20:11:29.1206256Z creating build\lib.win-amd64-cpython-39\torch\profiler 2025-08-26T20:11:29.1208942Z copying torch\profiler\itt.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-08-26T20:11:29.1218834Z copying torch\profiler\profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-08-26T20:11:29.1246354Z copying torch\profiler\python_tracer.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-08-26T20:11:29.1251916Z copying torch\profiler\_memory_profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-08-26T20:11:29.1274074Z copying torch\profiler\_pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-08-26T20:11:29.1299381Z copying torch\profiler\_utils.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-08-26T20:11:29.1310582Z copying torch\profiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-08-26T20:11:29.1377493Z creating build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1380776Z copying torch\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1390555Z copying torch\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1400082Z copying torch\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1421151Z copying torch\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1429672Z copying torch\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1439496Z copying torch\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1449443Z copying torch\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1457532Z copying torch\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1466198Z copying torch\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1480718Z copying torch\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1486380Z copying torch\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1491955Z copying torch\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1502414Z copying torch\quantization\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1516782Z copying torch\quantization\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1525953Z copying torch\quantization\_quantized_conversions.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1544282Z copying torch\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-08-26T20:11:29.1546433Z creating build\lib.win-amd64-cpython-39\torch\signal 2025-08-26T20:11:29.1549116Z copying torch\signal\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal 2025-08-26T20:11:29.1563710Z creating build\lib.win-amd64-cpython-39\torch\sparse 2025-08-26T20:11:29.1568243Z copying torch\sparse\semi_structured.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-08-26T20:11:29.1583896Z copying torch\sparse\_semi_structured_conversions.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-08-26T20:11:29.2401900Z copying torch\sparse\_semi_structured_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-08-26T20:11:29.2427056Z copying torch\sparse\_triton_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-08-26T20:11:29.2458497Z copying torch\sparse\_triton_ops_meta.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-08-26T20:11:29.2639343Z copying torch\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-08-26T20:11:29.2654046Z creating build\lib.win-amd64-cpython-39\torch\special 2025-08-26T20:11:29.2657374Z copying torch\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\special 2025-08-26T20:11:29.2681768Z creating build\lib.win-amd64-cpython-39\torch\testing 2025-08-26T20:11:29.2684811Z copying torch\testing\_comparison.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-08-26T20:11:29.2712596Z copying torch\testing\_creation.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-08-26T20:11:29.2722132Z copying torch\testing\_utils.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-08-26T20:11:29.2731640Z copying torch\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-08-26T20:11:29.2748945Z creating build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.2752053Z copying torch\utils\backend_registration.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.4103546Z copying torch\utils\bundled_inputs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.4117609Z copying torch\utils\checkpoint.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.4143419Z copying torch\utils\collect_env.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.4172946Z copying torch\utils\cpp_backtrace.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.4178351Z copying torch\utils\cpp_extension.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.5366083Z copying torch\utils\deterministic.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.6612319Z copying torch\utils\dlpack.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.6622693Z copying torch\utils\file_baton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.6634260Z copying torch\utils\flop_counter.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.6654928Z copying torch\utils\hooks.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7319511Z copying torch\utils\mkldnn.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7329201Z copying torch\utils\mobile_optimizer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7337617Z copying torch\utils\model_zoo.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7343374Z copying torch\utils\module_tracker.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7357176Z copying torch\utils\show_pickle.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7367104Z copying torch\utils\throughput_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7377814Z copying torch\utils\weak.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7387980Z copying torch\utils\_appending_byte_serializer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7400365Z copying torch\utils\_backport_slots.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7409607Z copying torch\utils\_config_module.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7436140Z copying torch\utils\_content_store.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7445483Z copying torch\utils\_contextlib.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7458405Z copying torch\utils\_cpp_embed_headers.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7468890Z copying torch\utils\_cpp_extension_versioner.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7479966Z copying torch\utils\_cxx_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7499783Z copying torch\utils\_device.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7508771Z copying torch\utils\_dtype_abbrs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7518182Z copying torch\utils\_exposed_in.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7526560Z copying torch\utils\_filelock.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7536092Z copying torch\utils\_foreach_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7681691Z copying torch\utils\_functools.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7701707Z copying torch\utils\_get_clean_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7713797Z copying torch\utils\_helion.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7719315Z copying torch\utils\_import_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7729680Z copying torch\utils\_mode_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7735547Z copying torch\utils\_ordered_set.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7746571Z copying torch\utils\_python_dispatch.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7761404Z copying torch\utils\_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7790980Z copying torch\utils\_stats.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7799854Z copying torch\utils\_thunk.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7805719Z copying torch\utils\_traceback.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7826501Z copying torch\utils\_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7839865Z copying torch\utils\_typing_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7845743Z copying torch\utils\_zip.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7854944Z copying torch\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:29.7866712Z creating build\lib.win-amd64-cpython-39\torch\xpu 2025-08-26T20:11:29.7869744Z copying torch\xpu\memory.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-08-26T20:11:29.7880644Z copying torch\xpu\random.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-08-26T20:11:29.7890228Z copying torch\xpu\streams.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-08-26T20:11:29.7899249Z copying torch\xpu\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-08-26T20:11:29.7907981Z copying torch\xpu\_utils.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-08-26T20:11:29.7916674Z copying torch\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-08-26T20:11:29.7941882Z creating build\lib.win-amd64-cpython-39\torch\_awaits 2025-08-26T20:11:29.7944717Z copying torch\_awaits\__init__.py -> build\lib.win-amd64-cpython-39\torch\_awaits 2025-08-26T20:11:29.7955919Z creating build\lib.win-amd64-cpython-39\torch\_custom_op 2025-08-26T20:11:29.7959008Z copying torch\_custom_op\autograd.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-08-26T20:11:29.7969732Z copying torch\_custom_op\impl.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-08-26T20:11:29.7984712Z copying torch\_custom_op\__init__.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-08-26T20:11:29.7990890Z creating build\lib.win-amd64-cpython-39\torch\_decomp 2025-08-26T20:11:29.7993886Z copying torch\_decomp\decompositions.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-08-26T20:11:29.8058704Z copying torch\_decomp\decompositions_for_jvp.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-08-26T20:11:29.8069555Z copying torch\_decomp\decompositions_for_rng.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-08-26T20:11:29.8094008Z copying torch\_decomp\__init__.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-08-26T20:11:29.8499149Z creating build\lib.win-amd64-cpython-39\torch\_dispatch 2025-08-26T20:11:29.8502073Z copying torch\_dispatch\python.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-08-26T20:11:29.8511101Z copying torch\_dispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-08-26T20:11:29.8524313Z creating build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.8527404Z copying torch\_dynamo\bytecode_analysis.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.8984831Z copying torch\_dynamo\bytecode_transformation.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9764378Z copying torch\_dynamo\cache_size.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9785544Z copying torch\_dynamo\callback.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9798219Z copying torch\_dynamo\codegen.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9811949Z copying torch\_dynamo\code_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9822066Z copying torch\_dynamo\compiled_autograd.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9847126Z copying torch\_dynamo\comptime.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9860725Z copying torch\_dynamo\config.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9875473Z copying torch\_dynamo\convert_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9899556Z copying torch\_dynamo\create_parameter_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9909572Z copying torch\_dynamo\current_scope_id.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9922482Z copying torch\_dynamo\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9941041Z copying torch\_dynamo\decorators.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9959502Z copying torch\_dynamo\device_interface.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9973575Z copying torch\_dynamo\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:29.9982257Z copying torch\_dynamo\eval_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0016041Z copying torch\_dynamo\exc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0029452Z copying torch\_dynamo\external_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0039578Z copying torch\_dynamo\funcname_cache.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0053956Z copying torch\_dynamo\graph_break_hints.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0073111Z copying torch\_dynamo\graph_deduplication.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0087167Z copying torch\_dynamo\graph_region_tracker.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0100827Z copying torch\_dynamo\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0122236Z copying torch\_dynamo\guards.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0959331Z copying torch\_dynamo\hooks.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0969686Z copying torch\_dynamo\logging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0981498Z copying torch\_dynamo\metrics_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.0994751Z copying torch\_dynamo\mutation_guard.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.1004107Z copying torch\_dynamo\output_graph.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.1050908Z copying torch\_dynamo\package.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.1072700Z copying torch\_dynamo\pgo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.1625072Z copying torch\_dynamo\precompile_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.1645921Z copying torch\_dynamo\profiler.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.1654891Z copying torch\_dynamo\replay_record.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.1665244Z copying torch\_dynamo\resume_execution.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.1682843Z copying torch\_dynamo\side_effects.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.1704802Z copying torch\_dynamo\source.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2138684Z copying torch\_dynamo\symbolic_convert.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2211256Z copying torch\_dynamo\tensor_version_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2225325Z copying torch\_dynamo\testing.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2239422Z copying torch\_dynamo\test_case.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2249934Z copying torch\_dynamo\test_dont_skip_tracing_functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2259496Z copying torch\_dynamo\test_minifier_common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2280836Z copying torch\_dynamo\trace_rules.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2691545Z copying torch\_dynamo\types.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2701026Z copying torch\_dynamo\utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2753180Z copying torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2769950Z copying torch\_dynamo\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:30.2781553Z creating build\lib.win-amd64-cpython-39\torch\_export 2025-08-26T20:11:30.2784579Z copying torch\_export\converter.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-08-26T20:11:30.3734161Z copying torch\_export\error.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-08-26T20:11:30.4172607Z copying torch\_export\non_strict_utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-08-26T20:11:30.4197143Z copying torch\_export\pass_base.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-08-26T20:11:30.4221733Z copying torch\_export\tools.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-08-26T20:11:30.4268119Z copying torch\_export\utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-08-26T20:11:30.4296491Z copying torch\_export\verifier.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-08-26T20:11:30.4310617Z copying torch\_export\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-08-26T20:11:30.4320623Z copying torch\_export\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-08-26T20:11:30.4750707Z creating build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.4753490Z copying torch\_functorch\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.5742139Z copying torch\_functorch\apis.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6154319Z copying torch\_functorch\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6168403Z copying torch\_functorch\batch_norm_replacement.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6199611Z copying torch\_functorch\benchmark_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6200416Z copying torch\_functorch\compilers.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6588208Z copying torch\_functorch\compile_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6636744Z copying torch\_functorch\config.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6646854Z copying torch\_functorch\deprecated.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6658399Z copying torch\_functorch\eager_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6688282Z copying torch\_functorch\functional_call.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6700134Z copying torch\_functorch\fx_minifier.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6721241Z copying torch\_functorch\make_functional.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6734812Z copying torch\_functorch\partitioners.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6775478Z copying torch\_functorch\predispatch.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6786365Z copying torch\_functorch\pyfunctorch.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6800797Z copying torch\_functorch\python_key.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6806732Z copying torch\_functorch\pytree_hacks.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6817871Z copying torch\_functorch\top_operators_github_usage.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6833367Z copying torch\_functorch\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6856301Z copying torch\_functorch\vmap.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6869279Z copying torch\_functorch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-08-26T20:11:30.6880034Z creating build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.6883074Z copying torch\_higher_order_ops\aoti_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.6893252Z copying torch\_higher_order_ops\associative_scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.6912978Z copying torch\_higher_order_ops\auto_functionalize.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.6943100Z copying torch\_higher_order_ops\base_hop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.6952430Z copying torch\_higher_order_ops\cond.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.6966475Z copying torch\_higher_order_ops\effects.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.6978246Z copying torch\_higher_order_ops\executorch_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.6988566Z copying torch\_higher_order_ops\flat_apply.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.6998070Z copying torch\_higher_order_ops\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7020742Z copying torch\_higher_order_ops\foreach_map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7029870Z copying torch\_higher_order_ops\hints_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7039312Z copying torch\_higher_order_ops\invoke_subgraph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7053125Z copying torch\_higher_order_ops\map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7064150Z copying torch\_higher_order_ops\out_dtype.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7074646Z copying torch\_higher_order_ops\run_const_graph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7083256Z copying torch\_higher_order_ops\scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7101661Z copying torch\_higher_order_ops\schema.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7115751Z copying torch\_higher_order_ops\strict_mode.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7124863Z copying torch\_higher_order_ops\torchbind.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7134314Z copying torch\_higher_order_ops\triton_kernel_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7181486Z copying torch\_higher_order_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7203619Z copying torch\_higher_order_ops\while_loop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7228387Z copying torch\_higher_order_ops\wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7237846Z copying torch\_higher_order_ops\_invoke_quant.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7247178Z copying torch\_higher_order_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-08-26T20:11:30.7272366Z creating build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:30.7275598Z copying torch\_inductor\analyze_preserves_zero_mask.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:30.7286294Z copying torch\_inductor\aoti_eager.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:30.7296669Z copying torch\_inductor\async_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:30.7704129Z copying torch\_inductor\autotune_process.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:30.8330193Z copying torch\_inductor\await_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:30.8341842Z copying torch\_inductor\bounds.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:30.8351243Z copying torch\_inductor\choices.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:30.8367116Z copying torch\_inductor\codecache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:30.9257087Z copying torch\_inductor\comms.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.0300545Z copying torch\_inductor\comms_debug.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.0701081Z copying torch\_inductor\comm_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.0716182Z copying torch\_inductor\comm_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.0726244Z copying torch\_inductor\compiler_bisector.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.1055484Z copying torch\_inductor\compile_fx.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.1094262Z copying torch\_inductor\compile_fx_async.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.1109700Z copying torch\_inductor\compile_fx_ext.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.1124214Z copying torch\_inductor\compile_fx_subproc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.1135040Z copying torch\_inductor\config.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.1160465Z copying torch\_inductor\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.1171487Z copying torch\_inductor\cpp_builder.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.2096028Z copying torch\_inductor\cpu_vec_isa.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.2576130Z copying torch\_inductor\cudagraph_trees.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.2622438Z copying torch\_inductor\cudagraph_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.2638182Z copying torch\_inductor\custom_graph_pass.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.2649138Z copying torch\_inductor\debug.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.3082902Z copying torch\_inductor\decomposition.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.3645381Z copying torch\_inductor\dependencies.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.4015637Z copying torch\_inductor\dtype_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.4025819Z copying torch\_inductor\exc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.4036622Z copying torch\_inductor\extern_node_serializer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.4046531Z copying torch\_inductor\freezing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.4057771Z copying torch\_inductor\freezing_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.4077157Z copying torch\_inductor\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.4590987Z copying torch\_inductor\fx_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.4904162Z copying torch\_inductor\graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.5726847Z copying torch\_inductor\hooks.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.5735268Z copying torch\_inductor\index_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.5747156Z copying torch\_inductor\inductor_prims.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.5757945Z copying torch\_inductor\ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.6933845Z copying torch\_inductor\jagged_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.6964835Z copying torch\_inductor\kernel_inputs.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7302701Z copying torch\_inductor\loop_body.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7316646Z copying torch\_inductor\lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7386846Z copying torch\_inductor\memory.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7415401Z copying torch\_inductor\metrics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7425869Z copying torch\_inductor\mkldnn_ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7443786Z copying torch\_inductor\mkldnn_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7468889Z copying torch\_inductor\mock_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7480948Z copying torch\_inductor\ops_handler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7500541Z copying torch\_inductor\optimize_indexing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7511202Z copying torch\_inductor\output_code.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7534111Z copying torch\_inductor\pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7681782Z copying torch\_inductor\quantized_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7692740Z copying torch\_inductor\remote_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7725479Z copying torch\_inductor\remote_gemm_autotune_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7736027Z copying torch\_inductor\scheduler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7798756Z copying torch\_inductor\select_algorithm.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7838914Z copying torch\_inductor\shape_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7849802Z copying torch\_inductor\sizevars.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7870918Z copying torch\_inductor\standalone_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7879783Z copying torch\_inductor\subgraph_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7889332Z copying torch\_inductor\template_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7914789Z copying torch\_inductor\template_registry.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7937529Z copying torch\_inductor\test_case.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7946808Z copying torch\_inductor\test_operators.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7956480Z copying torch\_inductor\tiling_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7969957Z copying torch\_inductor\triton_bundler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.7989716Z copying torch\_inductor\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.8271734Z copying torch\_inductor\virtualized.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.8272557Z copying torch\_inductor\wrapper_benchmark.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.9563245Z copying torch\_inductor\__autotune_main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.9573751Z copying torch\_inductor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:31.9587861Z creating build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9591024Z copying torch\_lazy\closure.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9601327Z copying torch\_lazy\computation.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9611773Z copying torch\_lazy\config.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9622062Z copying torch\_lazy\debug.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9632065Z copying torch\_lazy\device_context.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9647757Z copying torch\_lazy\extract_compiled_graph.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9660303Z copying torch\_lazy\ir_cache.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9666047Z copying torch\_lazy\metrics.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9671760Z copying torch\_lazy\tensor_factory_functions.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9680903Z copying torch\_lazy\ts_backend.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9691005Z copying torch\_lazy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-08-26T20:11:31.9704817Z creating build\lib.win-amd64-cpython-39\torch\_library 2025-08-26T20:11:31.9707435Z copying torch\_library\autograd.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-08-26T20:11:31.9717042Z copying torch\_library\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-08-26T20:11:31.9891263Z copying torch\_library\fake_class_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-08-26T20:11:31.9906008Z copying torch\_library\fake_impl.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-08-26T20:11:31.9920842Z copying torch\_library\fake_profile.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-08-26T20:11:31.9931323Z copying torch\_library\infer_schema.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-08-26T20:11:31.9950071Z copying torch\_library\simple_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-08-26T20:11:31.9958969Z copying torch\_library\triton.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-08-26T20:11:31.9969489Z copying torch\_library\utils.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-08-26T20:11:31.9984257Z copying torch\_library\__init__.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-08-26T20:11:31.9996936Z creating build\lib.win-amd64-cpython-39\torch\_logging 2025-08-26T20:11:32.0000102Z copying torch\_logging\scribe.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-08-26T20:11:32.0013099Z copying torch\_logging\structured.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-08-26T20:11:32.0023197Z copying torch\_logging\_internal.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-08-26T20:11:32.0044265Z copying torch\_logging\_registrations.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-08-26T20:11:32.0068785Z copying torch\_logging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-08-26T20:11:32.0082159Z creating build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.0086710Z copying torch\_numpy\fft.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.0691796Z copying torch\_numpy\linalg.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.0706483Z copying torch\_numpy\random.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.0716988Z copying torch\_numpy\_binary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.0726776Z copying torch\_numpy\_casting_dicts.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.0763913Z copying torch\_numpy\_dtypes.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.0764518Z copying torch\_numpy\_dtypes_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.0772365Z copying torch\_numpy\_funcs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.0782021Z copying torch\_numpy\_funcs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.1626426Z copying torch\_numpy\_getlimits.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.1631966Z copying torch\_numpy\_ndarray.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.1647240Z copying torch\_numpy\_normalizations.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.1658540Z copying torch\_numpy\_reductions_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.1668833Z copying torch\_numpy\_ufuncs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.1680203Z copying torch\_numpy\_unary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.1691319Z copying torch\_numpy\_util.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.1700462Z copying torch\_numpy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-08-26T20:11:32.1708118Z creating build\lib.win-amd64-cpython-39\torch\_prims 2025-08-26T20:11:32.1711530Z copying torch\_prims\context.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-08-26T20:11:32.1720801Z copying torch\_prims\debug_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-08-26T20:11:32.1732054Z copying torch\_prims\executor.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-08-26T20:11:32.1743669Z copying torch\_prims\rng_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-08-26T20:11:32.1759402Z copying torch\_prims\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-08-26T20:11:32.1797246Z creating build\lib.win-amd64-cpython-39\torch\_prims_common 2025-08-26T20:11:32.1805109Z copying torch\_prims_common\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-08-26T20:11:32.1818468Z copying torch\_prims_common\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-08-26T20:11:32.1983630Z creating build\lib.win-amd64-cpython-39\torch\_refs 2025-08-26T20:11:32.1986465Z copying torch\_refs\fft.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-08-26T20:11:32.2000675Z copying torch\_refs\_conversions.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-08-26T20:11:32.2010681Z copying torch\_refs\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-08-26T20:11:32.2078138Z creating build\lib.win-amd64-cpython-39\torch\_strobelight 2025-08-26T20:11:32.2081212Z copying torch\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-08-26T20:11:32.2098708Z copying torch\_strobelight\compile_time_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-08-26T20:11:32.2109081Z copying torch\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-08-26T20:11:32.2119254Z creating build\lib.win-amd64-cpython-39\torch\_subclasses 2025-08-26T20:11:32.2122378Z copying torch\_subclasses\fake_impls.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-08-26T20:11:32.2143878Z copying torch\_subclasses\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-08-26T20:11:32.2189156Z copying torch\_subclasses\fake_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-08-26T20:11:32.2206198Z copying torch\_subclasses\functional_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-08-26T20:11:32.2223248Z copying torch\_subclasses\meta_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-08-26T20:11:32.2289426Z copying torch\_subclasses\schema_check_mode.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-08-26T20:11:32.2300218Z copying torch\_subclasses\_fake_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-08-26T20:11:32.2312292Z copying torch\_subclasses\__init__.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-08-26T20:11:32.2318558Z creating build\lib.win-amd64-cpython-39\torch\_vendor 2025-08-26T20:11:32.2321410Z copying torch\_vendor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor 2025-08-26T20:11:32.2327333Z creating build\lib.win-amd64-cpython-39\torch\ao\nn 2025-08-26T20:11:32.2330167Z copying torch\ao\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn 2025-08-26T20:11:32.2345246Z creating build\lib.win-amd64-cpython-39\torch\ao\ns 2025-08-26T20:11:32.2348205Z copying torch\ao\ns\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-08-26T20:11:32.3026877Z copying torch\ao\ns\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-08-26T20:11:32.3044561Z copying torch\ao\ns\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-08-26T20:11:32.3050457Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-08-26T20:11:32.3053499Z copying torch\ao\pruning\_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-08-26T20:11:32.4023635Z copying torch\ao\pruning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-08-26T20:11:32.4037626Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.4041048Z copying torch\ao\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5076424Z copying torch\ao\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5086906Z copying torch\ao\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5106500Z copying torch\ao\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5626614Z copying torch\ao\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5645275Z copying torch\ao\quantization\qconfig_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5656242Z copying torch\ao\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5670855Z copying torch\ao\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5686898Z copying torch\ao\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5705537Z copying torch\ao\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5716406Z copying torch\ao\quantization\quantize_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5726055Z copying torch\ao\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5736089Z copying torch\ao\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5746572Z copying torch\ao\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5765997Z copying torch\ao\quantization\_correct_bias.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5780126Z copying torch\ao\quantization\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5790708Z copying torch\ao\quantization\_learnable_fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5800511Z copying torch\ao\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-08-26T20:11:32.5812864Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-08-26T20:11:32.5816051Z copying torch\ao\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-08-26T20:11:32.5831666Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-08-26T20:11:32.5834766Z copying torch\ao\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-08-26T20:11:32.5842022Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-08-26T20:11:32.5845336Z copying torch\ao\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-08-26T20:11:32.5852692Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-08-26T20:11:32.5860675Z copying torch\ao\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-08-26T20:11:32.5877271Z copying torch\ao\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-08-26T20:11:32.5884595Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-08-26T20:11:32.5887583Z copying torch\ao\nn\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-08-26T20:11:32.5894912Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-08-26T20:11:32.5897898Z copying torch\ao\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-08-26T20:11:32.5909543Z copying torch\ao\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-08-26T20:11:32.5916403Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-08-26T20:11:32.5919268Z copying torch\ao\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-08-26T20:11:32.5925810Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-08-26T20:11:32.5928733Z copying torch\ao\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-08-26T20:11:32.5936233Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-08-26T20:11:32.5939262Z copying torch\ao\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-08-26T20:11:32.6107580Z copying torch\ao\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-08-26T20:11:32.6121300Z copying torch\ao\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-08-26T20:11:32.6130187Z copying torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-08-26T20:11:32.6141040Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-08-26T20:11:32.6144104Z copying torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-08-26T20:11:32.6156069Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-08-26T20:11:32.6159597Z copying torch\ao\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-08-26T20:11:32.6196211Z copying torch\ao\nn\intrinsic\quantized\modules\conv_add.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-08-26T20:11:32.6205900Z copying torch\ao\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-08-26T20:11:32.6215621Z copying torch\ao\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-08-26T20:11:32.6225668Z copying torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-08-26T20:11:32.6236302Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-08-26T20:11:32.6239733Z 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-08-26T20:11:32.6248810Z copying torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-08-26T20:11:32.6260939Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-08-26T20:11:32.6285940Z copying torch\ao\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-08-26T20:11:32.6286524Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-08-26T20:11:32.6287085Z copying torch\ao\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-08-26T20:11:32.6287785Z copying torch\ao\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-08-26T20:11:32.6296122Z copying torch\ao\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-08-26T20:11:32.6310139Z copying torch\ao\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-08-26T20:11:32.6316159Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-08-26T20:11:32.6319147Z copying torch\ao\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-08-26T20:11:32.6328672Z copying torch\ao\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-08-26T20:11:32.6335338Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-08-26T20:11:32.6338590Z copying torch\ao\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-08-26T20:11:32.6357690Z copying torch\ao\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-08-26T20:11:32.6372097Z copying torch\ao\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-08-26T20:11:32.6378608Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-08-26T20:11:32.6381488Z copying torch\ao\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-08-26T20:11:32.6389629Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6392701Z copying torch\ao\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6410733Z copying torch\ao\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6420027Z copying torch\ao\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6437684Z copying torch\ao\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6447809Z copying torch\ao\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6461291Z copying torch\ao\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6472323Z copying torch\ao\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6482615Z copying torch\ao\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6491913Z copying torch\ao\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6500690Z copying torch\ao\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6509756Z copying torch\ao\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-08-26T20:11:32.6520209Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-08-26T20:11:32.6527429Z copying torch\ao\nn\quantized\reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-08-26T20:11:32.6534557Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-08-26T20:11:32.6537586Z copying torch\ao\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-08-26T20:11:32.6551425Z copying torch\ao\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-08-26T20:11:32.6560150Z copying torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-08-26T20:11:32.6586290Z copying torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-08-26T20:11:32.6637803Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-08-26T20:11:32.6640672Z copying torch\ao\nn\quantized\reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-08-26T20:11:32.6652704Z copying torch\ao\nn\quantized\reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-08-26T20:11:32.6663932Z copying torch\ao\nn\quantized\reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-08-26T20:11:32.6685166Z copying torch\ao\nn\quantized\reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-08-26T20:11:32.6695389Z copying torch\ao\nn\quantized\reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-08-26T20:11:32.6705894Z copying torch\ao\nn\quantized\reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-08-26T20:11:32.6712623Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-08-26T20:11:32.6715665Z copying torch\ao\nn\sparse\quantized\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-08-26T20:11:32.6731068Z copying torch\ao\nn\sparse\quantized\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-08-26T20:11:32.6742412Z copying torch\ao\nn\sparse\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-08-26T20:11:32.6749338Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-08-26T20:11:32.6752345Z copying torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-08-26T20:11:32.6762334Z copying torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-08-26T20:11:32.6774643Z creating build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-08-26T20:11:32.6777609Z copying torch\ao\ns\fx\graph_matcher.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-08-26T20:11:32.6792907Z copying torch\ao\ns\fx\graph_passes.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-08-26T20:11:32.6815379Z copying torch\ao\ns\fx\mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-08-26T20:11:32.6829327Z copying torch\ao\ns\fx\ns_types.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-08-26T20:11:32.6838020Z copying torch\ao\ns\fx\n_shadows_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-08-26T20:11:32.6866237Z copying torch\ao\ns\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-08-26T20:11:32.6876096Z copying torch\ao\ns\fx\qconfig_multi_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-08-26T20:11:32.8299617Z copying torch\ao\ns\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-08-26T20:11:32.8313788Z copying torch\ao\ns\fx\weight_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-08-26T20:11:32.8324187Z copying torch\ao\ns\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-08-26T20:11:32.8331051Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-08-26T20:11:32.8334217Z copying torch\ao\pruning\scheduler\base_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-08-26T20:11:32.8345348Z copying torch\ao\pruning\scheduler\cubic_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-08-26T20:11:32.8361329Z copying torch\ao\pruning\scheduler\lambda_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-08-26T20:11:32.8382001Z copying torch\ao\pruning\scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-08-26T20:11:32.8388928Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-08-26T20:11:32.8403453Z copying torch\ao\pruning\sparsifier\base_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-08-26T20:11:32.8413757Z copying torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-08-26T20:11:32.8423008Z copying torch\ao\pruning\sparsifier\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-08-26T20:11:32.8445327Z copying torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-08-26T20:11:32.8454840Z copying torch\ao\pruning\sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-08-26T20:11:32.8460461Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-08-26T20:11:32.8463396Z copying torch\ao\pruning\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-08-26T20:11:32.8469646Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-08-26T20:11:32.8472916Z copying torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-08-26T20:11:32.8486937Z copying torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-08-26T20:11:32.8492816Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-08-26T20:11:32.8496023Z copying torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-08-26T20:11:32.8505785Z copying torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-08-26T20:11:32.8512635Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-08-26T20:11:32.8531215Z copying torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-08-26T20:11:32.8542346Z copying torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-08-26T20:11:32.8551582Z copying torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-08-26T20:11:32.9516979Z copying torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-08-26T20:11:32.9524583Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-08-26T20:11:32.9528310Z copying torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-08-26T20:11:32.9539284Z copying torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-08-26T20:11:32.9548249Z copying torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-08-26T20:11:32.9573713Z copying torch\ao\pruning\_experimental\pruner\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-08-26T20:11:32.9582782Z copying torch\ao\pruning\_experimental\pruner\parametrization.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-08-26T20:11:32.9591907Z copying torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-08-26T20:11:32.9606427Z copying torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-08-26T20:11:32.9615747Z copying torch\ao\pruning\_experimental\pruner\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-08-26T20:11:32.9622487Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-08-26T20:11:32.9625691Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-08-26T20:11:32.9632180Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-08-26T20:11:32.9635623Z 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-08-26T20:11:32.9647016Z 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-08-26T20:11:32.9662020Z 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-08-26T20:11:32.9680091Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9683272Z copying torch\ao\quantization\backend_config\backend_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9700498Z copying torch\ao\quantization\backend_config\executorch.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9713828Z copying torch\ao\quantization\backend_config\fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9727738Z copying torch\ao\quantization\backend_config\native.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9748667Z copying torch\ao\quantization\backend_config\onednn.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9763027Z copying torch\ao\quantization\backend_config\qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9777063Z copying torch\ao\quantization\backend_config\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9787091Z copying torch\ao\quantization\backend_config\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9819596Z copying torch\ao\quantization\backend_config\x86.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9820688Z copying torch\ao\quantization\backend_config\_common_operator_config_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9827190Z copying torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9837583Z copying torch\ao\quantization\backend_config\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-08-26T20:11:32.9849403Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:32.9852726Z copying torch\ao\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:32.9877546Z copying torch\ao\quantization\fx\custom_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:32.9892732Z copying torch\ao\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:32.9902215Z copying torch\ao\quantization\fx\fuse_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:32.9911592Z copying torch\ao\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:32.9935107Z copying torch\ao\quantization\fx\lower_to_fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:32.9944071Z copying torch\ao\quantization\fx\lower_to_qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:32.9949825Z copying torch\ao\quantization\fx\lstm_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:32.9961225Z copying torch\ao\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:32.9974792Z copying torch\ao\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:32.9983690Z copying torch\ao\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:33.0018885Z copying torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:33.0030419Z copying torch\ao\quantization\fx\quantize_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:33.0048724Z copying torch\ao\quantization\fx\tracer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:33.0057738Z copying torch\ao\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:33.0075827Z copying torch\ao\quantization\fx\_decomposed.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:33.0095190Z copying torch\ao\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:33.0156771Z copying torch\ao\quantization\fx\_lower_to_native_backend.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:33.0157636Z copying torch\ao\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-08-26T20:11:33.0158273Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0159721Z copying torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0170812Z copying torch\ao\quantization\pt2e\export_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0180868Z copying torch\ao\quantization\pt2e\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0192106Z copying torch\ao\quantization\pt2e\lowering.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0211201Z copying torch\ao\quantization\pt2e\port_metadata_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0221147Z copying torch\ao\quantization\pt2e\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0235339Z copying torch\ao\quantization\pt2e\qat_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0252577Z copying torch\ao\quantization\pt2e\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0267372Z copying torch\ao\quantization\pt2e\_affine_quantization.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0285959Z copying torch\ao\quantization\pt2e\_numeric_debugger.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0297242Z copying torch\ao\quantization\pt2e\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-08-26T20:11:33.0340896Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-08-26T20:11:33.0341726Z copying torch\ao\quantization\quantizer\composable_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-08-26T20:11:33.0342718Z copying torch\ao\quantization\quantizer\embedding_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-08-26T20:11:33.0343688Z copying torch\ao\quantization\quantizer\quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-08-26T20:11:33.0349824Z copying torch\ao\quantization\quantizer\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-08-26T20:11:33.0359395Z copying torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-08-26T20:11:33.0387529Z copying torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-08-26T20:11:33.0404630Z copying torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-08-26T20:11:33.0423097Z copying torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-08-26T20:11:33.0432247Z copying torch\ao\quantization\quantizer\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-08-26T20:11:33.0439402Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-08-26T20:11:33.0444282Z copying torch\ao\quantization\fx\_model_report\detector.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-08-26T20:11:33.0476544Z copying torch\ao\quantization\fx\_model_report\model_report.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-08-26T20:11:33.0491672Z copying torch\ao\quantization\fx\_model_report\model_report_observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-08-26T20:11:33.0514918Z copying torch\ao\quantization\fx\_model_report\model_report_visualizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-08-26T20:11:33.0537610Z copying torch\ao\quantization\fx\_model_report\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-08-26T20:11:33.0543618Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-08-26T20:11:33.0546816Z copying torch\ao\quantization\pt2e\representation\rewrite.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-08-26T20:11:33.0562424Z copying torch\ao\quantization\pt2e\representation\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-08-26T20:11:33.0569456Z creating build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-08-26T20:11:33.0572392Z copying torch\autograd\_functions\tensor.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-08-26T20:11:33.0582161Z copying torch\autograd\_functions\utils.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-08-26T20:11:33.0595063Z copying torch\autograd\_functions\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-08-26T20:11:33.1519852Z creating build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-08-26T20:11:33.1520422Z copying torch\backends\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-08-26T20:11:33.1521094Z creating build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-08-26T20:11:33.1521713Z copying torch\backends\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-08-26T20:11:33.1522276Z creating build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-08-26T20:11:33.1524536Z copying torch\backends\cudnn\rnn.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-08-26T20:11:33.1535657Z copying torch\backends\cudnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-08-26T20:11:33.1547244Z creating build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-08-26T20:11:33.1550116Z copying torch\backends\cusparselt\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-08-26T20:11:33.1560267Z creating build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-08-26T20:11:33.1574698Z copying torch\backends\kleidiai\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-08-26T20:11:33.1585906Z creating build\lib.win-amd64-cpython-39\torch\backends\mha 2025-08-26T20:11:33.1588938Z copying torch\backends\mha\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mha 2025-08-26T20:11:33.1599193Z creating build\lib.win-amd64-cpython-39\torch\backends\miopen 2025-08-26T20:11:33.1602036Z copying torch\backends\miopen\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\miopen 2025-08-26T20:11:33.1611916Z creating build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-08-26T20:11:33.1614673Z copying torch\backends\mkl\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-08-26T20:11:33.1624225Z creating build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-08-26T20:11:33.1627023Z copying torch\backends\mkldnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-08-26T20:11:33.1641591Z creating build\lib.win-amd64-cpython-39\torch\backends\mps 2025-08-26T20:11:33.1644376Z copying torch\backends\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mps 2025-08-26T20:11:33.1654445Z creating build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-08-26T20:11:33.1658069Z copying torch\backends\nnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-08-26T20:11:33.1668471Z creating build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-08-26T20:11:33.1671270Z copying torch\backends\openmp\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-08-26T20:11:33.1677637Z creating build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-08-26T20:11:33.1680550Z copying torch\backends\opt_einsum\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-08-26T20:11:33.1694308Z creating build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-08-26T20:11:33.1697180Z copying torch\backends\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-08-26T20:11:33.1708068Z creating build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-08-26T20:11:33.1710923Z copying torch\backends\xeon\run_cpu.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-08-26T20:11:33.1729097Z copying torch\backends\xeon\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-08-26T20:11:33.1734931Z creating build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-08-26T20:11:33.1737892Z copying torch\backends\xnnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-08-26T20:11:33.1748580Z creating build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-08-26T20:11:33.1751491Z copying torch\backends\_coreml\preprocess.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-08-26T20:11:33.1761667Z copying torch\backends\_coreml\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-08-26T20:11:33.1767903Z creating build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-08-26T20:11:33.1770882Z copying torch\backends\_nnapi\prepare.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-08-26T20:11:33.1780165Z copying torch\backends\_nnapi\serializer.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-08-26T20:11:33.1810990Z copying torch\backends\_nnapi\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-08-26T20:11:33.1851939Z creating build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-08-26T20:11:33.1852506Z copying torch\cpu\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-08-26T20:11:33.1853103Z copying torch\cpu\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-08-26T20:11:33.1853687Z copying torch\cpu\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-08-26T20:11:33.1854162Z creating build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-08-26T20:11:33.1858115Z copying torch\cuda\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-08-26T20:11:33.1867984Z copying torch\cuda\amp\common.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-08-26T20:11:33.1873592Z copying torch\cuda\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-08-26T20:11:33.1884040Z copying torch\cuda\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-08-26T20:11:33.1891124Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-08-26T20:11:33.1905198Z copying torch\distributed\algorithms\join.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-08-26T20:11:33.1915906Z copying torch\distributed\algorithms\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-08-26T20:11:33.1922247Z creating build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-08-26T20:11:33.1925247Z copying torch\distributed\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-08-26T20:11:33.1946337Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.1950178Z copying torch\distributed\checkpoint\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.1963511Z copying torch\distributed\checkpoint\default_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.1978721Z copying torch\distributed\checkpoint\filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.1997274Z copying torch\distributed\checkpoint\format_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2021276Z copying torch\distributed\checkpoint\hf_storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2032594Z copying torch\distributed\checkpoint\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2041798Z copying torch\distributed\checkpoint\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2047481Z copying torch\distributed\checkpoint\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2056980Z copying torch\distributed\checkpoint\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2066592Z copying torch\distributed\checkpoint\planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2080028Z copying torch\distributed\checkpoint\planner_helpers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2099215Z copying torch\distributed\checkpoint\resharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2109711Z copying torch\distributed\checkpoint\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2123866Z copying torch\distributed\checkpoint\stateful.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2134006Z copying torch\distributed\checkpoint\state_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2164758Z copying torch\distributed\checkpoint\state_dict_loader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2176815Z copying torch\distributed\checkpoint\state_dict_saver.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2191571Z copying torch\distributed\checkpoint\storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2202291Z copying torch\distributed\checkpoint\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2218532Z copying torch\distributed\checkpoint\_async_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2228054Z copying torch\distributed\checkpoint\_async_process_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2239476Z copying torch\distributed\checkpoint\_async_thread_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2248646Z copying torch\distributed\checkpoint\_checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2267829Z copying torch\distributed\checkpoint\_consolidate_hf_safetensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2282408Z copying torch\distributed\checkpoint\_dedup_save_plans.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2290696Z copying torch\distributed\checkpoint\_dedup_tensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2336283Z copying torch\distributed\checkpoint\_extension.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2352892Z copying torch\distributed\checkpoint\_fsspec_filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2363018Z copying torch\distributed\checkpoint\_hf_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2372115Z copying torch\distributed\checkpoint\_nested_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2381667Z copying torch\distributed\checkpoint\_pg_transport.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2392527Z copying torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2405485Z copying torch\distributed\checkpoint\_state_dict_stager.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2415403Z copying torch\distributed\checkpoint\_storage_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2425017Z copying torch\distributed\checkpoint\_traverse.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2439332Z copying torch\distributed\checkpoint\_version.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2445000Z copying torch\distributed\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-08-26T20:11:33.2453646Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-08-26T20:11:33.2458205Z copying torch\distributed\elastic\control_plane.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-08-26T20:11:33.2468816Z copying torch\distributed\elastic\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-08-26T20:11:33.2486791Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.2489777Z copying torch\distributed\fsdp\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.2503845Z copying torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.2537837Z copying torch\distributed\fsdp\sharded_grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.2550885Z copying torch\distributed\fsdp\wrap.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.2567619Z copying torch\distributed\fsdp\_common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3059369Z copying torch\distributed\fsdp\_debug_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3068201Z copying torch\distributed\fsdp\_dynamo_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3082300Z copying torch\distributed\fsdp\_exec_order_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3095948Z copying torch\distributed\fsdp\_flat_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3138224Z copying torch\distributed\fsdp\_fsdp_extensions.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3148599Z copying torch\distributed\fsdp\_init_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3169473Z copying torch\distributed\fsdp\_limiter_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3180698Z copying torch\distributed\fsdp\_optim_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3210347Z copying torch\distributed\fsdp\_runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3233869Z copying torch\distributed\fsdp\_shard_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3247926Z copying torch\distributed\fsdp\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3265401Z copying torch\distributed\fsdp\_trace_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3275385Z copying torch\distributed\fsdp\_traversal_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3285028Z copying torch\distributed\fsdp\_unshard_param_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3295377Z copying torch\distributed\fsdp\_wrap_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3318280Z copying torch\distributed\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-08-26T20:11:33.3328166Z creating build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-08-26T20:11:33.3331053Z copying torch\distributed\launcher\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-08-26T20:11:33.3343182Z copying torch\distributed\launcher\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-08-26T20:11:33.3354388Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-08-26T20:11:33.3357385Z copying torch\distributed\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-08-26T20:11:33.3369324Z copying torch\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-08-26T20:11:33.3377398Z creating build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3380702Z copying torch\distributed\optim\apply_optimizer_in_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3391381Z copying torch\distributed\optim\functional_adadelta.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3401411Z copying torch\distributed\optim\functional_adagrad.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3420921Z copying torch\distributed\optim\functional_adam.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3430797Z copying torch\distributed\optim\functional_adamax.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3439936Z copying torch\distributed\optim\functional_adamw.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3450832Z copying torch\distributed\optim\functional_rmsprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3461571Z copying torch\distributed\optim\functional_rprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3470252Z copying torch\distributed\optim\functional_sgd.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3480176Z copying torch\distributed\optim\named_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3491705Z copying torch\distributed\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3504445Z copying torch\distributed\optim\post_localSGD_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3515024Z copying torch\distributed\optim\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3534781Z copying torch\distributed\optim\zero_redundancy_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3565101Z copying torch\distributed\optim\_deprecation_warning.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3570722Z copying torch\distributed\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:33.3582582Z creating build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-08-26T20:11:33.3585710Z copying torch\distributed\pipelining\microbatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-08-26T20:11:33.3603626Z copying torch\distributed\pipelining\schedules.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-08-26T20:11:33.3644630Z copying torch\distributed\pipelining\stage.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-08-26T20:11:33.3665794Z copying torch\distributed\pipelining\_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-08-26T20:11:33.3693003Z copying torch\distributed\pipelining\_debug.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-08-26T20:11:33.3698444Z copying torch\distributed\pipelining\_IR.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-08-26T20:11:33.3719759Z copying torch\distributed\pipelining\_schedule_visualizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-08-26T20:11:33.3729082Z copying torch\distributed\pipelining\_unflatten.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-08-26T20:11:33.3741066Z copying torch\distributed\pipelining\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-08-26T20:11:33.3750270Z copying torch\distributed\pipelining\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-08-26T20:11:33.3758059Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-08-26T20:11:33.3761035Z copying torch\distributed\rpc\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-08-26T20:11:33.3779170Z copying torch\distributed\rpc\backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-08-26T20:11:33.3802651Z copying torch\distributed\rpc\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-08-26T20:11:33.3813048Z copying torch\distributed\rpc\functions.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-08-26T20:11:33.3831905Z copying torch\distributed\rpc\internal.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-08-26T20:11:33.3849490Z copying torch\distributed\rpc\options.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-08-26T20:11:33.3858473Z copying torch\distributed\rpc\rref_proxy.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-08-26T20:11:33.3868084Z copying torch\distributed\rpc\server_process_global_profiler.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-08-26T20:11:33.3878320Z copying torch\distributed\rpc\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-08-26T20:11:33.3892262Z copying torch\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-08-26T20:11:33.3905874Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.3919363Z copying torch\distributed\tensor\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.3920211Z copying torch\distributed\tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.3933701Z copying torch\distributed\tensor\_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.3958485Z copying torch\distributed\tensor\_collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.3979292Z copying torch\distributed\tensor\_dispatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.3993819Z copying torch\distributed\tensor\_dtensor_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.4010043Z copying torch\distributed\tensor\_op_schema.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.4023293Z copying torch\distributed\tensor\_random.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.4931166Z copying torch\distributed\tensor\_redistribute.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.4945654Z copying torch\distributed\tensor\_sharding_prop.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.4959734Z copying torch\distributed\tensor\_shards_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.4969550Z copying torch\distributed\tensor\_tp_conv.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.4980382Z copying torch\distributed\tensor\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.4993237Z copying torch\distributed\tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-08-26T20:11:33.5009265Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-08-26T20:11:33.5012340Z copying torch\distributed\_composable\checkpoint_activation.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-08-26T20:11:33.5022974Z copying torch\distributed\_composable\contract.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-08-26T20:11:33.5032520Z copying torch\distributed\_composable\replicate.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-08-26T20:11:33.5043633Z copying torch\distributed\_composable\replicate_with_fsdp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-08-26T20:11:33.5060891Z copying torch\distributed\_composable\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-08-26T20:11:33.5068537Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-08-26T20:11:33.5071598Z copying torch\distributed\_shard\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-08-26T20:11:33.5082813Z copying torch\distributed\_shard\common_op_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-08-26T20:11:33.5094556Z copying torch\distributed\_shard\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-08-26T20:11:33.5103114Z copying torch\distributed\_shard\op_registry_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-08-26T20:11:33.5112151Z copying torch\distributed\_shard\sharder.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-08-26T20:11:33.5129343Z copying torch\distributed\_shard\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-08-26T20:11:33.5137966Z copying torch\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-08-26T20:11:33.5144727Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-08-26T20:11:33.5147788Z copying torch\distributed\_sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-08-26T20:11:33.5154500Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-08-26T20:11:33.5157692Z copying torch\distributed\_sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-08-26T20:11:33.5169244Z creating build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-08-26T20:11:33.5172328Z copying torch\distributed\_symmetric_memory\_nvshmem_triton.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-08-26T20:11:33.5201711Z copying torch\distributed\_symmetric_memory\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-08-26T20:11:33.5226096Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-08-26T20:11:33.5228900Z copying torch\distributed\_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-08-26T20:11:33.5234603Z copying torch\distributed\_tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-08-26T20:11:33.5244177Z copying torch\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-08-26T20:11:33.5255586Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5258631Z copying torch\distributed\_tools\common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5267659Z copying torch\distributed\_tools\fake_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5280125Z copying torch\distributed\_tools\fsdp2_mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5300800Z copying torch\distributed\_tools\ilp_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5314203Z copying torch\distributed\_tools\memory_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5324988Z copying torch\distributed\_tools\mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5349611Z copying torch\distributed\_tools\mod_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5360778Z copying torch\distributed\_tools\runtime_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5374305Z copying torch\distributed\_tools\sac_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5393048Z copying torch\distributed\_tools\sac_ilp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5406740Z copying torch\distributed\_tools\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-08-26T20:11:33.5414757Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-08-26T20:11:33.5421775Z copying torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-08-26T20:11:33.5436616Z copying torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-08-26T20:11:33.5444453Z copying torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-08-26T20:11:33.5457830Z copying torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-08-26T20:11:33.5467080Z copying torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-08-26T20:11:33.5477360Z copying torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-08-26T20:11:33.5486696Z copying torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-08-26T20:11:33.5504928Z copying torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-08-26T20:11:33.5514449Z copying torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-08-26T20:11:33.5526729Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-08-26T20:11:33.5538400Z copying torch\distributed\algorithms\model_averaging\averagers.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-08-26T20:11:33.5550401Z copying torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-08-26T20:11:33.5560477Z copying torch\distributed\algorithms\model_averaging\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-08-26T20:11:33.5581405Z copying torch\distributed\algorithms\model_averaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-08-26T20:11:33.5587385Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-08-26T20:11:33.5590681Z copying torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-08-26T20:11:33.5602968Z copying torch\distributed\algorithms\_checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-08-26T20:11:33.5609007Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-08-26T20:11:33.5612672Z copying torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-08-26T20:11:33.5623318Z copying torch\distributed\algorithms\_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-08-26T20:11:33.5630087Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-08-26T20:11:33.5633297Z copying torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-08-26T20:11:33.5648270Z copying torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-08-26T20:11:33.5676267Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-08-26T20:11:33.5679415Z copying torch\distributed\algorithms\_quantization\quantization.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-08-26T20:11:33.5689636Z copying torch\distributed\algorithms\_quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-08-26T20:11:33.5697056Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5700306Z copying torch\distributed\checkpoint\_experimental\barriers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5711464Z copying torch\distributed\checkpoint\_experimental\builder.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5724519Z copying torch\distributed\checkpoint\_experimental\checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5734469Z copying torch\distributed\checkpoint\_experimental\checkpoint_process.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5748630Z copying torch\distributed\checkpoint\_experimental\checkpoint_reader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5761700Z copying torch\distributed\checkpoint\_experimental\checkpoint_writer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5770534Z copying torch\distributed\checkpoint\_experimental\config.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5780298Z copying torch\distributed\checkpoint\_experimental\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5789501Z copying torch\distributed\checkpoint\_experimental\types.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5803251Z copying torch\distributed\checkpoint\_experimental\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5812142Z copying torch\distributed\checkpoint\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:33.5823665Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-08-26T20:11:33.5826684Z copying torch\distributed\elastic\agent\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-08-26T20:11:33.5832703Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-08-26T20:11:33.5836743Z copying torch\distributed\elastic\events\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-08-26T20:11:33.5846943Z copying torch\distributed\elastic\events\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-08-26T20:11:33.5856431Z copying torch\distributed\elastic\events\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-08-26T20:11:33.5866762Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-08-26T20:11:33.5869660Z copying torch\distributed\elastic\metrics\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-08-26T20:11:33.5879134Z copying torch\distributed\elastic\metrics\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-08-26T20:11:33.5890185Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-08-26T20:11:33.5901520Z copying torch\distributed\elastic\multiprocessing\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-08-26T20:11:33.5919804Z copying torch\distributed\elastic\multiprocessing\redirects.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-08-26T20:11:33.5928837Z copying torch\distributed\elastic\multiprocessing\tail_log.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-08-26T20:11:33.5938344Z copying torch\distributed\elastic\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-08-26T20:11:33.5949978Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.5953380Z copying torch\distributed\elastic\rendezvous\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.5963794Z copying torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.5974216Z copying torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.6005559Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.6025012Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.6035868Z copying torch\distributed\elastic\rendezvous\etcd_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.6046760Z copying torch\distributed\elastic\rendezvous\etcd_store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.6058519Z copying torch\distributed\elastic\rendezvous\registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.6068270Z copying torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.6077390Z copying torch\distributed\elastic\rendezvous\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.6086782Z copying torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.6099143Z copying torch\distributed\elastic\rendezvous\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-08-26T20:11:33.6112043Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-08-26T20:11:33.6114967Z copying torch\distributed\elastic\timer\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-08-26T20:11:33.6124955Z copying torch\distributed\elastic\timer\debug_info_logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-08-26T20:11:33.6133972Z copying torch\distributed\elastic\timer\file_based_local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-08-26T20:11:33.6150814Z copying torch\distributed\elastic\timer\local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-08-26T20:11:33.6163548Z copying torch\distributed\elastic\timer\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-08-26T20:11:33.6174173Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-08-26T20:11:33.6177091Z copying torch\distributed\elastic\utils\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-08-26T20:11:33.6186174Z copying torch\distributed\elastic\utils\distributed.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-08-26T20:11:33.6196341Z copying torch\distributed\elastic\utils\logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-08-26T20:11:33.6205299Z copying torch\distributed\elastic\utils\log_level.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-08-26T20:11:33.6210815Z copying torch\distributed\elastic\utils\store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-08-26T20:11:33.6227439Z copying torch\distributed\elastic\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-08-26T20:11:33.6235154Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-08-26T20:11:33.6238397Z copying torch\distributed\elastic\agent\server\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-08-26T20:11:33.6257082Z copying torch\distributed\elastic\agent\server\health_check_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-08-26T20:11:33.6266160Z copying torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-08-26T20:11:33.6281932Z copying torch\distributed\elastic\agent\server\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-08-26T20:11:33.6293343Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-08-26T20:11:33.6300479Z copying torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-08-26T20:11:33.6316560Z copying torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-08-26T20:11:33.6321931Z copying torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-08-26T20:11:33.6333256Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-08-26T20:11:33.6336889Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-08-26T20:11:33.6382718Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-08-26T20:11:33.6384151Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-08-26T20:11:33.6385118Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-08-26T20:11:33.6385922Z copying torch\distributed\elastic\utils\data\cycling_iterator.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-08-26T20:11:33.6387035Z copying torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-08-26T20:11:33.6392228Z copying torch\distributed\elastic\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-08-26T20:11:33.6406411Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-08-26T20:11:33.6408641Z copying torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-08-26T20:11:33.6419691Z copying torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-08-26T20:11:33.6436361Z copying torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-08-26T20:11:33.6450588Z copying torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-08-26T20:11:33.6460761Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-08-26T20:11:33.6513167Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-08-26T20:11:33.6532222Z copying torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-08-26T20:11:33.6547141Z copying torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-08-26T20:11:33.6562188Z copying torch\distributed\fsdp\_fully_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-08-26T20:11:33.6569207Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-08-26T20:11:33.6572868Z copying torch\distributed\nn\api\remote_module.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-08-26T20:11:33.6588239Z copying torch\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-08-26T20:11:33.6594073Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-08-26T20:11:33.6597079Z copying torch\distributed\nn\jit\instantiator.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-08-26T20:11:33.6607024Z copying torch\distributed\nn\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-08-26T20:11:33.6612794Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-08-26T20:11:33.6615897Z copying torch\distributed\nn\jit\templates\remote_module_template.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-08-26T20:11:33.6625608Z copying torch\distributed\nn\jit\templates\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-08-26T20:11:33.6631499Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-08-26T20:11:33.6634789Z copying torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-08-26T20:11:33.6645407Z copying torch\distributed\rpc\_testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-08-26T20:11:33.6652436Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-08-26T20:11:33.6656128Z copying torch\distributed\tensor\debug\_comm_mode.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-08-26T20:11:33.6674772Z copying torch\distributed\tensor\debug\_op_coverage.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-08-26T20:11:33.6684867Z copying torch\distributed\tensor\debug\_visualize_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-08-26T20:11:33.6695125Z copying torch\distributed\tensor\debug\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-08-26T20:11:33.6736870Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-08-26T20:11:33.6739988Z copying torch\distributed\tensor\experimental\_attention.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-08-26T20:11:33.6764050Z copying torch\distributed\tensor\experimental\_func_map.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-08-26T20:11:33.6776615Z copying torch\distributed\tensor\experimental\_register_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-08-26T20:11:33.6795993Z copying torch\distributed\tensor\experimental\_tp_transform.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-08-26T20:11:33.6814825Z copying torch\distributed\tensor\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-08-26T20:11:33.6827904Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-08-26T20:11:33.6852045Z copying torch\distributed\tensor\parallel\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-08-26T20:11:33.6864936Z copying torch\distributed\tensor\parallel\ddp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-08-26T20:11:33.6882150Z copying torch\distributed\tensor\parallel\fsdp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-08-26T20:11:33.6892196Z copying torch\distributed\tensor\parallel\input_reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-08-26T20:11:33.6900988Z copying torch\distributed\tensor\parallel\loss.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-08-26T20:11:33.6917755Z copying torch\distributed\tensor\parallel\style.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-08-26T20:11:33.6944408Z copying torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-08-26T20:11:33.6954081Z copying torch\distributed\tensor\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-08-26T20:11:33.6962298Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.6965359Z copying torch\distributed\tensor\_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.6981591Z copying torch\distributed\tensor\_ops\_common_rules.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.6991541Z copying torch\distributed\tensor\_ops\_conv_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.7000840Z copying torch\distributed\tensor\_ops\_einsum_strategy.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.7023244Z copying torch\distributed\tensor\_ops\_embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.7033397Z copying torch\distributed\tensor\_ops\_math_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.7051907Z copying torch\distributed\tensor\_ops\_matrix_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.7069865Z copying torch\distributed\tensor\_ops\_pointwise_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.7083505Z copying torch\distributed\tensor\_ops\_random_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.7092670Z copying torch\distributed\tensor\_ops\_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.7111962Z copying torch\distributed\tensor\_ops\_view_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.7126867Z copying torch\distributed\tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-08-26T20:11:33.7137793Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-08-26T20:11:33.7140844Z copying torch\distributed\_composable\fsdp\fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-08-26T20:11:33.7148595Z copying torch\distributed\_composable\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-08-26T20:11:33.7155421Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-08-26T20:11:33.7158466Z copying torch\distributed\_shard\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-08-26T20:11:33.7165372Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-08-26T20:11:33.7168449Z copying torch\distributed\_shard\sharded_optim\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-08-26T20:11:33.7179258Z copying torch\distributed\_shard\sharded_optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-08-26T20:11:33.7189854Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-08-26T20:11:33.7193488Z copying torch\distributed\_shard\sharded_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-08-26T20:11:33.7218116Z copying torch\distributed\_shard\sharded_tensor\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-08-26T20:11:33.7227318Z copying torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-08-26T20:11:33.7237865Z copying torch\distributed\_shard\sharded_tensor\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-08-26T20:11:33.7247596Z copying torch\distributed\_shard\sharded_tensor\reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-08-26T20:11:33.7263253Z copying torch\distributed\_shard\sharded_tensor\shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-08-26T20:11:33.7277768Z copying torch\distributed\_shard\sharded_tensor\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-08-26T20:11:33.7287256Z copying torch\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-08-26T20:11:33.7301459Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-08-26T20:11:33.7304686Z copying torch\distributed\_shard\sharding_plan\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-08-26T20:11:33.7313372Z copying torch\distributed\_shard\sharding_plan\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-08-26T20:11:33.7324769Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-08-26T20:11:33.7327977Z copying torch\distributed\_shard\sharding_spec\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-08-26T20:11:33.7357398Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-08-26T20:11:33.7358427Z copying torch\distributed\_shard\sharding_spec\_internals.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-08-26T20:11:33.7360159Z copying torch\distributed\_shard\sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-08-26T20:11:33.7371714Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-08-26T20:11:33.7375471Z copying torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-08-26T20:11:33.7385910Z copying torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-08-26T20:11:33.7396710Z copying torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-08-26T20:11:33.7406403Z copying torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-08-26T20:11:33.7417529Z copying torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-08-26T20:11:33.7430767Z copying torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-08-26T20:11:33.7443616Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-08-26T20:11:33.7452790Z 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-08-26T20:11:33.7463111Z 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-08-26T20:11:33.7477589Z 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-08-26T20:11:33.7490692Z 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-08-26T20:11:33.7496506Z creating build\lib.win-amd64-cpython-39\torch\export\experimental 2025-08-26T20:11:33.7499472Z copying torch\export\experimental\_utils.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-08-26T20:11:33.7509393Z copying torch\export\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-08-26T20:11:33.7525399Z creating build\lib.win-amd64-cpython-39\torch\export\passes 2025-08-26T20:11:33.7528325Z copying torch\export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\passes 2025-08-26T20:11:33.7540590Z creating build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-08-26T20:11:33.7543678Z copying torch\export\pt2_archive\constants.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-08-26T20:11:33.7554155Z copying torch\export\pt2_archive\_package.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-08-26T20:11:33.7570923Z copying torch\export\pt2_archive\_package_weights.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-08-26T20:11:33.7579754Z copying torch\export\pt2_archive\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-08-26T20:11:33.7594632Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.7597999Z copying torch\fx\experimental\accelerator_partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.7616369Z copying torch\fx\experimental\const_fold.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.7626767Z copying torch\fx\experimental\debug.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.7639475Z copying torch\fx\experimental\graph_gradual_typechecker.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.7692196Z copying torch\fx\experimental\merge_matmul.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.7702692Z copying torch\fx\experimental\meta_tracer.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.7712752Z copying torch\fx\experimental\normalize.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8478556Z copying torch\fx\experimental\optimization.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8494286Z copying torch\fx\experimental\partitioner_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8504797Z copying torch\fx\experimental\proxy_tensor.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8678392Z copying torch\fx\experimental\recording.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8699436Z copying torch\fx\experimental\refinement_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8705230Z copying torch\fx\experimental\rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8715871Z copying torch\fx\experimental\schema_type_annotation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8725009Z copying torch\fx\experimental\symbolic_shapes.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8833698Z copying torch\fx\experimental\sym_node.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8876377Z copying torch\fx\experimental\unify_refinements.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8877159Z copying torch\fx\experimental\validator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8897173Z copying torch\fx\experimental\_backward_state.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8907327Z copying torch\fx\experimental\_config.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8917338Z copying torch\fx\experimental\_constant_symnode.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8932139Z copying torch\fx\experimental\_dynamism.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8941435Z copying torch\fx\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-08-26T20:11:33.8950003Z creating build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.8953090Z copying torch\fx\passes\annotate_getitem_nodes.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.8968932Z copying torch\fx\passes\fake_tensor_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.8978415Z copying torch\fx\passes\graph_drawer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.8990861Z copying torch\fx\passes\graph_manipulation.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9005240Z copying torch\fx\passes\graph_transform_observer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9014865Z copying torch\fx\passes\net_min_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9034340Z copying torch\fx\passes\operator_support.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9044511Z copying torch\fx\passes\param_fetch.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9053957Z copying torch\fx\passes\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9063394Z copying torch\fx\passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9081930Z copying torch\fx\passes\runtime_assert.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9095876Z copying torch\fx\passes\shape_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9108522Z copying torch\fx\passes\splitter_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9125541Z copying torch\fx\passes\split_module.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9143004Z copying torch\fx\passes\split_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9152522Z copying torch\fx\passes\tools_common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9168262Z copying torch\fx\passes\_tensorify_python_scalars.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9182615Z copying torch\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-08-26T20:11:33.9191057Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-08-26T20:11:33.9198300Z copying torch\fx\experimental\migrate_gradual_types\constraint.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-08-26T20:11:33.9212209Z copying torch\fx\experimental\migrate_gradual_types\constraint_generator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-08-26T20:11:33.9240448Z copying torch\fx\experimental\migrate_gradual_types\constraint_transformation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-08-26T20:11:33.9263716Z copying torch\fx\experimental\migrate_gradual_types\operation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-08-26T20:11:33.9269843Z copying torch\fx\experimental\migrate_gradual_types\transform_to_z3.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-08-26T20:11:33.9284463Z copying torch\fx\experimental\migrate_gradual_types\util.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-08-26T20:11:33.9293938Z copying torch\fx\experimental\migrate_gradual_types\z3_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-08-26T20:11:33.9308869Z copying torch\fx\experimental\migrate_gradual_types\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-08-26T20:11:33.9314093Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-08-26T20:11:33.9316922Z copying torch\fx\experimental\unification\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-08-26T20:11:33.9327411Z copying torch\fx\experimental\unification\dispatch.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-08-26T20:11:33.9336414Z copying torch\fx\experimental\unification\match.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-08-26T20:11:33.9345711Z copying torch\fx\experimental\unification\more.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-08-26T20:11:33.9355410Z copying torch\fx\experimental\unification\unification_tools.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-08-26T20:11:33.9372840Z copying torch\fx\experimental\unification\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-08-26T20:11:33.9382154Z copying torch\fx\experimental\unification\variable.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-08-26T20:11:33.9393023Z copying torch\fx\experimental\unification\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-08-26T20:11:33.9399700Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-08-26T20:11:33.9404212Z copying torch\fx\experimental\unification\multipledispatch\conflict.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-08-26T20:11:33.9416176Z copying torch\fx\experimental\unification\multipledispatch\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-08-26T20:11:33.9425189Z copying torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-08-26T20:11:33.9434956Z copying torch\fx\experimental\unification\multipledispatch\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-08-26T20:11:33.9444506Z copying torch\fx\experimental\unification\multipledispatch\variadic.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-08-26T20:11:33.9457011Z copying torch\fx\experimental\unification\multipledispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-08-26T20:11:33.9463549Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-08-26T20:11:33.9466808Z copying torch\fx\passes\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-08-26T20:11:33.9477412Z copying torch\fx\passes\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-08-26T20:11:33.9483611Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-08-26T20:11:33.9490766Z copying torch\fx\passes\dialect\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-08-26T20:11:33.9496692Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-08-26T20:11:33.9499630Z copying torch\fx\passes\infra\partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-08-26T20:11:33.9517613Z copying torch\fx\passes\infra\pass_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-08-26T20:11:33.9526627Z copying torch\fx\passes\infra\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-08-26T20:11:33.9535561Z copying torch\fx\passes\infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-08-26T20:11:33.9547180Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-08-26T20:11:33.9550147Z copying torch\fx\passes\tests\test_pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-08-26T20:11:33.9559835Z copying torch\fx\passes\tests\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-08-26T20:11:33.9566662Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-08-26T20:11:33.9569789Z copying torch\fx\passes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-08-26T20:11:33.9579641Z copying torch\fx\passes\utils\fuser_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-08-26T20:11:33.9588965Z copying torch\fx\passes\utils\matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-08-26T20:11:33.9606090Z copying torch\fx\passes\utils\matcher_with_name_node_map_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-08-26T20:11:33.9620787Z copying torch\fx\passes\utils\source_matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-08-26T20:11:33.9630885Z copying torch\fx\passes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-08-26T20:11:33.9641856Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-08-26T20:11:33.9645187Z copying torch\fx\passes\dialect\common\cse_pass.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-08-26T20:11:33.9656716Z copying torch\fx\passes\dialect\common\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-08-26T20:11:33.9662531Z creating build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-08-26T20:11:33.9665463Z copying torch\jit\mobile\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-08-26T20:11:33.9677675Z creating build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-08-26T20:11:33.9680586Z copying torch\jit\_passes\_property_propagation.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-08-26T20:11:33.9690652Z copying torch\jit\_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-08-26T20:11:33.9697415Z creating build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-08-26T20:11:33.9700490Z copying torch\masked\maskedtensor\binary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-08-26T20:11:33.9715639Z copying torch\masked\maskedtensor\core.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-08-26T20:11:33.9727077Z copying torch\masked\maskedtensor\creation.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-08-26T20:11:33.9732638Z copying torch\masked\maskedtensor\passthrough.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-08-26T20:11:33.9742642Z copying torch\masked\maskedtensor\reductions.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-08-26T20:11:33.9760933Z copying torch\masked\maskedtensor\unary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-08-26T20:11:33.9770386Z copying torch\masked\maskedtensor\_ops_refs.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-08-26T20:11:33.9784293Z copying torch\masked\maskedtensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-08-26T20:11:33.9795242Z creating build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-08-26T20:11:33.9798272Z copying torch\nested\_internal\nested_int.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-08-26T20:11:33.9810024Z copying torch\nested\_internal\nested_tensor.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-08-26T20:11:33.9824676Z copying torch\nested\_internal\ops.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-08-26T20:11:33.9858097Z copying torch\nested\_internal\sdpa.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-08-26T20:11:33.9888770Z copying torch\nested\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-08-26T20:11:33.9896308Z creating build\lib.win-amd64-cpython-39\torch\nn\attention 2025-08-26T20:11:33.9897994Z copying torch\nn\attention\bias.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-08-26T20:11:33.9908734Z copying torch\nn\attention\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-08-26T20:11:33.9941455Z copying torch\nn\attention\_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-08-26T20:11:33.9950653Z copying torch\nn\attention\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-08-26T20:11:33.9961354Z creating build\lib.win-amd64-cpython-39\torch\nn\backends 2025-08-26T20:11:33.9964268Z copying torch\nn\backends\thnn.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-08-26T20:11:33.9970199Z copying torch\nn\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-08-26T20:11:33.9975749Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-08-26T20:11:33.9978619Z copying torch\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-08-26T20:11:33.9993865Z creating build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:33.9996816Z copying torch\nn\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.0031163Z copying torch\nn\modules\adaptive.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.0041784Z copying torch\nn\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.0060679Z copying torch\nn\modules\channelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.0075816Z copying torch\nn\modules\container.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.0094836Z copying torch\nn\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.0138802Z copying torch\nn\modules\distance.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.0184115Z copying torch\nn\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.0184780Z copying torch\nn\modules\flatten.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.0185387Z copying torch\nn\modules\fold.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1060684Z copying torch\nn\modules\instancenorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1074253Z copying torch\nn\modules\lazy.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1084147Z copying torch\nn\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1093699Z copying torch\nn\modules\loss.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1128638Z copying torch\nn\modules\module.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1178571Z copying torch\nn\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1193167Z copying torch\nn\modules\padding.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1207615Z copying torch\nn\modules\pixelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1216182Z copying torch\nn\modules\pooling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1240741Z copying torch\nn\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1270893Z copying torch\nn\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1285996Z copying torch\nn\modules\transformer.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1307818Z copying torch\nn\modules\upsampling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1317698Z copying torch\nn\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1330552Z copying torch\nn\modules\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1341451Z copying torch\nn\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-08-26T20:11:34.1352694Z creating build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-08-26T20:11:34.1355736Z copying torch\nn\parallel\comm.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-08-26T20:11:34.1365621Z copying torch\nn\parallel\data_parallel.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-08-26T20:11:34.1380042Z copying torch\nn\parallel\distributed.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-08-26T20:11:34.1542973Z copying torch\nn\parallel\parallel_apply.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-08-26T20:11:34.1563126Z copying torch\nn\parallel\replicate.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-08-26T20:11:34.1576015Z copying torch\nn\parallel\scatter_gather.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-08-26T20:11:34.1585793Z copying torch\nn\parallel\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-08-26T20:11:34.1596193Z copying torch\nn\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-08-26T20:11:34.1653287Z creating build\lib.win-amd64-cpython-39\torch\nn\qat 2025-08-26T20:11:34.1655693Z copying torch\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat 2025-08-26T20:11:34.1666805Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-08-26T20:11:34.1670573Z copying torch\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-08-26T20:11:34.1676815Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-08-26T20:11:34.1679840Z copying torch\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-08-26T20:11:34.1685461Z copying torch\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-08-26T20:11:34.1699339Z creating build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1702091Z copying torch\nn\utils\clip_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1714546Z copying torch\nn\utils\convert_parameters.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1727980Z copying torch\nn\utils\fusion.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1737420Z copying torch\nn\utils\init.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1746535Z copying torch\nn\utils\memory_format.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1766162Z copying torch\nn\utils\parametrizations.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1780435Z copying torch\nn\utils\parametrize.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1798995Z copying torch\nn\utils\prune.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1821821Z copying torch\nn\utils\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1834904Z copying torch\nn\utils\spectral_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1844636Z copying torch\nn\utils\stateless.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1854661Z copying torch\nn\utils\weight_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1869881Z copying torch\nn\utils\_deprecation_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1879845Z copying torch\nn\utils\_named_member_accessor.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1890853Z copying torch\nn\utils\_per_sample_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1899997Z copying torch\nn\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-08-26T20:11:34.1943446Z creating build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-08-26T20:11:34.1950186Z copying torch\nn\attention\experimental\_paged_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-08-26T20:11:34.1960509Z copying torch\nn\attention\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-08-26T20:11:34.1967107Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-08-26T20:11:34.1970533Z copying torch\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-08-26T20:11:34.1980537Z copying torch\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-08-26T20:11:34.1986881Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-08-26T20:11:34.1989581Z copying torch\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-08-26T20:11:34.1996272Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-08-26T20:11:34.1999292Z copying torch\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-08-26T20:11:34.2007027Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-08-26T20:11:34.2009884Z copying torch\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-08-26T20:11:34.2024725Z copying torch\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-08-26T20:11:34.2030241Z copying torch\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-08-26T20:11:34.2035669Z copying torch\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-08-26T20:11:34.2051614Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-08-26T20:11:34.2054729Z copying torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-08-26T20:11:34.2061735Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-08-26T20:11:34.2064725Z copying torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-08-26T20:11:34.2070261Z copying torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-08-26T20:11:34.2075884Z copying torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-08-26T20:11:34.2086230Z copying torch\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-08-26T20:11:34.2092888Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-08-26T20:11:34.2095970Z copying torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-08-26T20:11:34.2101695Z copying torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-08-26T20:11:34.2108087Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-08-26T20:11:34.2110652Z copying torch\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-08-26T20:11:34.2122300Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-08-26T20:11:34.2125777Z copying torch\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-08-26T20:11:34.2131194Z copying torch\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-08-26T20:11:34.2136612Z copying torch\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-08-26T20:11:34.2141891Z copying torch\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-08-26T20:11:34.2152163Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-08-26T20:11:34.2155037Z copying torch\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-08-26T20:11:34.2160423Z copying torch\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-08-26T20:11:34.2167451Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-08-26T20:11:34.2170300Z copying torch\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-08-26T20:11:34.2175702Z copying torch\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-08-26T20:11:34.2185632Z copying torch\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-08-26T20:11:34.2192387Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-08-26T20:11:34.2195177Z copying torch\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-08-26T20:11:34.2203326Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2206436Z copying torch\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2212222Z copying torch\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2222357Z copying torch\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2228118Z copying torch\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2233922Z copying torch\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2249865Z copying torch\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2255650Z copying torch\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2261568Z copying torch\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2271708Z copying torch\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2282074Z copying torch\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2287743Z copying torch\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-08-26T20:11:34.2299402Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-08-26T20:11:34.2309145Z copying torch\nn\quantized\_reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-08-26T20:11:34.2320231Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-08-26T20:11:34.2323394Z copying torch\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-08-26T20:11:34.2329326Z copying torch\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-08-26T20:11:34.2334984Z copying torch\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-08-26T20:11:34.2346696Z copying torch\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-08-26T20:11:34.2365570Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-08-26T20:11:34.2367386Z copying torch\nn\quantized\_reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-08-26T20:11:34.2373417Z copying torch\nn\quantized\_reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-08-26T20:11:34.2379500Z copying torch\nn\quantized\_reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-08-26T20:11:34.2385934Z copying torch\nn\quantized\_reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-08-26T20:11:34.2396251Z copying torch\nn\quantized\_reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-08-26T20:11:34.2401755Z copying torch\nn\quantized\_reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-08-26T20:11:34.2413283Z creating build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-08-26T20:11:34.2416502Z copying torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-08-26T20:11:34.2426487Z copying torch\nn\utils\_expanded_weights\conv_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-08-26T20:11:34.2436180Z copying torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-08-26T20:11:34.2452482Z copying torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-08-26T20:11:34.2461674Z copying torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-08-26T20:11:34.2471176Z copying torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-08-26T20:11:34.2479998Z copying torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-08-26T20:11:34.2489034Z copying torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-08-26T20:11:34.2497917Z copying torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-08-26T20:11:34.2506478Z copying torch\nn\utils\_expanded_weights\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-08-26T20:11:34.2513620Z creating build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-08-26T20:11:34.2516570Z copying torch\onnx\ops\_dtype_mappings.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-08-26T20:11:34.2526100Z copying torch\onnx\ops\_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-08-26T20:11:34.2536322Z copying torch\onnx\ops\_symbolic_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-08-26T20:11:34.2545846Z copying torch\onnx\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-08-26T20:11:34.2560940Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-08-26T20:11:34.2563950Z copying torch\onnx\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-08-26T20:11:34.2574928Z copying torch\onnx\_internal\onnx_proto_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-08-26T20:11:34.2585171Z copying torch\onnx\_internal\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-08-26T20:11:34.2604266Z copying torch\onnx\_internal\_lazy_import.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-08-26T20:11:34.2615386Z copying torch\onnx\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-08-26T20:11:34.2624262Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2627461Z copying torch\onnx\_internal\exporter\_analysis.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2636991Z copying torch\onnx\_internal\exporter\_building.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2651934Z copying torch\onnx\_internal\exporter\_capture_strategies.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2661685Z copying torch\onnx\_internal\exporter\_compat.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2677891Z copying torch\onnx\_internal\exporter\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2688675Z copying torch\onnx\_internal\exporter\_core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2713482Z copying torch\onnx\_internal\exporter\_decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2722312Z copying torch\onnx\_internal\exporter\_dispatching.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2732238Z copying torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2742294Z copying torch\onnx\_internal\exporter\_errors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2747880Z copying torch\onnx\_internal\exporter\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2753557Z copying torch\onnx\_internal\exporter\_fx_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2763021Z copying torch\onnx\_internal\exporter\_ir_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2777081Z copying torch\onnx\_internal\exporter\_isolated.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2786252Z copying torch\onnx\_internal\exporter\_onnx_program.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2798672Z copying torch\onnx\_internal\exporter\_registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2941415Z copying torch\onnx\_internal\exporter\_reporting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2954349Z copying torch\onnx\_internal\exporter\_schemas.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2967902Z copying torch\onnx\_internal\exporter\_tensors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2976708Z copying torch\onnx\_internal\exporter\_testing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2985819Z copying torch\onnx\_internal\exporter\_type_casting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.2995956Z copying torch\onnx\_internal\exporter\_verification.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.3007701Z copying torch\onnx\_internal\exporter\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-08-26T20:11:34.3013833Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-08-26T20:11:34.3016694Z copying torch\onnx\_internal\fx\type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-08-26T20:11:34.3027760Z copying torch\onnx\_internal\fx\_pass.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-08-26T20:11:34.3038347Z copying torch\onnx\_internal\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-08-26T20:11:34.3044508Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-08-26T20:11:34.3055250Z copying torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-08-26T20:11:34.3064382Z copying torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-08-26T20:11:34.3073133Z copying torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-08-26T20:11:34.3079551Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-08-26T20:11:34.3090234Z copying torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-08-26T20:11:34.3099178Z copying torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-08-26T20:11:34.3111307Z copying torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-08-26T20:11:34.3120794Z copying torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-08-26T20:11:34.3129899Z copying torch\onnx\_internal\exporter\_torchlib\ops\symops.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-08-26T20:11:34.3138473Z copying torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-08-26T20:11:34.3145584Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-08-26T20:11:34.3148592Z copying torch\onnx\_internal\fx\passes\type_promotion.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-08-26T20:11:34.3175232Z copying torch\onnx\_internal\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-08-26T20:11:34.3181911Z creating build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-08-26T20:11:34.3184947Z copying torch\optim\_multi_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-08-26T20:11:34.3236192Z creating build\lib.win-amd64-cpython-39\torch\package\analyze 2025-08-26T20:11:34.3239239Z copying torch\package\analyze\find_first_use_of_broken_modules.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-08-26T20:11:34.3253463Z copying torch\package\analyze\is_from_package.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-08-26T20:11:34.3259186Z copying torch\package\analyze\trace_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-08-26T20:11:34.3275514Z copying torch\package\analyze\__init__.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-08-26T20:11:34.3283992Z creating build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3287267Z copying torch\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3293141Z copying torch\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3298743Z copying torch\quantization\fx\fusion_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3304340Z copying torch\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3309979Z copying torch\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3323534Z copying torch\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3333994Z copying torch\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3346316Z copying torch\quantization\fx\quantization_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3355485Z copying torch\quantization\fx\quantization_types.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3361181Z copying torch\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3370266Z copying torch\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3384493Z copying torch\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-08-26T20:11:34.3387405Z creating build\lib.win-amd64-cpython-39\torch\signal\windows 2025-08-26T20:11:34.3390603Z copying torch\signal\windows\windows.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-08-26T20:11:34.3406694Z copying torch\signal\windows\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-08-26T20:11:34.3420549Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.3437568Z copying torch\testing\_internal\autocast_test_lists.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.3454341Z copying torch\testing\_internal\autograd_function_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.3467680Z copying torch\testing\_internal\check_kernel_launches.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.3490652Z copying torch\testing\_internal\common_cuda.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.3503444Z copying torch\testing\_internal\common_device_type.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.4054848Z copying torch\testing\_internal\common_distributed.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.4079197Z copying torch\testing\_internal\common_dist_composable.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.4092002Z copying torch\testing\_internal\common_dtype.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.4101184Z copying torch\testing\_internal\common_fsdp.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.4125519Z copying torch\testing\_internal\common_jit.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.4135884Z copying torch\testing\_internal\common_methods_invocations.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.6438481Z copying torch\testing\_internal\common_mkldnn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.6449081Z copying torch\testing\_internal\common_modules.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.7280387Z copying torch\testing\_internal\common_mps.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.7305613Z copying torch\testing\_internal\common_nn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.7360859Z copying torch\testing\_internal\common_optimizers.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.7389718Z copying torch\testing\_internal\common_pruning.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.7399901Z copying torch\testing\_internal\common_quantization.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.7446072Z copying torch\testing\_internal\common_quantized.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.7459971Z copying torch\testing\_internal\common_subclass.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.8395243Z copying torch\testing\_internal\common_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.8470814Z copying torch\testing\_internal\composite_compliance.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.8486733Z copying torch\testing\_internal\custom_op_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.8501807Z copying torch\testing\_internal\custom_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.8512388Z copying torch\testing\_internal\dist_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.8522081Z copying torch\testing\_internal\dynamo_test_failures.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.9634924Z copying torch\testing\_internal\fake_config_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.9664141Z copying torch\testing\_internal\fake_config_module2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.9669987Z copying torch\testing\_internal\fake_config_module3.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.9680633Z copying torch\testing\_internal\hop_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.9699473Z copying torch\testing\_internal\hypothesis_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.9710266Z copying torch\testing\_internal\inductor_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.9720199Z copying torch\testing\_internal\jit_metaprogramming_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.9737879Z copying torch\testing\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.9754781Z copying torch\testing\_internal\logging_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:34.9765554Z copying torch\testing\_internal\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:35.0587745Z copying torch\testing\_internal\quantization_torch_package_models.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:35.0597672Z copying torch\testing\_internal\static_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:35.0611213Z copying torch\testing\_internal\subclasses.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:35.0624510Z copying torch\testing\_internal\torchbind_impls.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:35.0633967Z copying torch\testing\_internal\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:35.0649249Z copying torch\testing\_internal\two_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:35.0658025Z copying torch\testing\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-08-26T20:11:35.0664425Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-08-26T20:11:35.0667319Z copying torch\testing\_internal\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-08-26T20:11:35.0674474Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-08-26T20:11:35.0678257Z copying torch\testing\_internal\data\network1.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-08-26T20:11:35.0683853Z copying torch\testing\_internal\data\network2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-08-26T20:11:35.0689231Z copying torch\testing\_internal\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-08-26T20:11:35.0702468Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-08-26T20:11:35.0705674Z copying torch\testing\_internal\distributed\checkpoint_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-08-26T20:11:35.0716043Z copying torch\testing\_internal\distributed\common_state_dict.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-08-26T20:11:35.0728673Z copying torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-08-26T20:11:35.0746715Z copying torch\testing\_internal\distributed\distributed_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-08-26T20:11:35.1779894Z copying torch\testing\_internal\distributed\distributed_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-08-26T20:11:35.1790224Z copying torch\testing\_internal\distributed\fake_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-08-26T20:11:35.1799972Z copying torch\testing\_internal\distributed\multi_threaded_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-08-26T20:11:35.1813836Z copying torch\testing\_internal\distributed\rpc_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-08-26T20:11:35.1823614Z copying torch\testing\_internal\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-08-26T20:11:35.1829822Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-08-26T20:11:35.1833102Z copying torch\testing\_internal\generated\annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-08-26T20:11:35.2494137Z copying torch\testing\_internal\generated\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-08-26T20:11:35.2500135Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-08-26T20:11:35.2510003Z copying torch\testing\_internal\opinfo\core.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-08-26T20:11:35.2543772Z copying torch\testing\_internal\opinfo\refs.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-08-26T20:11:35.2558267Z copying torch\testing\_internal\opinfo\utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-08-26T20:11:35.2567555Z copying torch\testing\_internal\opinfo\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-08-26T20:11:35.2575375Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-08-26T20:11:35.2578311Z copying torch\testing\_internal\optests\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-08-26T20:11:35.2587628Z copying torch\testing\_internal\optests\autograd_registration.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-08-26T20:11:35.2602162Z copying torch\testing\_internal\optests\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-08-26T20:11:35.2607914Z copying torch\testing\_internal\optests\generate_tests.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-08-26T20:11:35.2626070Z copying torch\testing\_internal\optests\make_fx.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-08-26T20:11:35.2634638Z copying torch\testing\_internal\optests\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-08-26T20:11:35.2641918Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-08-26T20:11:35.2645245Z copying torch\testing\_internal\test_module\future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-08-26T20:11:35.2650910Z copying torch\testing\_internal\test_module\no_future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-08-26T20:11:35.2656279Z copying torch\testing\_internal\test_module\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-08-26T20:11:35.2661985Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-08-26T20:11:35.2664921Z copying torch\testing\_internal\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-08-26T20:11:35.2671763Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-08-26T20:11:35.2674929Z copying torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-08-26T20:11:35.2711328Z copying torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-08-26T20:11:35.2722413Z copying torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-08-26T20:11:35.2736806Z copying torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-08-26T20:11:35.2750798Z copying torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-08-26T20:11:35.2760828Z copying torch\testing\_internal\distributed\rpc\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-08-26T20:11:35.2826269Z copying torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-08-26T20:11:35.2835353Z copying torch\testing\_internal\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-08-26T20:11:35.2841530Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-08-26T20:11:35.2844604Z copying torch\testing\_internal\distributed\_shard\test_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-08-26T20:11:35.2857915Z copying torch\testing\_internal\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-08-26T20:11:35.2865343Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-08-26T20:11:35.2868515Z copying torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-08-26T20:11:35.2884524Z copying torch\testing\_internal\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-08-26T20:11:35.2892301Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-08-26T20:11:35.2894872Z copying torch\testing\_internal\distributed\nn\api\remote_module_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-08-26T20:11:35.2910260Z copying torch\testing\_internal\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-08-26T20:11:35.2916760Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-08-26T20:11:35.2920816Z copying torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-08-26T20:11:35.2950746Z 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-08-26T20:11:35.2962564Z copying torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-08-26T20:11:35.2968427Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-08-26T20:11:35.2971658Z copying torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-08-26T20:11:35.2981162Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-08-26T20:11:35.2999742Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-08-26T20:11:35.3009469Z copying torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-08-26T20:11:35.3015829Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-08-26T20:11:35.3019114Z 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-08-26T20:11:35.3030798Z 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-08-26T20:11:35.3040230Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-08-26T20:11:35.3050890Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-08-26T20:11:35.3054003Z copying torch\testing\_internal\opinfo\definitions\fft.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-08-26T20:11:35.3073873Z copying torch\testing\_internal\opinfo\definitions\linalg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-08-26T20:11:35.3105387Z copying torch\testing\_internal\opinfo\definitions\nested.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-08-26T20:11:35.3127001Z copying torch\testing\_internal\opinfo\definitions\signal.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-08-26T20:11:35.3138169Z copying torch\testing\_internal\opinfo\definitions\sparse.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-08-26T20:11:35.3158855Z copying torch\testing\_internal\opinfo\definitions\special.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-08-26T20:11:35.3176921Z copying torch\testing\_internal\opinfo\definitions\_masked.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-08-26T20:11:35.3195858Z copying torch\testing\_internal\opinfo\definitions\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-08-26T20:11:35.3202456Z creating build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-08-26T20:11:35.3205628Z copying torch\utils\backcompat\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-08-26T20:11:35.3212282Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-08-26T20:11:35.3215140Z copying torch\utils\benchmark\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-08-26T20:11:35.3222316Z creating build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-08-26T20:11:35.3224929Z copying torch\utils\bottleneck\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-08-26T20:11:35.3229695Z copying torch\utils\bottleneck\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-08-26T20:11:35.3241179Z creating build\lib.win-amd64-cpython-39\torch\utils\data 2025-08-26T20:11:35.3244916Z copying torch\utils\data\backward_compatibility.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-08-26T20:11:35.3250787Z copying torch\utils\data\dataloader.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-08-26T20:11:35.3279608Z copying torch\utils\data\dataset.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-08-26T20:11:35.3293349Z copying torch\utils\data\distributed.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-08-26T20:11:35.3306896Z copying torch\utils\data\graph.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-08-26T20:11:35.3315984Z copying torch\utils\data\graph_settings.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-08-26T20:11:35.3325331Z copying torch\utils\data\sampler.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-08-26T20:11:35.3335794Z copying torch\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-08-26T20:11:35.3346963Z creating build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-08-26T20:11:35.3350135Z copying torch\utils\hipify\constants.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-08-26T20:11:35.3360101Z copying torch\utils\hipify\cuda_to_hip_mappings.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-08-26T20:11:35.3622697Z copying torch\utils\hipify\hipify_python.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-08-26T20:11:35.3645750Z copying torch\utils\hipify\version.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-08-26T20:11:35.3659227Z copying torch\utils\hipify\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-08-26T20:11:35.3665831Z creating build\lib.win-amd64-cpython-39\torch\utils\jit 2025-08-26T20:11:35.3668775Z copying torch\utils\jit\log_extract.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-08-26T20:11:35.3679081Z copying torch\utils\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-08-26T20:11:35.3685097Z creating build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-08-26T20:11:35.3688171Z copying torch\utils\model_dump\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-08-26T20:11:35.3706120Z copying torch\utils\model_dump\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-08-26T20:11:35.3714068Z creating build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-08-26T20:11:35.3717594Z copying torch\utils\serialization\config.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-08-26T20:11:35.3723155Z copying torch\utils\serialization\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-08-26T20:11:35.3730954Z creating build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-08-26T20:11:35.3734117Z copying torch\utils\tensorboard\summary.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-08-26T20:11:35.3756220Z copying torch\utils\tensorboard\writer.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-08-26T20:11:35.3776271Z copying torch\utils\tensorboard\_convert_np.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-08-26T20:11:35.3785674Z copying torch\utils\tensorboard\_embedding.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-08-26T20:11:35.3799393Z copying torch\utils\tensorboard\_onnx_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-08-26T20:11:35.3809368Z copying torch\utils\tensorboard\_proto_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-08-26T20:11:35.3818629Z copying torch\utils\tensorboard\_pytorch_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-08-26T20:11:35.3829000Z copying torch\utils\tensorboard\_utils.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-08-26T20:11:35.3841995Z copying torch\utils\tensorboard\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-08-26T20:11:35.3848828Z creating build\lib.win-amd64-cpython-39\torch\utils\viz 2025-08-26T20:11:35.3851870Z copying torch\utils\viz\_cycles.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-08-26T20:11:35.3866463Z copying torch\utils\viz\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-08-26T20:11:35.3872574Z creating build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-08-26T20:11:35.3875884Z copying torch\utils\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-08-26T20:11:35.3886685Z copying torch\utils\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-08-26T20:11:35.3894183Z creating build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-08-26T20:11:35.3896933Z copying torch\utils\_sympy\functions.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-08-26T20:11:35.3919634Z copying torch\utils\_sympy\interp.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-08-26T20:11:35.3928829Z copying torch\utils\_sympy\numbers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-08-26T20:11:35.3938107Z copying torch\utils\_sympy\printers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-08-26T20:11:35.3952532Z copying torch\utils\_sympy\reference.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-08-26T20:11:35.3975893Z copying torch\utils\_sympy\singleton_int.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-08-26T20:11:35.3984040Z copying torch\utils\_sympy\solve.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-08-26T20:11:35.3996943Z copying torch\utils\_sympy\symbol.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-08-26T20:11:35.4005896Z copying torch\utils\_sympy\value_ranges.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-08-26T20:11:35.4024970Z copying torch\utils\_sympy\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-08-26T20:11:35.4031748Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-08-26T20:11:35.4034509Z copying torch\utils\benchmark\examples\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-08-26T20:11:35.4043919Z copying torch\utils\benchmark\examples\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-08-26T20:11:35.4053335Z copying torch\utils\benchmark\examples\op_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-08-26T20:11:35.4065271Z copying torch\utils\benchmark\examples\simple_timeit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-08-26T20:11:35.4070846Z copying torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-08-26T20:11:35.4085171Z copying torch\utils\benchmark\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-08-26T20:11:35.4091340Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-08-26T20:11:35.4094495Z copying torch\utils\benchmark\op_fuzzers\binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-08-26T20:11:35.4103961Z copying torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-08-26T20:11:35.4112902Z copying torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-08-26T20:11:35.4121647Z copying torch\utils\benchmark\op_fuzzers\spectral.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-08-26T20:11:35.4137494Z copying torch\utils\benchmark\op_fuzzers\unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-08-26T20:11:35.4145964Z copying torch\utils\benchmark\op_fuzzers\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-08-26T20:11:35.4157080Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-08-26T20:11:35.4160059Z copying torch\utils\benchmark\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-08-26T20:11:35.4170500Z copying torch\utils\benchmark\utils\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-08-26T20:11:35.4179756Z copying torch\utils\benchmark\utils\compile.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-08-26T20:11:35.4192851Z copying torch\utils\benchmark\utils\cpp_jit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-08-26T20:11:35.4202305Z copying torch\utils\benchmark\utils\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-08-26T20:11:35.4216664Z copying torch\utils\benchmark\utils\sparse_fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-08-26T20:11:35.4232794Z copying torch\utils\benchmark\utils\timer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-08-26T20:11:35.4246067Z copying torch\utils\benchmark\utils\_stubs.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-08-26T20:11:35.4256035Z copying torch\utils\benchmark\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-08-26T20:11:35.4262267Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-08-26T20:11:35.4265646Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-08-26T20:11:35.4282633Z copying torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-08-26T20:11:35.4289342Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-08-26T20:11:35.4292327Z copying torch\utils\data\datapipes\datapipe.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-08-26T20:11:35.4310247Z copying torch\utils\data\datapipes\gen_pyi.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-08-26T20:11:35.4320262Z copying torch\utils\data\datapipes\_decorator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-08-26T20:11:35.4331649Z copying torch\utils\data\datapipes\_hook_iterator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-08-26T20:11:35.4353054Z copying torch\utils\data\datapipes\_typing.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-08-26T20:11:35.4366730Z copying torch\utils\data\datapipes\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-08-26T20:11:35.4374268Z creating build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-08-26T20:11:35.4377278Z copying torch\utils\data\_utils\collate.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-08-26T20:11:35.4388047Z copying torch\utils\data\_utils\fetch.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-08-26T20:11:35.4397008Z copying torch\utils\data\_utils\pin_memory.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-08-26T20:11:35.4407971Z copying torch\utils\data\_utils\signal_handling.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-08-26T20:11:35.4417158Z copying torch\utils\data\_utils\worker.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-08-26T20:11:35.4430040Z copying torch\utils\data\_utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-08-26T20:11:35.4440439Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-08-26T20:11:35.4448307Z copying torch\utils\data\datapipes\dataframe\dataframes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-08-26T20:11:35.4454588Z copying torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-08-26T20:11:35.4463304Z copying torch\utils\data\datapipes\dataframe\datapipes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-08-26T20:11:35.4483462Z copying torch\utils\data\datapipes\dataframe\structures.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-08-26T20:11:35.4491859Z copying torch\utils\data\datapipes\dataframe\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-08-26T20:11:35.4500303Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4503319Z copying torch\utils\data\datapipes\iter\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4517375Z copying torch\utils\data\datapipes\iter\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4526602Z copying torch\utils\data\datapipes\iter\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4540464Z copying torch\utils\data\datapipes\iter\filelister.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4553451Z copying torch\utils\data\datapipes\iter\fileopener.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4562327Z copying torch\utils\data\datapipes\iter\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4572611Z copying torch\utils\data\datapipes\iter\routeddecoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4581533Z copying torch\utils\data\datapipes\iter\selecting.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4595359Z copying torch\utils\data\datapipes\iter\sharding.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4604461Z copying torch\utils\data\datapipes\iter\streamreader.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4613667Z copying torch\utils\data\datapipes\iter\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4623613Z copying torch\utils\data\datapipes\iter\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-08-26T20:11:35.4635181Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-08-26T20:11:35.4637939Z copying torch\utils\data\datapipes\map\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-08-26T20:11:35.4650658Z copying torch\utils\data\datapipes\map\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-08-26T20:11:35.4661823Z copying torch\utils\data\datapipes\map\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-08-26T20:11:35.4671687Z copying torch\utils\data\datapipes\map\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-08-26T20:11:35.4687058Z copying torch\utils\data\datapipes\map\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-08-26T20:11:35.4700011Z copying torch\utils\data\datapipes\map\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-08-26T20:11:35.4707128Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-08-26T20:11:35.4710388Z copying torch\utils\data\datapipes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-08-26T20:11:35.4721506Z copying torch\utils\data\datapipes\utils\decoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-08-26T20:11:35.4730890Z copying torch\utils\data\datapipes\utils\snapshot.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-08-26T20:11:35.4739821Z copying torch\utils\data\datapipes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-08-26T20:11:35.4746959Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4750126Z copying torch\_dynamo\backends\common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4760102Z copying torch\_dynamo\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4770324Z copying torch\_dynamo\backends\debugging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4784708Z copying torch\_dynamo\backends\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4804591Z copying torch\_dynamo\backends\inductor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4813949Z copying torch\_dynamo\backends\onnxrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4822781Z copying torch\_dynamo\backends\registry.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4832137Z copying torch\_dynamo\backends\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4837413Z copying torch\_dynamo\backends\torchxla.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4850192Z copying torch\_dynamo\backends\tvm.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4859233Z copying torch\_dynamo\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-08-26T20:11:35.4866665Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4870259Z copying torch\_dynamo\polyfills\builtins.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4880522Z copying torch\_dynamo\polyfills\functools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4890985Z copying torch\_dynamo\polyfills\fx.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4903089Z copying torch\_dynamo\polyfills\itertools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4916668Z copying torch\_dynamo\polyfills\loader.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4925554Z copying torch\_dynamo\polyfills\operator.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4934203Z copying torch\_dynamo\polyfills\os.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4942881Z copying torch\_dynamo\polyfills\pytree.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4952525Z copying torch\_dynamo\polyfills\struct.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4958156Z copying torch\_dynamo\polyfills\sys.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4970296Z copying torch\_dynamo\polyfills\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4980840Z copying torch\_dynamo\polyfills\_collections.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.4990092Z copying torch\_dynamo\polyfills\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-08-26T20:11:35.5001104Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-08-26T20:11:35.5004075Z copying torch\_dynamo\repro\after_aot.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-08-26T20:11:35.5055281Z copying torch\_dynamo\repro\after_dynamo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-08-26T20:11:35.5069090Z copying torch\_dynamo\repro\aoti.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-08-26T20:11:35.5083315Z copying torch\_dynamo\repro\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-08-26T20:11:35.5091170Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.5094217Z copying torch\_dynamo\variables\base.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.5108510Z copying torch\_dynamo\variables\builder.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.5168505Z copying torch\_dynamo\variables\builtin.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.5997264Z copying torch\_dynamo\variables\constant.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6014530Z copying torch\_dynamo\variables\ctx_manager.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6042602Z copying torch\_dynamo\variables\dicts.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6064587Z copying torch\_dynamo\variables\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6078802Z copying torch\_dynamo\variables\functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6108654Z copying torch\_dynamo\variables\higher_order_ops.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6154949Z copying torch\_dynamo\variables\iter.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6168046Z copying torch\_dynamo\variables\lazy.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6177687Z copying torch\_dynamo\variables\lists.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6196978Z copying torch\_dynamo\variables\misc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6223409Z copying torch\_dynamo\variables\nn_module.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6246392Z copying torch\_dynamo\variables\optimizer.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6259534Z copying torch\_dynamo\variables\script_object.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6268545Z copying torch\_dynamo\variables\sdpa.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6281966Z copying torch\_dynamo\variables\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6309495Z copying torch\_dynamo\variables\torch.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6338091Z copying torch\_dynamo\variables\torch_function.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6352369Z copying torch\_dynamo\variables\user_defined.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6388235Z copying torch\_dynamo\variables\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-08-26T20:11:35.6399620Z creating build\lib.win-amd64-cpython-39\torch\_export\db 2025-08-26T20:11:35.6402737Z copying torch\_export\db\case.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-08-26T20:11:35.6412512Z copying torch\_export\db\gen_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-08-26T20:11:35.6417748Z copying torch\_export\db\logging.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-08-26T20:11:35.6430776Z copying torch\_export\db\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-08-26T20:11:35.6439592Z creating build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6443012Z copying torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6453524Z copying torch\_export\passes\collect_tracepoints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6463362Z copying torch\_export\passes\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6481264Z copying torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6491182Z copying torch\_export\passes\insert_custom_op_guards.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6499809Z copying torch\_export\passes\lift_constants_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6515955Z copying torch\_export\passes\remove_runtime_assertions.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6524838Z copying torch\_export\passes\replace_autocast_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6534836Z copying torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6549159Z copying torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6558431Z copying torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6567931Z copying torch\_export\passes\replace_with_hop_pass_util.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6580712Z copying torch\_export\passes\_node_metadata_hook.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6590680Z copying torch\_export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-08-26T20:11:35.6597560Z creating build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-08-26T20:11:35.6600724Z copying torch\_export\pass_infra\node_metadata.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-08-26T20:11:35.6610600Z copying torch\_export\pass_infra\proxy_value.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-08-26T20:11:35.6619372Z copying torch\_export\pass_infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-08-26T20:11:35.6626260Z creating build\lib.win-amd64-cpython-39\torch\_export\serde 2025-08-26T20:11:35.6629160Z copying torch\_export\serde\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-08-26T20:11:35.6640082Z copying torch\_export\serde\schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-08-26T20:11:35.6653681Z copying torch\_export\serde\schema_check.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-08-26T20:11:35.6668293Z copying torch\_export\serde\serialize.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-08-26T20:11:35.6726882Z copying torch\_export\serde\union.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-08-26T20:11:35.6740061Z copying torch\_export\serde\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-08-26T20:11:35.6751952Z creating build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6755024Z copying torch\_export\db\examples\assume_constant_result.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6760882Z copying torch\_export\db\examples\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6771846Z copying torch\_export\db\examples\class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6785789Z copying torch\_export\db\examples\cond_branch_class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6795089Z copying torch\_export\db\examples\cond_branch_nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6804252Z copying torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6814564Z copying torch\_export\db\examples\cond_closed_over_variable.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6820333Z copying torch\_export\db\examples\cond_operands.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6831697Z copying torch\_export\db\examples\cond_predicate.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6844833Z copying torch\_export\db\examples\constrain_as_size_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6857355Z copying torch\_export\db\examples\constrain_as_value_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6869963Z copying torch\_export\db\examples\decorator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6875760Z copying torch\_export\db\examples\dictionary.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6881870Z copying torch\_export\db\examples\dynamic_shape_assert.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6888927Z copying torch\_export\db\examples\dynamic_shape_constructor.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6900427Z copying torch\_export\db\examples\dynamic_shape_if_guard.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6906370Z copying torch\_export\db\examples\dynamic_shape_map.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6912517Z copying torch\_export\db\examples\dynamic_shape_round.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6923231Z copying torch\_export\db\examples\dynamic_shape_slicing.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6929507Z copying torch\_export\db\examples\dynamic_shape_view.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6935495Z copying torch\_export\db\examples\fn_with_kwargs.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6967894Z copying torch\_export\db\examples\list_contains.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6973797Z copying torch\_export\db\examples\list_unpack.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6979877Z copying torch\_export\db\examples\model_attr_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6988516Z copying torch\_export\db\examples\nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.6994724Z copying torch\_export\db\examples\null_context_manager.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7004500Z copying torch\_export\db\examples\optional_input.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7013633Z copying torch\_export\db\examples\pytree_flatten.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7019439Z copying torch\_export\db\examples\scalar_output.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7025173Z copying torch\_export\db\examples\specialized_attribute.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7040097Z copying torch\_export\db\examples\static_for_loop.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7046964Z copying torch\_export\db\examples\static_if.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7052688Z copying torch\_export\db\examples\tensor_setattr.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7058718Z copying torch\_export\db\examples\type_reflection_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7064437Z copying torch\_export\db\examples\unsupported_operator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7078160Z copying torch\_export\db\examples\user_input_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7083562Z copying torch\_export\db\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-08-26T20:11:35.7096101Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-08-26T20:11:35.7099343Z copying torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-08-26T20:11:35.7110245Z copying torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-08-26T20:11:35.7121097Z copying torch\_functorch\_activation_checkpointing\knapsack.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-08-26T20:11:35.7137264Z copying torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-08-26T20:11:35.7149709Z copying torch\_functorch\_activation_checkpointing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-08-26T20:11:35.7165568Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7168759Z copying torch\_functorch\_aot_autograd\autograd_cache.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7201223Z copying torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7220856Z copying torch\_functorch\_aot_autograd\descriptors.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7240123Z copying torch\_functorch\_aot_autograd\frontend_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7249736Z copying torch\_functorch\_aot_autograd\functional_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7264268Z copying torch\_functorch\_aot_autograd\fx_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7304073Z copying torch\_functorch\_aot_autograd\graph_capture.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7320768Z copying torch\_functorch\_aot_autograd\graph_capture_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7343983Z copying torch\_functorch\_aot_autograd\graph_compile.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7371799Z copying torch\_functorch\_aot_autograd\input_output_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7387736Z copying torch\_functorch\_aot_autograd\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7400645Z copying torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7441430Z copying torch\_functorch\_aot_autograd\schemas.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7470110Z copying torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7480375Z copying torch\_functorch\_aot_autograd\subclass_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7498148Z copying torch\_functorch\_aot_autograd\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7510875Z copying torch\_functorch\_aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-08-26T20:11:35.7523960Z creating build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-08-26T20:11:35.7527121Z copying torch\_inductor\analysis\device_info.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-08-26T20:11:35.7536971Z copying torch\_inductor\analysis\profile_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-08-26T20:11:35.7549743Z copying torch\_inductor\analysis\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-08-26T20:11:35.7556191Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-08-26T20:11:35.7559267Z copying torch\_inductor\autoheuristic\autoheuristic.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-08-26T20:11:35.7570904Z copying torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-08-26T20:11:35.7581638Z copying torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-08-26T20:11:35.7600125Z copying torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-08-26T20:11:35.7609674Z copying torch\_inductor\autoheuristic\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-08-26T20:11:35.7620736Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.7623836Z copying torch\_inductor\codegen\aoti_hipify_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.7634113Z copying torch\_inductor\codegen\block_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.7644283Z copying torch\_inductor\codegen\common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.7687903Z copying torch\_inductor\codegen\cpp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.7762240Z copying torch\_inductor\codegen\cpp_bmm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.7778568Z copying torch\_inductor\codegen\cpp_flex_attention_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.7804647Z copying torch\_inductor\codegen\cpp_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.7831052Z copying torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.7844997Z copying torch\_inductor\codegen\cpp_micro_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9064358Z copying torch\_inductor\codegen\cpp_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9074455Z copying torch\_inductor\codegen\cpp_template_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9088404Z copying torch\_inductor\codegen\cpp_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9102759Z copying torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9142724Z copying torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9165377Z copying torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9182320Z copying torch\_inductor\codegen\cpp_wrapper_mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9192787Z copying torch\_inductor\codegen\cpu_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9203549Z copying torch\_inductor\codegen\cuda_combined_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9214562Z copying torch\_inductor\codegen\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9229445Z copying torch\_inductor\codegen\halide.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9252642Z copying torch\_inductor\codegen\memory_planning.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9266832Z copying torch\_inductor\codegen\mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9293151Z copying torch\_inductor\codegen\mps_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9302420Z copying torch\_inductor\codegen\multi_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9315214Z copying torch\_inductor\codegen\python_wrapper_mtia.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9324691Z copying torch\_inductor\codegen\segmented_tree.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9335160Z copying torch\_inductor\codegen\simd.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9369205Z copying torch\_inductor\codegen\simd_kernel_features.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9383298Z copying torch\_inductor\codegen\subgraph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9393668Z copying torch\_inductor\codegen\triton.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9457394Z copying torch\_inductor\codegen\triton_combo_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9480813Z copying torch\_inductor\codegen\triton_split_scan.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9491282Z copying torch\_inductor\codegen\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9500981Z copying torch\_inductor\codegen\wrapper.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9544367Z copying torch\_inductor\codegen\wrapper_fxir.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9557905Z copying torch\_inductor\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-08-26T20:11:35.9564268Z creating build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-08-26T20:11:35.9567831Z copying torch\_inductor\compile_worker\subproc_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-08-26T20:11:35.9581224Z copying torch\_inductor\compile_worker\tracked_process_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-08-26T20:11:35.9590699Z copying torch\_inductor\compile_worker\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-08-26T20:11:35.9601187Z copying torch\_inductor\compile_worker\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-08-26T20:11:35.9610037Z copying torch\_inductor\compile_worker\__main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-08-26T20:11:35.9624220Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:35.9627341Z copying torch\_inductor\fx_passes\b2b_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:35.9998853Z copying torch\_inductor\fx_passes\binary_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.0014808Z copying torch\_inductor\fx_passes\bucketing.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.0028591Z copying torch\_inductor\fx_passes\ddp_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.0460912Z copying torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.0476067Z copying torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.0485250Z copying torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.0494703Z copying torch\_inductor\fx_passes\freezing_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.0504217Z copying torch\_inductor\fx_passes\fsdp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.0520762Z copying torch\_inductor\fx_passes\fuse_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.0886934Z copying torch\_inductor\fx_passes\group_batch_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.1743955Z copying torch\_inductor\fx_passes\joint_graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2275886Z copying torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2662936Z copying torch\_inductor\fx_passes\misc_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2673612Z copying torch\_inductor\fx_passes\mkldnn_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2700114Z copying torch\_inductor\fx_passes\numeric_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2710198Z copying torch\_inductor\fx_passes\pad_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2730802Z copying torch\_inductor\fx_passes\post_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2755943Z copying torch\_inductor\fx_passes\pre_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2769899Z copying torch\_inductor\fx_passes\quantization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2812691Z copying torch\_inductor\fx_passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2830964Z copying torch\_inductor\fx_passes\replace_random.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2839823Z copying torch\_inductor\fx_passes\split_cat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2880651Z copying torch\_inductor\fx_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-08-26T20:11:36.2887401Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-08-26T20:11:36.2890466Z copying torch\_inductor\kernel\bmm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-08-26T20:11:36.2956616Z copying torch\_inductor\kernel\conv.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-08-26T20:11:36.2981257Z copying torch\_inductor\kernel\mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-08-26T20:11:36.3001949Z copying torch\_inductor\kernel\mm_common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-08-26T20:11:36.3010963Z copying torch\_inductor\kernel\mm_grouped.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-08-26T20:11:36.3028334Z copying torch\_inductor\kernel\mm_plus_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-08-26T20:11:36.3036953Z copying torch\_inductor\kernel\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-08-26T20:11:36.3044171Z creating build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-08-26T20:11:36.3047297Z copying torch\_inductor\package\build_package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-08-26T20:11:36.3052990Z copying torch\_inductor\package\package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-08-26T20:11:36.3068018Z copying torch\_inductor\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-08-26T20:11:36.3076506Z creating build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3079706Z copying torch\_inductor\runtime\autotune_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3094618Z copying torch\_inductor\runtime\benchmarking.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3104384Z copying torch\_inductor\runtime\cache_dir_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3117880Z copying torch\_inductor\runtime\compile_tasks.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3131569Z copying torch\_inductor\runtime\coordinate_descent_tuner.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3142533Z copying torch\_inductor\runtime\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3151749Z copying torch\_inductor\runtime\halide_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3161180Z copying torch\_inductor\runtime\hints.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3171458Z copying torch\_inductor\runtime\runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3181682Z copying torch\_inductor\runtime\static_cuda_launcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3195791Z copying torch\_inductor\runtime\triton_compat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3205034Z copying torch\_inductor\runtime\triton_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3219099Z copying torch\_inductor\runtime\triton_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3258089Z copying torch\_inductor\runtime\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-08-26T20:11:36.3265391Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:11:36.3268775Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:11:36.3281066Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:11:36.3290488Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:11:36.3309267Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:11:36.3327383Z copying torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:11:36.3336665Z copying torch\_inductor\autoheuristic\artifacts\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:11:36.3344238Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3347486Z copying torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3358013Z copying torch\_inductor\codegen\cuda\cuda_env.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3368429Z copying torch\_inductor\codegen\cuda\cuda_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3388002Z copying torch\_inductor\codegen\cuda\cuda_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3402264Z copying torch\_inductor\codegen\cuda\cutlass_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3412000Z copying torch\_inductor\codegen\cuda\cutlass_presets.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3422002Z copying torch\_inductor\codegen\cuda\cutlass_python_evt.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3431288Z copying torch\_inductor\codegen\cuda\cutlass_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3445820Z copying torch\_inductor\codegen\cuda\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3455228Z copying torch\_inductor\codegen\cuda\gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3482222Z copying torch\_inductor\codegen\cuda\serialization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3499405Z copying torch\_inductor\codegen\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-08-26T20:11:36.3505945Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl 2025-08-26T20:11:36.3509422Z copying torch\_inductor\codegen\cutedsl\cutedsl_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl 2025-08-26T20:11:36.3519717Z copying torch\_inductor\codegen\cutedsl\cutedsl_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl 2025-08-26T20:11:36.3530405Z copying torch\_inductor\codegen\cutedsl\cutedsl_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl 2025-08-26T20:11:36.3546281Z copying torch\_inductor\codegen\cutedsl\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl 2025-08-26T20:11:36.3556710Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mtia 2025-08-26T20:11:36.3559659Z copying torch\_inductor\codegen\mtia\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mtia 2025-08-26T20:11:36.3570206Z copying torch\_inductor\codegen\mtia\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mtia 2025-08-26T20:11:36.3579163Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3581097Z copying torch\_inductor\codegen\rocm\ck_conv_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3595483Z copying torch\_inductor\codegen\rocm\ck_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3608329Z copying torch\_inductor\codegen\rocm\ck_tile_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3617462Z copying torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3643381Z copying torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3661268Z copying torch\_inductor\codegen\rocm\compile_command.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3670665Z copying torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3680229Z copying torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3689148Z copying torch\_inductor\codegen\rocm\rocm_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3700037Z copying torch\_inductor\codegen\rocm\rocm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3709361Z copying torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3718539Z copying torch\_inductor\codegen\rocm\rocm_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3728968Z copying torch\_inductor\codegen\rocm\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-08-26T20:11:36.3734602Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-08-26T20:11:36.3737806Z copying torch\_inductor\codegen\xpu\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-08-26T20:11:36.3748519Z copying torch\_inductor\codegen\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-08-26T20:11:36.3754661Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-08-26T20:11:36.3758045Z 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-08-26T20:11:36.3767705Z 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-08-26T20:11:36.3782144Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-08-26T20:11:36.3791758Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports 2025-08-26T20:11:36.3794932Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports 2025-08-26T20:11:36.3801061Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-08-26T20:11:36.3804223Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cuda.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-08-26T20:11:36.3810205Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cudart.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-08-26T20:11:36.3816020Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-08-26T20:11:36.3822825Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot 2025-08-26T20:11:36.3826069Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot 2025-08-26T20:11:36.3837740Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-08-26T20:11:36.3841969Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\special.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-08-26T20:11:36.3847364Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-08-26T20:11:36.3858815Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.3861561Z copying torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.3871340Z copying torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.3885109Z copying torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.3897910Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.3907816Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.3921328Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.3931447Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4058509Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4068888Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4079068Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4093007Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4110921Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4123830Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4145526Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4156160Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4166667Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4181025Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4221434Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4231331Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4245428Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4255259Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4265558Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4276306Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4286417Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4297856Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4313857Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4325700Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4335835Z copying torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:11:36.4342049Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-08-26T20:11:36.4345018Z copying torch\_inductor\kernel\flex\common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-08-26T20:11:36.4355608Z copying torch\_inductor\kernel\flex\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-08-26T20:11:36.4373731Z copying torch\_inductor\kernel\flex\flex_cpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-08-26T20:11:36.4383981Z copying torch\_inductor\kernel\flex\flex_decoding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-08-26T20:11:36.4393416Z copying torch\_inductor\kernel\flex\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-08-26T20:11:36.4404851Z creating build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-08-26T20:11:36.4407854Z copying torch\_numpy\testing\utils.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-08-26T20:11:36.4434800Z copying torch\_numpy\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-08-26T20:11:36.4441411Z creating build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-08-26T20:11:36.4445210Z copying torch\_refs\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-08-26T20:11:36.4456560Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-08-26T20:11:36.4459328Z copying torch\_refs\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-08-26T20:11:36.4466059Z creating build\lib.win-amd64-cpython-39\torch\_refs\special 2025-08-26T20:11:36.4472985Z copying torch\_refs\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\special 2025-08-26T20:11:36.4488241Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-08-26T20:11:36.4491562Z copying torch\_refs\nn\functional\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-08-26T20:11:36.4511387Z creating build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-08-26T20:11:36.4515475Z copying torch\_vendor\packaging\version.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-08-26T20:11:36.4533124Z copying torch\_vendor\packaging\_structures.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-08-26T20:11:36.4542624Z copying torch\_vendor\packaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-08-26T20:11:36.4549467Z creating build\lib.win-amd64-cpython-39\torchgen\aoti 2025-08-26T20:11:36.4570739Z copying torchgen\aoti\fallback_ops.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-08-26T20:11:36.4581176Z copying torchgen\aoti\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-08-26T20:11:36.4588320Z creating build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4591245Z copying torchgen\api\autograd.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4608167Z copying torchgen\api\cpp.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4627061Z copying torchgen\api\dispatcher.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4640437Z copying torchgen\api\functionalization.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4761491Z copying torchgen\api\lazy.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4778334Z copying torchgen\api\meta.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4783853Z copying torchgen\api\native.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4793211Z copying torchgen\api\python.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4820365Z copying torchgen\api\structured.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4829790Z copying torchgen\api\translate.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4842638Z copying torchgen\api\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4852187Z copying torchgen\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4861429Z copying torchgen\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-08-26T20:11:36.4867786Z creating build\lib.win-amd64-cpython-39\torchgen\dest 2025-08-26T20:11:36.4870670Z copying torchgen\dest\lazy_ir.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-08-26T20:11:36.4886522Z copying torchgen\dest\lazy_ts_lowering.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-08-26T20:11:36.4895541Z copying torchgen\dest\native_functions.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-08-26T20:11:36.4904315Z copying torchgen\dest\register_dispatch_key.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-08-26T20:11:36.4931076Z copying torchgen\dest\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-08-26T20:11:36.4944726Z copying torchgen\dest\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-08-26T20:11:36.4955201Z creating build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-08-26T20:11:36.4958329Z copying torchgen\operator_versions\gen_mobile_upgraders.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-08-26T20:11:36.4975627Z copying torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-08-26T20:11:36.4981265Z copying torchgen\operator_versions\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-08-26T20:11:36.4992246Z creating build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-08-26T20:11:36.4995466Z copying torchgen\selective_build\operator.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-08-26T20:11:36.5004826Z copying torchgen\selective_build\selector.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-08-26T20:11:36.5039965Z copying torchgen\selective_build\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-08-26T20:11:36.5040572Z creating build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-08-26T20:11:36.5041175Z copying torchgen\static_runtime\config.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-08-26T20:11:36.5041907Z copying torchgen\static_runtime\generator.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-08-26T20:11:36.5058671Z copying torchgen\static_runtime\gen_static_runtime_ops.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-08-26T20:11:36.5075764Z copying torchgen\static_runtime\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-08-26T20:11:36.5081623Z creating build\lib.win-amd64-cpython-39\torchgen\api\types 2025-08-26T20:11:36.5084649Z copying torchgen\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-08-26T20:11:36.5095120Z copying torchgen\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-08-26T20:11:36.5104707Z copying torchgen\api\types\types_base.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-08-26T20:11:36.5113601Z copying torchgen\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-08-26T20:11:37.3361202Z copying torch\return_types.pyi -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:37.3385996Z copying torch\_VF.pyi -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:37.7120562Z copying torch\py.typed -> build\lib.win-amd64-cpython-39\torch 2025-08-26T20:11:37.7125921Z creating build\lib.win-amd64-cpython-39\torch\bin 2025-08-26T20:11:37.7129000Z copying torch\bin\FileStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-08-26T20:11:37.7140056Z copying torch\bin\ProcessGroupGlooAsyncTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-08-26T20:11:37.7150017Z copying torch\bin\ProcessGroupGlooTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-08-26T20:11:37.7248636Z copying torch\bin\protoc.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-08-26T20:11:37.7285434Z copying torch\bin\TCPStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-08-26T20:11:37.7296552Z copying torch\bin\test_api.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-08-26T20:11:37.7391915Z copying torch\bin\test_jit.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-08-26T20:11:37.7446703Z copying torch\bin\test_lazy.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-08-26T20:11:37.7476094Z copying torch\bin\test_nativert.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-08-26T20:11:37.7503503Z creating build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7506157Z copying torch\test\apply_utils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7521589Z copying torch\test\atest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7533086Z copying torch\test\backend_fallback_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7544977Z copying torch\test\basic.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7640479Z copying torch\test\broadcast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7651064Z copying torch\test\c10_accumulate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7665885Z copying torch\test\c10_AllocatorConfig_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7675878Z copying torch\test\c10_ArrayRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7685633Z copying torch\test\c10_bfloat16_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7695638Z copying torch\test\c10_Bitset_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7710237Z copying torch\test\c10_bit_cast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7720069Z copying torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7729587Z copying torch\test\c10_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7739791Z copying torch\test\c10_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7750301Z copying torch\test\c10_ConstexprCrc_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7760082Z copying torch\test\c10_cow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7770580Z copying torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.7780446Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8337181Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8348837Z copying torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8358869Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8368883Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8379106Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8388762Z copying torch\test\c10_cuda_CUDATest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8398685Z copying torch\test\c10_DeadlockDetection_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8449377Z copying torch\test\c10_DeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8459465Z copying torch\test\c10_Device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8471650Z copying torch\test\c10_DispatchKeySet_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8482106Z copying torch\test\c10_Enumerate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8492411Z copying torch\test\c10_error_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8506678Z copying torch\test\c10_exception_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8516458Z copying torch\test\c10_flags_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8526448Z copying torch\test\c10_generic_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8546390Z copying torch\test\c10_Half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8556408Z copying torch\test\c10_InlineDeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8566565Z copying torch\test\c10_InlineStreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8576460Z copying torch\test\c10_IntrusiveList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8593219Z copying torch\test\c10_intrusive_ptr_benchmark.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8604792Z copying torch\test\c10_intrusive_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8632360Z copying torch\test\c10_irange_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8642667Z copying torch\test\c10_lazy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8673132Z copying torch\test\c10_LeftRight_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8683950Z copying torch\test\c10_logging_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8694214Z copying torch\test\c10_Metaprogramming_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8704550Z copying torch\test\c10_NetworkFlow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8714767Z copying torch\test\c10_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8734133Z copying torch\test\c10_ordered_preserving_dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8744641Z copying torch\test\c10_registry_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8755895Z copying torch\test\c10_Scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8766994Z copying torch\test\c10_Semaphore_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8791139Z copying torch\test\c10_SizesAndStrides_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8801489Z copying torch\test\c10_small_vector_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8818051Z copying torch\test\c10_ssize_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8827774Z copying torch\test\c10_StreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8837660Z copying torch\test\c10_string_util_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8847905Z copying torch\test\c10_string_view_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8857421Z copying torch\test\c10_SymInt_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8867909Z copying torch\test\c10_Synchronized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8895222Z copying torch\test\c10_tempfile_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8905747Z copying torch\test\c10_ThreadLocal_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8914805Z copying torch\test\c10_typeid_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8924998Z copying torch\test\c10_TypeIndex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8934893Z copying torch\test\c10_TypeList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8945587Z copying torch\test\c10_TypeTraits_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8954926Z copying torch\test\CppSignature_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8964622Z copying torch\test\cpu_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.8980324Z copying torch\test\cpu_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9001515Z copying torch\test\cpu_profiling_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9011621Z copying torch\test\cpu_rng_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9024328Z copying torch\test\cuda_allocatorTraceTracker_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9038800Z copying torch\test\cuda_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9049110Z copying torch\test\cuda_apply_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9059122Z copying torch\test\cuda_atomic_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9069973Z copying torch\test\cuda_caching_host_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9080408Z copying torch\test\cuda_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9091867Z copying torch\test\cuda_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9102488Z copying torch\test\cuda_cub_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9112862Z copying torch\test\cuda_cudnn_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9129773Z copying torch\test\cuda_device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9138533Z copying torch\test\cuda_distributions_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9150042Z copying torch\test\cuda_dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9160220Z copying torch\test\cuda_exchange_device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9170021Z copying torch\test\cuda_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9180536Z copying torch\test\cuda_half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9201424Z copying torch\test\cuda_integer_divider_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9211153Z copying torch\test\cuda_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9230021Z copying torch\test\cuda_packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9240262Z copying torch\test\cuda_reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9250403Z copying torch\test\cuda_stream_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9260432Z copying torch\test\cuda_vectorized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9274962Z copying torch\test\Dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9285970Z copying torch\test\Dimname_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9296058Z copying torch\test\dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9305991Z copying torch\test\extension_backend_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9321236Z copying torch\test\half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9331740Z copying torch\test\IListRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9342777Z copying torch\test\inline_container_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9353502Z copying torch\test\ivalue_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9366353Z copying torch\test\KernelFunction_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9377070Z copying torch\test\kernel_function_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9391066Z copying torch\test\kernel_function_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9415207Z copying torch\test\kernel_lambda_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9434484Z copying torch\test\kernel_lambda_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9447708Z copying torch\test\kernel_stackbased_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9458548Z copying torch\test\lazy_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9468108Z copying torch\test\legacy_vmap_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9483592Z copying torch\test\List_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9496698Z copying torch\test\make_boxed_from_unboxed_functor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9509488Z copying torch\test\math_kernel_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9519264Z copying torch\test\MaybeOwned_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9530118Z copying torch\test\memory_format_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9540428Z copying torch\test\memory_overlapping_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9550474Z copying torch\test\mobile_memory_cleanup.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9560393Z copying torch\test\NamedTensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9574963Z copying torch\test\native_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9585352Z copying torch\test\operators_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9595565Z copying torch\test\operator_name_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9617393Z copying torch\test\op_allowlist_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9620302Z copying torch\test\op_registration_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9647780Z copying torch\test\packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9657885Z copying torch\test\pow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9669101Z copying torch\test\quantized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9684054Z copying torch\test\reduce_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9694321Z copying torch\test\reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9704643Z copying torch\test\scalar_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9714860Z copying torch\test\scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9733627Z copying torch\test\StorageUtils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9743559Z copying torch\test\stride_properties_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9753633Z copying torch\test\tensor_iterator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9765836Z copying torch\test\test_parallel.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9786022Z copying torch\test\thread_init_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9795327Z copying torch\test\type_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9805701Z copying torch\test\type_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9816236Z copying torch\test\undefined_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9831745Z copying torch\test\verify_api_visibility.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9853199Z copying torch\test\weakref_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9863237Z copying torch\test\wrapdim_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9873892Z copying torch\test\xla_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-08-26T20:11:37.9885121Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:37.9897003Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:37.9909098Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:37.9926997Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:37.9937713Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-08-26T20:11:37.9944428Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:37.9955876Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-08-26T20:11:37.9974760Z creating build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:37.9977412Z copying torch\_C\_aoti.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:37.9995769Z copying torch\_C\_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0007239Z copying torch\_C\_cpu.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0013900Z copying torch\_C\_cudnn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0020162Z copying torch\_C\_cusparselt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0042366Z copying torch\_C\_distributed_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0054535Z copying torch\_C\_distributed_c10d.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0070303Z copying torch\_C\_distributed_rpc.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0085739Z copying torch\_C\_distributed_rpc_testing.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0095438Z copying torch\_C\_functions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0105384Z copying torch\_C\_functorch.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0115262Z copying torch\_C\_instruction_counter.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0125042Z copying torch\_C\_itt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0131417Z copying torch\_C\_jit_tree_views.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0142675Z copying torch\_C\_lazy.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0152661Z copying torch\_C\_lazy_ts_backend.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0162240Z copying torch\_C\_monitor.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0172026Z copying torch\_C\_nn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0183005Z copying torch\_C\_nvtx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0189185Z copying torch\_C\_onnx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0203153Z copying torch\_C\_profiler.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.0218117Z copying torch\_C\_VariableFunctions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.2230093Z copying torch\_C\_verbose.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.2252079Z copying torch\_C\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-08-26T20:11:38.2824339Z creating build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-08-26T20:11:38.2827562Z copying torch\_C\_dynamo\compiled_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-08-26T20:11:38.2833896Z copying torch\_C\_dynamo\eval_frame.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-08-26T20:11:38.2845852Z copying torch\_C\_dynamo\guards.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-08-26T20:11:38.2861836Z copying torch\_C\_dynamo\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-08-26T20:11:38.2867283Z creating build\lib.win-amd64-cpython-39\torch\_C\_export 2025-08-26T20:11:38.2870574Z copying torch\_C\_export\pt2_archive_constants.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-08-26T20:11:38.2880453Z copying torch\_C\_export\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-08-26T20:11:38.2885950Z creating build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-08-26T20:11:38.2889451Z copying torch\_C_flatbuffer\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-08-26T20:11:38.2898829Z creating build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:38.2901189Z copying torch\lib\shm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:38.2907412Z copying torch\lib\shm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:38.2913142Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-08-26T20:11:38.2916252Z copying torch\lib\libshm\alloc_info.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-08-26T20:11:38.2922370Z copying torch\lib\libshm\err.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-08-26T20:11:38.2937605Z copying torch\lib\libshm\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-08-26T20:11:38.2947352Z copying torch\lib\libshm\socket.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-08-26T20:11:38.2956810Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-08-26T20:11:38.2959728Z copying torch\lib\libshm_windows\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-08-26T20:11:38.2964970Z creating build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.2968113Z copying torch\include\advisor-annotate.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.2981794Z copying torch\include\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.2988800Z copying torch\include\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.2995018Z copying torch\include\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3001279Z copying torch\include\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3021967Z copying torch\include\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3028322Z copying torch\include\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3034515Z copying torch\include\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3040963Z copying torch\include\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3048047Z copying torch\include\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3088658Z copying torch\include\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3095010Z copying torch\include\experiments-config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3109054Z copying torch\include\fp16.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3114920Z copying torch\include\fxdiv.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3121330Z copying torch\include\ittnotify-zca.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3127820Z copying torch\include\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3142792Z copying torch\include\jitprofiling.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3149874Z copying torch\include\libittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3156578Z copying torch\include\libshm.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3162913Z copying torch\include\psimd.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3169674Z copying torch\include\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3177230Z copying torch\include\sleef.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3187945Z copying torch\include\xnnpack.h -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:38.3720838Z creating build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3721520Z copying torch\include\ATen\AccumulateType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3722221Z copying torch\include\ATen\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3722860Z copying torch\include\ATen\ATen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3723504Z copying torch\include\ATen\autocast_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3724160Z copying torch\include\ATen\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3724803Z copying torch\include\ATen\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3725547Z copying torch\include\ATen\BlasBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3726255Z copying torch\include\ATen\CachedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3727104Z copying torch\include\ATen\ceil_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3727767Z copying torch\include\ATen\code_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3728441Z copying torch\include\ATen\CollapseDims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3729256Z copying torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3730215Z copying torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3731330Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3732504Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3733545Z copying torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3734507Z copying torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3735531Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3736624Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3737503Z copying torch\include\ATen\Config.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3738140Z copying torch\include\ATen\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3738828Z copying torch\include\ATen\cpp_custom_type_hack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3739548Z copying torch\include\ATen\CPUApplyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3740272Z copying torch\include\ATen\CPUFixedAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3740990Z copying torch\include\ATen\CPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3741686Z copying torch\include\ATen\CPUFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3742412Z copying torch\include\ATen\CPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3743141Z copying torch\include\ATen\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3743845Z copying torch\include\ATen\CUDAFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3744521Z copying torch\include\ATen\Device.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3745193Z copying torch\include\ATen\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3745913Z copying torch\include\ATen\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3746571Z copying torch\include\ATen\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3747201Z copying torch\include\ATen\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3747847Z copying torch\include\ATen\Dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3748490Z copying torch\include\ATen\Dispatch_v2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3749126Z copying torch\include\ATen\div_rtn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3749776Z copying torch\include\ATen\DLConvertor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3750410Z copying torch\include\ATen\dlpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3752119Z copying torch\include\ATen\DynamicLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3752886Z copying torch\include\ATen\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3753564Z copying torch\include\ATen\ExpandBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3754248Z copying torch\include\ATen\ExpandUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3754909Z copying torch\include\ATen\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3755902Z copying torch\include\ATen\FunctionalStorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3756760Z copying torch\include\ATen\FunctionalTensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3763468Z copying torch\include\ATen\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3770623Z copying torch\include\ATen\FuncTorchTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3782341Z copying torch\include\ATen\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3788500Z copying torch\include\ATen\InferSize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3795024Z copying torch\include\ATen\InitialTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3864276Z copying torch\include\ATen\jiterator_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3877360Z copying torch\include\ATen\jit_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3883749Z copying torch\include\ATen\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3890088Z copying torch\include\ATen\LegacyBatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3896689Z copying torch\include\ATen\LegacyBatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3903055Z copying torch\include\ATen\LegacyVmapMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3909570Z copying torch\include\ATen\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3916076Z copying torch\include\ATen\LinalgBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3922721Z copying torch\include\ATen\MapAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.3933261Z copying torch\include\ATen\MatrixRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4027428Z copying torch\include\ATen\MemoryOverlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4033769Z copying torch\include\ATen\MetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4041416Z copying torch\include\ATen\MetaFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4051069Z copying torch\include\ATen\MethodOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4058720Z copying torch\include\ATen\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4064802Z copying torch\include\ATen\NamedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4070571Z copying torch\include\ATen\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4078191Z copying torch\include\ATen\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4131242Z copying torch\include\ATen\NestedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4147766Z copying torch\include\ATen\NumericUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4154099Z copying torch\include\ATen\OpaqueTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4164783Z copying torch\include\ATen\Operators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4172570Z copying torch\include\ATen\OpMathType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4178830Z copying torch\include\ATen\PadNd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4184694Z copying torch\include\ATen\Parallel-inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4196019Z copying torch\include\ATen\Parallel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4202430Z copying torch\include\ATen\ParallelFuture.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4208900Z copying torch\include\ATen\ParallelNative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4214727Z copying torch\include\ATen\ParallelOpenMP.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4231213Z copying torch\include\ATen\PTThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4237332Z copying torch\include\ATen\PythonTorchFunctionTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4243905Z copying torch\include\ATen\record_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4250839Z copying torch\include\ATen\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4280588Z copying torch\include\ATen\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4295130Z copying torch\include\ATen\ROCmFABackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4301549Z copying torch\include\ATen\SavedTensorHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4307937Z copying torch\include\ATen\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4318127Z copying torch\include\ATen\ScalarOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4324433Z copying torch\include\ATen\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4330701Z copying torch\include\ATen\SDPBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4336644Z copying torch\include\ATen\SequenceNumber.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4347360Z copying torch\include\ATen\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4358741Z copying torch\include\ATen\SparseCsrTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4362634Z copying torch\include\ATen\SparseCsrTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4369443Z copying torch\include\ATen\SparseTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4380442Z copying torch\include\ATen\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4386235Z copying torch\include\ATen\StorageUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4392537Z copying torch\include\ATen\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4398513Z copying torch\include\ATen\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4414824Z copying torch\include\ATen\TensorGeometry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4421305Z copying torch\include\ATen\TensorIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4428177Z copying torch\include\ATen\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4438461Z copying torch\include\ATen\TensorIteratorInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4445171Z copying torch\include\ATen\TensorMeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4452078Z copying torch\include\ATen\TensorNames.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4458569Z copying torch\include\ATen\TensorOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4464952Z copying torch\include\ATen\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4471489Z copying torch\include\ATen\TensorSubclassLikeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4478337Z copying torch\include\ATen\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4484863Z copying torch\include\ATen\ThreadLocalPythonObjects.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4491725Z copying torch\include\ATen\ThreadLocalState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4499316Z copying torch\include\ATen\TracerMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4505737Z copying torch\include\ATen\TypeDefault.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4511817Z copying torch\include\ATen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4518228Z copying torch\include\ATen\Version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4524273Z copying torch\include\ATen\VmapGeneratedPlumbing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4546359Z copying torch\include\ATen\WrapDimUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4552777Z copying torch\include\ATen\WrapDimUtilsMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-08-26T20:11:38.4558452Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4561283Z copying torch\include\ATen\core\alias_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4568601Z copying torch\include\ATen\core\Array.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4574550Z copying torch\include\ATen\core\ATenGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4580599Z copying torch\include\ATen\core\ATenOpList.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4597574Z copying torch\include\ATen\core\ATen_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4603938Z copying torch\include\ATen\core\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4611550Z copying torch\include\ATen\core\ATen_pch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4617840Z copying torch\include\ATen\core\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4624069Z copying torch\include\ATen\core\blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4631857Z copying torch\include\ATen\core\builtin_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4637797Z copying torch\include\ATen\core\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4674510Z copying torch\include\ATen\core\CheckMemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4675293Z copying torch\include\ATen\core\class_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4676031Z copying torch\include\ATen\core\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4676843Z copying torch\include\ATen\core\DeprecatedTypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4677950Z copying torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4680705Z copying torch\include\ATen\core\Dict.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4687136Z copying torch\include\ATen\core\Dict_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4693816Z copying torch\include\ATen\core\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4700398Z copying torch\include\ATen\core\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4706380Z copying torch\include\ATen\core\DistributionsHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4712921Z copying torch\include\ATen\core\dynamic_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4729742Z copying torch\include\ATen\core\enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4735628Z copying torch\include\ATen\core\enum_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4741953Z copying torch\include\ATen\core\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4748267Z copying torch\include\ATen\core\function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4754486Z copying torch\include\ATen\core\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4761133Z copying torch\include\ATen\core\function_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4768545Z copying torch\include\ATen\core\function_schema_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4775058Z copying torch\include\ATen\core\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4781585Z copying torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4787748Z copying torch\include\ATen\core\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4794329Z copying torch\include\ATen\core\IListRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4811179Z copying torch\include\ATen\core\IListRef_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4817639Z copying torch\include\ATen\core\interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4823949Z copying torch\include\ATen\core\interned_strings_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4830429Z copying torch\include\ATen\core\ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4837531Z copying torch\include\ATen\core\ivalue_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4845160Z copying torch\include\ATen\core\ivalue_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4851513Z copying torch\include\ATen\core\jit_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4858877Z copying torch\include\ATen\core\jit_type_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4866098Z copying torch\include\ATen\core\LegacyTypeDispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4872991Z copying torch\include\ATen\core\List.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4879724Z copying torch\include\ATen\core\List_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4886330Z copying torch\include\ATen\core\MT19937RNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4903287Z copying torch\include\ATen\core\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4910194Z copying torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4916571Z copying torch\include\ATen\core\operator_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4922843Z copying torch\include\ATen\core\PhiloxRNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4929378Z copying torch\include\ATen\core\PythonFallbackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4936000Z copying torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4942125Z copying torch\include\ATen\core\qualified_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4948634Z copying torch\include\ATen\core\QuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4955279Z copying torch\include\ATen\core\Range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4961701Z copying torch\include\ATen\core\Reduction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4977830Z copying torch\include\ATen\core\rref_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4984340Z copying torch\include\ATen\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4990224Z copying torch\include\ATen\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.4996312Z copying torch\include\ATen\core\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5003003Z copying torch\include\ATen\core\symbol.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5009554Z copying torch\include\ATen\core\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5015913Z copying torch\include\ATen\core\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5022472Z copying torch\include\ATen\core\TensorBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5030351Z copying torch\include\ATen\core\TensorBody.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5040412Z copying torch\include\ATen\core\TorchDispatchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5046511Z copying torch\include\ATen\core\TransformationHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5072328Z copying torch\include\ATen\core\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5078378Z copying torch\include\ATen\core\type_factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5085033Z copying torch\include\ATen\core\type_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5091551Z copying torch\include\ATen\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5098393Z copying torch\include\ATen\core\UnsafeFromTH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5104962Z copying torch\include\ATen\core\VariableHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5111551Z copying torch\include\ATen\core\Variadic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5118334Z copying torch\include\ATen\core\Vitals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-08-26T20:11:38.5123943Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-08-26T20:11:38.5127066Z copying torch\include\ATen\core\boxing\BoxedKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-08-26T20:11:38.5133598Z copying torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-08-26T20:11:38.5154476Z copying torch\include\ATen\core\boxing\KernelFunction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-08-26T20:11:38.5155388Z copying torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-08-26T20:11:38.5164147Z copying torch\include\ATen\core\boxing\OperatorKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-08-26T20:11:38.5169856Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-08-26T20:11:38.5172921Z copying torch\include\ATen\core\boxing\impl\boxing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-08-26T20:11:38.5179805Z 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-08-26T20:11:38.5186633Z copying torch\include\ATen\core\boxing\impl\test_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-08-26T20:11:38.5193220Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-08-26T20:11:38.5210354Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-08-26T20:11:38.5215724Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-08-26T20:11:38.5218638Z copying torch\include\ATen\core\dispatch\CppSignature.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-08-26T20:11:38.5224782Z copying torch\include\ATen\core\dispatch\Dispatcher.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-08-26T20:11:38.5236629Z copying torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-08-26T20:11:38.5243192Z copying torch\include\ATen\core\dispatch\ObservedOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-08-26T20:11:38.5259273Z copying torch\include\ATen\core\dispatch\OperatorEntry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-08-26T20:11:38.5265616Z copying torch\include\ATen\core\dispatch\OperatorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-08-26T20:11:38.5271978Z copying torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-08-26T20:11:38.5277445Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-08-26T20:11:38.5280398Z copying torch\include\ATen\core\op_registration\adaption.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-08-26T20:11:38.5286681Z copying torch\include\ATen\core\op_registration\infer_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-08-26T20:11:38.5292984Z copying torch\include\ATen\core\op_registration\op_allowlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-08-26T20:11:38.5299727Z copying torch\include\ATen\core\op_registration\op_registration.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-08-26T20:11:38.5315140Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-08-26T20:11:38.5318015Z copying torch\include\ATen\cpu\FlushDenormal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-08-26T20:11:38.5324404Z copying torch\include\ATen\cpu\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-08-26T20:11:38.5330496Z copying torch\include\ATen\cpu\vml.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-08-26T20:11:38.5335905Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5338943Z copying torch\include\ATen\cpu\vec\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5344768Z copying torch\include\ATen\cpu\vec\functional_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5351229Z copying torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5358185Z copying torch\include\ATen\cpu\vec\intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5374661Z copying torch\include\ATen\cpu\vec\vec.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5381081Z copying torch\include\ATen\cpu\vec\vec_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5388429Z copying torch\include\ATen\cpu\vec\vec_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5394708Z copying torch\include\ATen\cpu\vec\vec_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5400981Z copying torch\include\ATen\cpu\vec\vec_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5408052Z copying torch\include\ATen\cpu\vec\vec_n.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5414725Z copying torch\include\ATen\cpu\vec\vec_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-08-26T20:11:38.5420337Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-08-26T20:11:38.5423317Z copying torch\include\ATen\cpu\vec\sve\sve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-08-26T20:11:38.5429633Z copying torch\include\ATen\cpu\vec\sve\vec_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-08-26T20:11:38.5436721Z copying torch\include\ATen\cpu\vec\sve\vec_common_sve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-08-26T20:11:38.5443261Z copying torch\include\ATen\cpu\vec\sve\vec_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-08-26T20:11:38.5460660Z copying torch\include\ATen\cpu\vec\sve\vec_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-08-26T20:11:38.5467770Z copying torch\include\ATen\cpu\vec\sve\vec_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-08-26T20:11:38.5508285Z copying torch\include\ATen\cpu\vec\sve\vec_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-08-26T20:11:38.5514286Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-08-26T20:11:38.5517237Z copying torch\include\ATen\cpu\vec\vec128\vec128.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-08-26T20:11:38.5523373Z copying torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-08-26T20:11:38.5530508Z copying torch\include\ATen\cpu\vec\vec128\vec128_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-08-26T20:11:38.5536980Z copying torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-08-26T20:11:38.5548160Z copying torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-08-26T20:11:38.5555329Z 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-08-26T20:11:38.5561183Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5564327Z copying torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5570819Z copying torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5576725Z copying torch\include\ATen\cpu\vec\vec256\vec256.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5583338Z copying torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5600609Z copying torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5607357Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5614578Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5621647Z copying torch\include\ATen\cpu\vec\vec256\vec256_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5652882Z copying torch\include\ATen\cpu\vec\vec256\vec256_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5659497Z copying torch\include\ATen\cpu\vec\vec256\vec256_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5666710Z copying torch\include\ATen\cpu\vec\vec256\vec256_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5674714Z copying torch\include\ATen\cpu\vec\vec256\vec256_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5681245Z copying torch\include\ATen\cpu\vec\vec256\vec256_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5687944Z copying torch\include\ATen\cpu\vec\vec256\vec256_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:38.5694516Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-08-26T20:11:38.5697553Z 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-08-26T20:11:38.5704264Z 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-08-26T20:11:38.5710780Z 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-08-26T20:11:38.5727985Z 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-08-26T20:11:38.5735151Z 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-08-26T20:11:38.5742024Z 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-08-26T20:11:38.5748855Z 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-08-26T20:11:38.5755877Z 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-08-26T20:11:38.5762398Z 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-08-26T20:11:38.5769240Z 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-08-26T20:11:38.5775735Z 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-08-26T20:11:38.5782661Z 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-08-26T20:11:38.5792019Z 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-08-26T20:11:38.5797932Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-08-26T20:11:38.5801870Z 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-08-26T20:11:38.5808756Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5811655Z copying torch\include\ATen\cpu\vec\vec512\vec512.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5818074Z copying torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5825652Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5832711Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5850541Z copying torch\include\ATen\cpu\vec\vec512\vec512_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5856962Z copying torch\include\ATen\cpu\vec\vec512\vec512_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5863757Z copying torch\include\ATen\cpu\vec\vec512\vec512_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5870688Z copying torch\include\ATen\cpu\vec\vec512\vec512_float8.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5877611Z copying torch\include\ATen\cpu\vec\vec512\vec512_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5885094Z copying torch\include\ATen\cpu\vec\vec512\vec512_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5891813Z copying torch\include\ATen\cpu\vec\vec512\vec512_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:38.5898294Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5901177Z copying torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5907470Z copying torch\include\ATen\cuda\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5913679Z copying torch\include\ATen\cuda\cub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5919854Z copying torch\include\ATen\cuda\CUDABlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5926541Z copying torch\include\ATen\cuda\CUDAConfig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5943607Z copying torch\include\ATen\cuda\CUDAContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5949721Z copying torch\include\ATen\cuda\CUDAContextLight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5956177Z copying torch\include\ATen\cuda\CUDADataType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5962621Z copying torch\include\ATen\cuda\CUDADevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5969302Z copying torch\include\ATen\cuda\CUDAEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5976063Z copying torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5982886Z copying torch\include\ATen\cuda\CUDAGraph.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5989324Z copying torch\include\ATen\cuda\CUDASparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.5995940Z copying torch\include\ATen\cuda\CUDASparseBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6003213Z copying torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6009481Z copying torch\include\ATen\cuda\CUDAUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6015808Z copying torch\include\ATen\cuda\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6022398Z copying torch\include\ATen\cuda\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6029105Z copying torch\include\ATen\cuda\jiterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6035550Z copying torch\include\ATen\cuda\jiterator_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6052718Z copying torch\include\ATen\cuda\llvm_jit_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6058968Z copying torch\include\ATen\cuda\PeerToPeerAccess.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6065379Z copying torch\include\ATen\cuda\PhiloxCudaState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6071598Z copying torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6077788Z copying torch\include\ATen\cuda\Sleep.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6083975Z copying torch\include\ATen\cuda\ThrustAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:38.6089511Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-08-26T20:11:38.6092369Z copying torch\include\ATen\cuda\detail\CUDAHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-08-26T20:11:38.6099185Z copying torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-08-26T20:11:38.6106089Z copying torch\include\ATen\cuda\detail\KernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-08-26T20:11:38.6112437Z copying torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-08-26T20:11:38.6128108Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-08-26T20:11:38.6131412Z copying torch\include\ATen\cuda\tunable\GemmCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-08-26T20:11:38.6138157Z copying torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-08-26T20:11:38.6145242Z copying torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-08-26T20:11:38.6152149Z copying torch\include\ATen\cuda\tunable\StreamTimer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-08-26T20:11:38.6168527Z copying torch\include\ATen\cuda\tunable\Tunable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-08-26T20:11:38.6175085Z copying torch\include\ATen\cuda\tunable\TunableGemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-08-26T20:11:38.6181520Z copying torch\include\ATen\cuda\tunable\TunableOp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-08-26T20:11:38.6187198Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-08-26T20:11:38.6190136Z copying torch\include\ATen\cudnn\cudnn-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-08-26T20:11:38.6196046Z copying torch\include\ATen\cudnn\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-08-26T20:11:38.6202351Z copying torch\include\ATen\cudnn\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-08-26T20:11:38.6208423Z copying torch\include\ATen\cudnn\Handles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-08-26T20:11:38.6214266Z copying torch\include\ATen\cudnn\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-08-26T20:11:38.6230427Z copying torch\include\ATen\cudnn\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-08-26T20:11:38.6235847Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6238602Z copying torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6246298Z copying torch\include\ATen\detail\CUDAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6251460Z copying torch\include\ATen\detail\FunctionTraits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6267347Z copying torch\include\ATen\detail\HIPHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6273585Z copying torch\include\ATen\detail\HPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6285064Z copying torch\include\ATen\detail\IPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6291472Z copying torch\include\ATen\detail\MAIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6297728Z copying torch\include\ATen\detail\MPSHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6304172Z copying torch\include\ATen\detail\MTIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6310812Z copying torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6317167Z copying torch\include\ATen\detail\XPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-08-26T20:11:38.6322598Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6325717Z copying torch\include\ATen\functorch\ADInterpreters.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6332366Z copying torch\include\ATen\functorch\BatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6338810Z copying torch\include\ATen\functorch\BatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6354672Z copying torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6361287Z copying torch\include\ATen\functorch\BatchRulesHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6368377Z copying torch\include\ATen\functorch\DynamicLayer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6374821Z copying torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6381024Z copying torch\include\ATen\functorch\Interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6387401Z copying torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6393678Z copying torch\include\ATen\functorch\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6399611Z copying torch\include\ATen\functorch\PlumbingHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6406209Z copying torch\include\ATen\functorch\TensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6412681Z copying torch\include\ATen\functorch\VmapInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-08-26T20:11:38.6418412Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-08-26T20:11:38.6422645Z copying torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-08-26T20:11:38.6429077Z copying torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-08-26T20:11:38.6435503Z copying torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-08-26T20:11:38.6451973Z copying torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-08-26T20:11:38.6457351Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-08-26T20:11:38.6460192Z copying torch\include\ATen\metal\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-08-26T20:11:38.6465431Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-08-26T20:11:38.6468312Z copying torch\include\ATen\miopen\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-08-26T20:11:38.6475300Z copying torch\include\ATen\miopen\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-08-26T20:11:38.6481768Z copying torch\include\ATen\miopen\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-08-26T20:11:38.6487883Z copying torch\include\ATen\miopen\miopen-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-08-26T20:11:38.6504798Z copying torch\include\ATen\miopen\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-08-26T20:11:38.6510656Z copying torch\include\ATen\miopen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-08-26T20:11:38.6515726Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6518591Z copying torch\include\ATen\mps\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6524822Z copying torch\include\ATen\mps\IndexKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6531135Z copying torch\include\ATen\mps\MPSAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6537897Z copying torch\include\ATen\mps\MPSAllocatorInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6554365Z copying torch\include\ATen\mps\MPSDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6560878Z copying torch\include\ATen\mps\MPSEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6567496Z copying torch\include\ATen\mps\MPSGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6573732Z copying torch\include\ATen\mps\MPSGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6579959Z copying torch\include\ATen\mps\MPSHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6586040Z copying torch\include\ATen\mps\MPSProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6592774Z copying torch\include\ATen\mps\MPSStream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-08-26T20:11:38.6598300Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6601139Z copying torch\include\ATen\native\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6607633Z copying torch\include\ATen\native\AdaptivePooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6614069Z copying torch\include\ATen\native\AmpKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6620470Z copying torch\include\ATen\native\BatchLinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6637241Z copying torch\include\ATen\native\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6643185Z copying torch\include\ATen\native\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6649924Z copying torch\include\ATen\native\BucketizationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6685680Z copying torch\include\ATen\native\CanUse32BitIndexMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6686603Z copying torch\include\ATen\native\ComplexHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6687522Z copying torch\include\ATen\native\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6688475Z copying torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6689381Z copying torch\include\ATen\native\ConvolutionMM3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6693152Z copying torch\include\ATen\native\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6699851Z copying torch\include\ATen\native\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6705987Z copying torch\include\ATen\native\CPUBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6712603Z copying torch\include\ATen\native\CPUFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6718834Z copying torch\include\ATen\native\Cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6725113Z copying torch\include\ATen\native\DilatedConvolutionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6731483Z copying torch\include\ATen\native\DispatchStub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6738639Z copying torch\include\ATen\native\Distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6744870Z copying torch\include\ATen\native\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6761715Z copying torch\include\ATen\native\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6768653Z copying torch\include\ATen\native\EmbeddingBag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6774970Z copying torch\include\ATen\native\Fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6780904Z copying torch\include\ATen\native\ForeachUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6787282Z copying torch\include\ATen\native\FractionalMaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6793818Z copying torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6799763Z copying torch\include\ATen\native\FusedAdagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6806113Z copying torch\include\ATen\native\FusedAdam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6812537Z copying torch\include\ATen\native\FusedSGD.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6818592Z copying torch\include\ATen\native\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6824896Z copying torch\include\ATen\native\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6841410Z copying torch\include\ATen\native\GridSamplerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6847836Z copying torch\include\ATen\native\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6854056Z copying torch\include\ATen\native\Histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6860234Z copying torch\include\ATen\native\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6866534Z copying torch\include\ATen\native\im2col_shape_check.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6873053Z copying torch\include\ATen\native\IndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6879455Z copying torch\include\ATen\native\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6885802Z copying torch\include\ATen\native\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6892083Z copying torch\include\ATen\native\Lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6898270Z copying torch\include\ATen\native\LinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6904714Z copying torch\include\ATen\native\LinearAlgebraUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6921035Z copying torch\include\ATen\native\LossMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6927763Z copying torch\include\ATen\native\Math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6936254Z copying torch\include\ATen\native\MathBitFallThroughLists.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6943150Z copying torch\include\ATen\native\MathBitsFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6949642Z copying torch\include\ATen\native\MaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6956199Z copying torch\include\ATen\native\NonEmptyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6962512Z copying torch\include\ATen\native\NonSymbolicBC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6969257Z copying torch\include\ATen\native\Normalization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6975795Z copying torch\include\ATen\native\Padding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6981906Z copying torch\include\ATen\native\PixelShuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.6998667Z copying torch\include\ATen\native\PointwiseOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7005087Z copying torch\include\ATen\native\Pool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7011756Z copying torch\include\ATen\native\Pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7018170Z copying torch\include\ATen\native\RangeFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7024241Z copying torch\include\ATen\native\RangeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7031163Z copying torch\include\ATen\native\ReduceAllOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7037858Z copying torch\include\ATen\native\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7044773Z copying torch\include\ATen\native\ReduceOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7051532Z copying torch\include\ATen\native\ReductionType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7058128Z copying torch\include\ATen\native\Repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7064530Z copying torch\include\ATen\native\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7070876Z copying torch\include\ATen\native\ResizeCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7095826Z copying torch\include\ATen\native\RNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7102233Z copying torch\include\ATen\native\ScatterGatherChecks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7108821Z copying torch\include\ATen\native\SegmentReduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7115620Z copying torch\include\ATen\native\SharedReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7122352Z copying torch\include\ATen\native\SobolEngineOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7129186Z copying torch\include\ATen\native\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7166545Z copying torch\include\ATen\native\SortingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7167400Z copying torch\include\ATen\native\SparseTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7169043Z copying torch\include\ATen\native\SpectralOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7175959Z copying torch\include\ATen\native\StridedRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7192049Z copying torch\include\ATen\native\TensorAdvancedIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7198599Z copying torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7205166Z copying torch\include\ATen\native\TensorCompare.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7211653Z copying torch\include\ATen\native\TensorConversions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7218426Z copying torch\include\ATen\native\TensorDimApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7224897Z copying torch\include\ATen\native\TensorFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7231586Z copying torch\include\ATen\native\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7237959Z copying torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7244693Z copying torch\include\ATen\native\TensorProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7261143Z copying torch\include\ATen\native\TensorShape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7267740Z copying torch\include\ATen\native\TensorTransformations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7274063Z copying torch\include\ATen\native\TopKImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7280310Z copying torch\include\ATen\native\TransposeType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7286659Z copying torch\include\ATen\native\TriangularOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7292931Z copying torch\include\ATen\native\TypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7299449Z copying torch\include\ATen\native\UnaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7307932Z copying torch\include\ATen\native\Unfold2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7317695Z copying torch\include\ATen\native\Unfold3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7323991Z copying torch\include\ATen\native\UnfoldBackward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7330180Z copying torch\include\ATen\native\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7337007Z copying torch\include\ATen\native\verbose_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7344383Z copying torch\include\ATen\native\vol2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-08-26T20:11:38.7349797Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-08-26T20:11:38.7355364Z 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-08-26T20:11:38.7362500Z 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-08-26T20:11:38.7368920Z 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-08-26T20:11:38.7374407Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7411535Z copying torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7417626Z copying torch\include\ATen\native\cpu\avx_mathfun.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7424320Z copying torch\include\ATen\native\cpu\CatKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7430414Z copying torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7440226Z copying torch\include\ATen\native\cpu\CopyKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7446421Z copying torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7452713Z copying torch\include\ATen\native\cpu\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7459519Z copying torch\include\ATen\native\cpu\Elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7465524Z copying torch\include\ATen\native\cpu\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7471774Z copying torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7478210Z copying torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7484735Z copying torch\include\ATen\native\cpu\Intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7490964Z copying torch\include\ATen\native\cpu\int_mm_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7497274Z copying torch\include\ATen\native\cpu\IsContiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7503841Z copying torch\include\ATen\native\cpu\LogAddExp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7510618Z copying torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7517148Z copying torch\include\ATen\native\cpu\Loops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7525080Z copying torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7530888Z copying torch\include\ATen\native\cpu\mixed_data_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7538228Z copying torch\include\ATen\native\cpu\moments_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7554816Z copying torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7560752Z copying torch\include\ATen\native\cpu\Reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7567719Z copying torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7574787Z copying torch\include\ATen\native\cpu\ReduceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7581546Z copying torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7587829Z copying torch\include\ATen\native\cpu\SerialStackImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7594404Z copying torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7601228Z copying torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7607683Z copying torch\include\ATen\native\cpu\StackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7616084Z copying torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7633702Z copying torch\include\ATen\native\cpu\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7648040Z copying torch\include\ATen\native\cpu\WeightNormKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7654429Z copying torch\include\ATen\native\cpu\zmath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-08-26T20:11:38.7660245Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7663121Z copying torch\include\ATen\native\cuda\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7690821Z copying torch\include\ATen\native\cuda\BinaryInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7691768Z copying torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7692652Z copying torch\include\ATen\native\cuda\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7699999Z copying torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7706954Z copying torch\include\ATen\native\cuda\CuFFTUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7713498Z copying torch\include\ATen\native\cuda\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7720625Z copying torch\include\ATen\native\cuda\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7727887Z copying torch\include\ATen\native\cuda\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7734189Z copying torch\include\ATen\native\cuda\GroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7740170Z copying torch\include\ATen\native\cuda\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7746645Z copying torch\include\ATen\native\cuda\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7752842Z copying torch\include\ATen\native\cuda\jit_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7759209Z copying torch\include\ATen\native\cuda\LaunchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7765241Z copying torch\include\ATen\native\cuda\MiscUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7772693Z copying torch\include\ATen\native\cuda\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7778640Z copying torch\include\ATen\native\cuda\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7784911Z copying torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7790939Z copying torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7796991Z copying torch\include\ATen\native\cuda\ScanKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7813420Z copying torch\include\ATen\native\cuda\Sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7819468Z copying torch\include\ATen\native\cuda\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7825621Z copying torch\include\ATen\native\cuda\SortStable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7831715Z copying torch\include\ATen\native\cuda\TensorModeKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7837800Z copying torch\include\ATen\native\cuda\TensorTopK.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7844050Z copying torch\include\ATen\native\cuda\thread_constants.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:38.7849611Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-08-26T20:11:38.7852411Z copying torch\include\ATen\native\hip\ck_bgemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-08-26T20:11:38.7858441Z copying torch\include\ATen\native\hip\ck_gemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-08-26T20:11:38.7864448Z copying torch\include\ATen\native\hip\ck_gemm_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-08-26T20:11:38.7871073Z copying torch\include\ATen\native\hip\ck_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-08-26T20:11:38.7876855Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-08-26T20:11:38.7890315Z 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-08-26T20:11:38.7896799Z 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-08-26T20:11:38.7902211Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-08-26T20:11:38.7905115Z copying torch\include\ATen\native\kleidiai\kai_kernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-08-26T20:11:38.7911641Z copying torch\include\ATen\native\kleidiai\kai_pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-08-26T20:11:38.7917905Z copying torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-08-26T20:11:38.7923481Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-08-26T20:11:38.7927688Z copying torch\include\ATen\native\mkldnn\xpu\Conv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-08-26T20:11:38.7934153Z copying torch\include\ATen\native\mkldnn\xpu\FusionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-08-26T20:11:38.7939480Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-08-26T20:11:38.7942396Z copying torch\include\ATen\native\mkldnn\xpu\detail\Attr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-08-26T20:11:38.7949385Z copying torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-08-26T20:11:38.7956111Z copying torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-08-26T20:11:38.7962280Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-08-26T20:11:38.7968763Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-08-26T20:11:38.7975049Z copying torch\include\ATen\native\mkldnn\xpu\detail\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-08-26T20:11:38.7989932Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-08-26T20:11:38.7993165Z copying torch\include\ATen\native\mps\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-08-26T20:11:38.8000413Z copying torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-08-26T20:11:38.8007217Z copying torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-08-26T20:11:38.8013713Z copying torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-08-26T20:11:38.8030991Z copying torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-08-26T20:11:38.8037737Z copying torch\include\ATen\native\mps\OperationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-08-26T20:11:38.8045163Z copying torch\include\ATen\native\mps\TensorFactory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-08-26T20:11:38.8051125Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-08-26T20:11:38.8054251Z copying torch\include\ATen\native\mps\kernels\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-08-26T20:11:38.8060703Z copying torch\include\ATen\native\mps\kernels\Pooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-08-26T20:11:38.8066907Z copying torch\include\ATen\native\mps\kernels\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-08-26T20:11:38.8072214Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-08-26T20:11:38.8075393Z copying torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-08-26T20:11:38.8081805Z copying torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-08-26T20:11:38.8088397Z copying torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-08-26T20:11:38.8105559Z copying torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-08-26T20:11:38.8112505Z copying torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-08-26T20:11:38.8119478Z copying torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-08-26T20:11:38.8125525Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia 2025-08-26T20:11:38.8128456Z copying torch\include\ATen\native\mtia\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia 2025-08-26T20:11:38.8134084Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-08-26T20:11:38.8137378Z copying torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-08-26T20:11:38.8143539Z copying torch\include\ATen\native\nested\NestedTensorMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-08-26T20:11:38.8150052Z copying torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-08-26T20:11:38.8201561Z copying torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-08-26T20:11:38.8202630Z copying torch\include\ATen\native\nested\NestedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-08-26T20:11:38.8203380Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-08-26T20:11:38.8204148Z copying torch\include\ATen\native\quantized\AffineQuantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-08-26T20:11:38.8205212Z copying torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-08-26T20:11:38.8206286Z copying torch\include\ATen\native\quantized\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-08-26T20:11:38.8215358Z copying torch\include\ATen\native\quantized\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-08-26T20:11:38.8221563Z copying torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-08-26T20:11:38.8228038Z copying torch\include\ATen\native\quantized\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-08-26T20:11:38.8234153Z copying torch\include\ATen\native\quantized\library.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-08-26T20:11:38.8240254Z copying torch\include\ATen\native\quantized\PackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-08-26T20:11:38.8246001Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8249040Z copying torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8256393Z copying torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8262496Z copying torch\include\ATen\native\quantized\cpu\conv_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8268923Z copying torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8284875Z copying torch\include\ATen\native\quantized\cpu\fbgemm_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8291358Z copying torch\include\ATen\native\quantized\cpu\init_qnnpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8297351Z copying torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8303735Z copying torch\include\ATen\native\quantized\cpu\qconv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8310186Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8316499Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8322558Z copying torch\include\ATen\native\quantized\cpu\qlinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8328913Z copying torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8335800Z copying torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8342121Z copying torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8348353Z copying torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8354334Z copying torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:38.8359845Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-08-26T20:11:38.8362741Z copying torch\include\ATen\native\quantized\cudnn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-08-26T20:11:38.8368432Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-08-26T20:11:38.8371391Z copying torch\include\ATen\native\transformers\attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-08-26T20:11:38.8377548Z copying torch\include\ATen\native\transformers\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-08-26T20:11:38.8384352Z copying torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-08-26T20:11:38.8400146Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-08-26T20:11:38.8403068Z copying torch\include\ATen\native\transformers\cuda\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-08-26T20:11:38.8408602Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-08-26T20:11:38.8411613Z 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-08-26T20:11:38.8418113Z 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-08-26T20:11:38.8423805Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-08-26T20:11:38.8426802Z 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-08-26T20:11:38.8433148Z 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-08-26T20:11:38.8439555Z 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-08-26T20:11:38.8456652Z 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-08-26T20:11:38.8464148Z 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-08-26T20:11:38.8469521Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-08-26T20:11:38.8472723Z 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-08-26T20:11:38.8480087Z 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-08-26T20:11:38.8487093Z 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-08-26T20:11:38.8502089Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-08-26T20:11:38.8505135Z 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-08-26T20:11:38.8511753Z 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-08-26T20:11:38.8518237Z 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-08-26T20:11:38.8525236Z 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-08-26T20:11:38.8542022Z 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-08-26T20:11:38.8548777Z 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-08-26T20:11:38.8555393Z 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-08-26T20:11:38.8561865Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-08-26T20:11:38.8565267Z 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-08-26T20:11:38.8572147Z 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-08-26T20:11:38.8579293Z 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-08-26T20:11:38.8596063Z 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-08-26T20:11:38.8603796Z 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-08-26T20:11:38.8611448Z 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-08-26T20:11:38.8617999Z 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-08-26T20:11:38.8623354Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-08-26T20:11:38.8626665Z 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-08-26T20:11:38.8634505Z 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-08-26T20:11:38.8640492Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-08-26T20:11:38.8643705Z 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-08-26T20:11:38.8649034Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-08-26T20:11:38.8652108Z copying torch\include\ATen\native\transformers\hip\aotriton_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-08-26T20:11:38.8657514Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-08-26T20:11:38.8660552Z 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-08-26T20:11:38.8666456Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-08-26T20:11:38.8669439Z 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-08-26T20:11:38.8674832Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-08-26T20:11:38.8678046Z copying torch\include\ATen\native\utils\Factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-08-26T20:11:38.8721752Z copying torch\include\ATen\native\utils\ParamsHash.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-08-26T20:11:38.8722644Z copying torch\include\ATen\native\utils\ParamUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-08-26T20:11:38.8723316Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8723871Z copying torch\include\ATen\ops\abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8724545Z copying torch\include\ATen\ops\absolute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8725466Z copying torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8726414Z copying torch\include\ATen\ops\absolute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8739772Z copying torch\include\ATen\ops\absolute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8746020Z copying torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8752284Z copying torch\include\ATen\ops\abs_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8759170Z copying torch\include\ATen\ops\abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8765388Z copying torch\include\ATen\ops\abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8772836Z copying torch\include\ATen\ops\abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8777736Z copying torch\include\ATen\ops\acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8784249Z copying torch\include\ATen\ops\acosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8790986Z copying torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8797124Z copying torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8803528Z copying torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8810524Z copying torch\include\ATen\ops\acosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8816769Z copying torch\include\ATen\ops\acosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8823347Z copying torch\include\ATen\ops\acosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8829637Z copying torch\include\ATen\ops\acosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8836427Z copying torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8852798Z copying torch\include\ATen\ops\acos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8859934Z copying torch\include\ATen\ops\acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8866085Z copying torch\include\ATen\ops\acos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8872301Z copying torch\include\ATen\ops\acos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8878578Z copying torch\include\ATen\ops\acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8887434Z copying torch\include\ATen\ops\acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8893674Z copying torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8900378Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8906997Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8923286Z copying torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8929778Z copying torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8936323Z copying torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8943117Z copying torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8949571Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8956148Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8963148Z copying torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8969848Z copying torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8986305Z copying torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8992803Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.8999595Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9006771Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9013324Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9020333Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9027280Z copying torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9033877Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9040982Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9047423Z copying torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9054124Z copying torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9080572Z copying torch\include\ATen\ops\adaptive_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9087630Z copying torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9094217Z copying torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9100979Z copying torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9107619Z copying torch\include\ATen\ops\adaptive_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9114877Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9122166Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9128938Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9136040Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9142741Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9149935Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9179678Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9180586Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9181787Z copying torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9188667Z copying torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9196301Z copying torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9203124Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9210115Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9226451Z copying torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9266023Z copying torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9272573Z copying torch\include\ATen\ops\adaptive_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9279247Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9286469Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9297217Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9303827Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9310373Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9317121Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9324511Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9331771Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9340988Z copying torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9347543Z copying torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9354825Z copying torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9362154Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9369321Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9377717Z copying torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9384365Z copying torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9391826Z copying torch\include\ATen\ops\add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9398366Z copying torch\include\ATen\ops\addbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9404572Z copying torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9440959Z copying torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9448376Z copying torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9454655Z copying torch\include\ATen\ops\addbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9461075Z copying torch\include\ATen\ops\addbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9467656Z copying torch\include\ATen\ops\addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9474946Z copying torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9481427Z copying torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:38.9488220Z copying torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0506066Z copying torch\include\ATen\ops\addcdiv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0512502Z copying torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0518932Z copying torch\include\ATen\ops\addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0525611Z copying torch\include\ATen\ops\addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0532485Z copying torch\include\ATen\ops\addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0538895Z copying torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0545236Z copying torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0551648Z copying torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0558079Z copying torch\include\ATen\ops\addcmul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0564556Z copying torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0571164Z copying torch\include\ATen\ops\addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0578334Z copying torch\include\ATen\ops\addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0584890Z copying torch\include\ATen\ops\addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0591714Z copying torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0598110Z copying torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0604824Z copying torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0612058Z copying torch\include\ATen\ops\addmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0619002Z copying torch\include\ATen\ops\addmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0625889Z copying torch\include\ATen\ops\addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0633268Z copying torch\include\ATen\ops\addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0640029Z copying torch\include\ATen\ops\addmv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0647128Z copying torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0664944Z copying torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0671596Z copying torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0678060Z copying torch\include\ATen\ops\addmv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0685498Z copying torch\include\ATen\ops\addmv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0693149Z copying torch\include\ATen\ops\addmv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0700739Z copying torch\include\ATen\ops\addmv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0708484Z copying torch\include\ATen\ops\addr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0715122Z copying torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0721774Z copying torch\include\ATen\ops\addr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0728824Z copying torch\include\ATen\ops\addr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0735550Z copying torch\include\ATen\ops\addr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0742077Z copying torch\include\ATen\ops\addr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0749043Z copying torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0755773Z copying torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0762404Z copying torch\include\ATen\ops\add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0769021Z copying torch\include\ATen\ops\add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0775407Z copying torch\include\ATen\ops\add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0781524Z copying torch\include\ATen\ops\add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0788018Z copying torch\include\ATen\ops\add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0794618Z copying torch\include\ATen\ops\add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0801061Z copying torch\include\ATen\ops\adjoint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0807491Z copying torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0814133Z copying torch\include\ATen\ops\adjoint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0820240Z copying torch\include\ATen\ops\adjoint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0827003Z copying torch\include\ATen\ops\affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0833505Z copying torch\include\ATen\ops\affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0840643Z copying torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0851037Z copying torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0868370Z copying torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0869650Z copying torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0883210Z copying torch\include\ATen\ops\affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0889924Z copying torch\include\ATen\ops\affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0896379Z copying torch\include\ATen\ops\alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0902897Z copying torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0909613Z copying torch\include\ATen\ops\alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0916707Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0923515Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0930086Z copying torch\include\ATen\ops\alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0936518Z copying torch\include\ATen\ops\alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0943323Z copying torch\include\ATen\ops\alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0949677Z copying torch\include\ATen\ops\alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0956556Z copying torch\include\ATen\ops\align_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0963041Z copying torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0969706Z copying torch\include\ATen\ops\align_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0976310Z copying torch\include\ATen\ops\align_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0983018Z copying torch\include\ATen\ops\align_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0989930Z copying torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.0996842Z copying torch\include\ATen\ops\align_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1003553Z copying torch\include\ATen\ops\align_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1010198Z copying torch\include\ATen\ops\align_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1016772Z copying torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1023386Z copying torch\include\ATen\ops\align_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1030582Z copying torch\include\ATen\ops\align_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1037091Z copying torch\include\ATen\ops\all.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1043513Z copying torch\include\ATen\ops\allclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1050793Z copying torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1057316Z copying torch\include\ATen\ops\allclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1063510Z copying torch\include\ATen\ops\allclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1070638Z copying torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1077458Z copying torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1084309Z copying torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1091143Z copying torch\include\ATen\ops\all_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1097891Z copying torch\include\ATen\ops\all_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1104507Z copying torch\include\ATen\ops\all_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1110958Z copying torch\include\ATen\ops\all_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1118027Z copying torch\include\ATen\ops\all_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1124546Z copying torch\include\ATen\ops\all_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1131149Z copying torch\include\ATen\ops\alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1138219Z copying torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1144893Z copying torch\include\ATen\ops\alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1162719Z copying torch\include\ATen\ops\alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1169244Z copying torch\include\ATen\ops\amax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1176117Z copying torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1182710Z copying torch\include\ATen\ops\amax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1190254Z copying torch\include\ATen\ops\amax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1197293Z copying torch\include\ATen\ops\amax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1204123Z copying torch\include\ATen\ops\amax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1211141Z copying torch\include\ATen\ops\amax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1217587Z copying torch\include\ATen\ops\amax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1224021Z copying torch\include\ATen\ops\amin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1230572Z copying torch\include\ATen\ops\aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1237371Z copying torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1243604Z copying torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1250495Z copying torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1256883Z copying torch\include\ATen\ops\aminmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1263575Z copying torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1270417Z copying torch\include\ATen\ops\aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1277275Z copying torch\include\ATen\ops\aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1284086Z copying torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1290537Z copying torch\include\ATen\ops\amin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1297794Z copying torch\include\ATen\ops\amin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1304163Z copying torch\include\ATen\ops\amin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1310854Z copying torch\include\ATen\ops\amin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1317314Z copying torch\include\ATen\ops\amin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1323803Z copying torch\include\ATen\ops\amin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1330067Z copying torch\include\ATen\ops\and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1336672Z copying torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1343407Z copying torch\include\ATen\ops\and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1350109Z copying torch\include\ATen\ops\and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1356532Z copying torch\include\ATen\ops\angle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1363188Z copying torch\include\ATen\ops\angle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1370843Z copying torch\include\ATen\ops\angle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1377386Z copying torch\include\ATen\ops\angle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1384367Z copying torch\include\ATen\ops\angle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1414730Z copying torch\include\ATen\ops\any.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1421649Z copying torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1428491Z copying torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1435059Z copying torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1442467Z copying torch\include\ATen\ops\any_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1449522Z copying torch\include\ATen\ops\any_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1468918Z copying torch\include\ATen\ops\any_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1475438Z copying torch\include\ATen\ops\any_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1482239Z copying torch\include\ATen\ops\any_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1488959Z copying torch\include\ATen\ops\any_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1495472Z copying torch\include\ATen\ops\arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1502639Z copying torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1510493Z copying torch\include\ATen\ops\arange_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1517821Z copying torch\include\ATen\ops\arange_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1525403Z copying torch\include\ATen\ops\arange_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1532089Z copying torch\include\ATen\ops\arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1538871Z copying torch\include\ATen\ops\arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1545674Z copying torch\include\ATen\ops\arccos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1552167Z copying torch\include\ATen\ops\arccosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1559175Z copying torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1565765Z copying torch\include\ATen\ops\arccosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1572225Z copying torch\include\ATen\ops\arccosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1579195Z copying torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1585682Z copying torch\include\ATen\ops\arccos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1592183Z copying torch\include\ATen\ops\arccos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1598604Z copying torch\include\ATen\ops\arcsin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1605146Z copying torch\include\ATen\ops\arcsinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1611677Z copying torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1618346Z copying torch\include\ATen\ops\arcsinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1624822Z copying torch\include\ATen\ops\arcsinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1631647Z copying torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1637946Z copying torch\include\ATen\ops\arcsin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1644611Z copying torch\include\ATen\ops\arcsin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1651380Z copying torch\include\ATen\ops\arctan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1657922Z copying torch\include\ATen\ops\arctan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1664578Z copying torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1671300Z copying torch\include\ATen\ops\arctan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1677738Z copying torch\include\ATen\ops\arctan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1684632Z copying torch\include\ATen\ops\arctanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1691308Z copying torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1698295Z copying torch\include\ATen\ops\arctanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1704773Z copying torch\include\ATen\ops\arctanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1712354Z copying torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1718464Z copying torch\include\ATen\ops\arctan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1724897Z copying torch\include\ATen\ops\arctan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1731456Z copying torch\include\ATen\ops\argmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1738181Z copying torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1745059Z copying torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1751615Z copying torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1758046Z copying torch\include\ATen\ops\argmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1765757Z copying torch\include\ATen\ops\argmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1772782Z copying torch\include\ATen\ops\argmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1809489Z copying torch\include\ATen\ops\argmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1810223Z copying torch\include\ATen\ops\argmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1811152Z copying torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1812119Z copying torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1812914Z copying torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1816195Z copying torch\include\ATen\ops\argmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1823110Z copying torch\include\ATen\ops\argmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1829702Z copying torch\include\ATen\ops\argmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1836290Z copying torch\include\ATen\ops\argmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1842917Z copying torch\include\ATen\ops\argsort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1849742Z copying torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1856256Z copying torch\include\ATen\ops\argsort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1862853Z copying torch\include\ATen\ops\argsort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1869194Z copying torch\include\ATen\ops\argwhere.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1875531Z copying torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1882118Z copying torch\include\ATen\ops\argwhere_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1888749Z copying torch\include\ATen\ops\argwhere_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1895293Z copying torch\include\ATen\ops\asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1901507Z copying torch\include\ATen\ops\asinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1908275Z copying torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1914651Z copying torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1921194Z copying torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1928188Z copying torch\include\ATen\ops\asinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1934505Z copying torch\include\ATen\ops\asinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1941428Z copying torch\include\ATen\ops\asinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1948018Z copying torch\include\ATen\ops\asinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1955027Z copying torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1961360Z copying torch\include\ATen\ops\asin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1967994Z copying torch\include\ATen\ops\asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1974391Z copying torch\include\ATen\ops\asin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1981209Z copying torch\include\ATen\ops\asin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1987626Z copying torch\include\ATen\ops\asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.1994020Z copying torch\include\ATen\ops\asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2000538Z copying torch\include\ATen\ops\as_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2007386Z copying torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2013669Z copying torch\include\ATen\ops\as_strided_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2020939Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2027723Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2034207Z copying torch\include\ATen\ops\as_strided_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2053374Z copying torch\include\ATen\ops\as_strided_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2060020Z copying torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2066988Z copying torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2074257Z copying torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2080893Z copying torch\include\ATen\ops\as_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2088017Z copying torch\include\ATen\ops\as_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2094699Z copying torch\include\ATen\ops\as_strided_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2101943Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2109167Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2115735Z copying torch\include\ATen\ops\as_strided_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2123073Z copying torch\include\ATen\ops\as_strided_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2163258Z copying torch\include\ATen\ops\atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2169741Z copying torch\include\ATen\ops\atan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2176574Z copying torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2183090Z copying torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2190297Z copying torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2197674Z copying torch\include\ATen\ops\atan2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2209936Z copying torch\include\ATen\ops\atan2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2218001Z copying torch\include\ATen\ops\atan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2223820Z copying torch\include\ATen\ops\atan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2230498Z copying torch\include\ATen\ops\atanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2237330Z copying torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2244340Z copying torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2251262Z copying torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2257798Z copying torch\include\ATen\ops\atanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2264303Z copying torch\include\ATen\ops\atanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2270983Z copying torch\include\ATen\ops\atanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2277455Z copying torch\include\ATen\ops\atanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2284348Z copying torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2290763Z copying torch\include\ATen\ops\atan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2297291Z copying torch\include\ATen\ops\atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2303940Z copying torch\include\ATen\ops\atan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2310086Z copying torch\include\ATen\ops\atan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2316721Z copying torch\include\ATen\ops\atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2322923Z copying torch\include\ATen\ops\atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2329353Z copying torch\include\ATen\ops\atleast_1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2336057Z copying torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2342371Z copying torch\include\ATen\ops\atleast_1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2349182Z copying torch\include\ATen\ops\atleast_1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2355514Z copying torch\include\ATen\ops\atleast_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2362238Z copying torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2369349Z copying torch\include\ATen\ops\atleast_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2375707Z copying torch\include\ATen\ops\atleast_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2382202Z copying torch\include\ATen\ops\atleast_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2389107Z copying torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2395798Z copying torch\include\ATen\ops\atleast_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2402222Z copying torch\include\ATen\ops\atleast_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2408789Z copying torch\include\ATen\ops\avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2415658Z copying torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2422299Z copying torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2428619Z copying torch\include\ATen\ops\avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2435043Z copying torch\include\ATen\ops\avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2441632Z copying torch\include\ATen\ops\avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2448462Z copying torch\include\ATen\ops\avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2455690Z copying torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2462423Z copying torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2469249Z copying torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2475906Z copying torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2483440Z copying torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2490487Z copying torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2497711Z copying torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2504969Z copying torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2511898Z copying torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2518818Z copying torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2525506Z copying torch\include\ATen\ops\avg_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2532416Z copying torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2538966Z copying torch\include\ATen\ops\avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2545811Z copying torch\include\ATen\ops\avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2552611Z copying torch\include\ATen\ops\avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2559303Z copying torch\include\ATen\ops\avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2566666Z copying torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2573316Z copying torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2580163Z copying torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2587118Z copying torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2594175Z copying torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2600868Z copying torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2614728Z copying torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2621948Z copying torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2628454Z copying torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2635362Z copying torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2642476Z copying torch\include\ATen\ops\avg_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2650363Z copying torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2656916Z copying torch\include\ATen\ops\avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2663925Z copying torch\include\ATen\ops\avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2670466Z copying torch\include\ATen\ops\baddbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2677188Z copying torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2683906Z copying torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2690932Z copying torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2700609Z copying torch\include\ATen\ops\baddbmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2704904Z copying torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2711711Z copying torch\include\ATen\ops\baddbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2718809Z copying torch\include\ATen\ops\baddbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2726371Z copying torch\include\ATen\ops\bartlett_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2732787Z copying torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2739186Z copying torch\include\ATen\ops\bartlett_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2745874Z copying torch\include\ATen\ops\bartlett_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2752904Z copying torch\include\ATen\ops\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2759710Z copying torch\include\ATen\ops\batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2766676Z copying torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2773234Z copying torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2779715Z copying torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2786680Z copying torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2793830Z copying torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2800497Z copying torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2807209Z copying torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2813897Z copying torch\include\ATen\ops\batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2820458Z copying torch\include\ATen\ops\batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2827183Z copying torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2834363Z copying torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2841144Z copying torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2847916Z copying torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2854714Z copying torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2861640Z copying torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2868524Z copying torch\include\ATen\ops\batch_norm_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2875393Z copying torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2882062Z copying torch\include\ATen\ops\batch_norm_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2888893Z copying torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2895572Z copying torch\include\ATen\ops\batch_norm_gather_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2902461Z copying torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2909248Z copying torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2916339Z copying torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2923035Z copying torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2930033Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2937321Z 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-08-26T20:11:39.2943926Z 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-08-26T20:11:39.2950666Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2957587Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2964226Z copying torch\include\ATen\ops\batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.2970848Z copying torch\include\ATen\ops\batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3002656Z copying torch\include\ATen\ops\batch_norm_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3010205Z copying torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3017042Z copying torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3024548Z copying torch\include\ATen\ops\batch_norm_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3031711Z copying torch\include\ATen\ops\batch_norm_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3038406Z copying torch\include\ATen\ops\batch_norm_update_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3045806Z copying torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3052845Z copying torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3059663Z copying torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3066750Z copying torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3073758Z copying torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3080321Z copying torch\include\ATen\ops\bernoulli.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3087448Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3095019Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3101962Z copying torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3108939Z copying torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3131242Z copying torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3137793Z copying torch\include\ATen\ops\bernoulli_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3144714Z copying torch\include\ATen\ops\bernoulli_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3151356Z copying torch\include\ATen\ops\bilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3157897Z copying torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3164411Z copying torch\include\ATen\ops\bilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3171083Z copying torch\include\ATen\ops\bilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3177907Z copying torch\include\ATen\ops\binary_cross_entropy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3184646Z copying torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3191525Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3205624Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3206578Z copying torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3223152Z copying torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3224062Z copying torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3229192Z copying torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3235543Z copying torch\include\ATen\ops\binary_cross_entropy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3242490Z copying torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3249812Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3256749Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3263583Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3270237Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3277068Z copying torch\include\ATen\ops\bincount.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3283700Z copying torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3290715Z copying torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3297223Z copying torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3303689Z copying torch\include\ATen\ops\bincount_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3310574Z copying torch\include\ATen\ops\bincount_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3317248Z copying torch\include\ATen\ops\binomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3323968Z copying torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3330373Z copying torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3337129Z copying torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3343505Z copying torch\include\ATen\ops\binomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3349864Z copying torch\include\ATen\ops\binomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3356346Z copying torch\include\ATen\ops\bitwise_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3363546Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3371088Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3377550Z copying torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3384246Z copying torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3390649Z copying torch\include\ATen\ops\bitwise_and_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3397182Z copying torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3403959Z copying torch\include\ATen\ops\bitwise_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3410576Z copying torch\include\ATen\ops\bitwise_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3417111Z copying torch\include\ATen\ops\bitwise_left_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3424100Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3430819Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3437266Z copying torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3444172Z copying torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3450826Z copying torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3457984Z copying torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3464487Z copying torch\include\ATen\ops\bitwise_left_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3471164Z copying torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3477855Z copying torch\include\ATen\ops\bitwise_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3484714Z copying torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3491372Z copying torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3497807Z copying torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3505514Z copying torch\include\ATen\ops\bitwise_not_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3519663Z copying torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3526443Z copying torch\include\ATen\ops\bitwise_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3533087Z copying torch\include\ATen\ops\bitwise_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3539754Z copying torch\include\ATen\ops\bitwise_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3548063Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3554832Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3561553Z copying torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3568323Z copying torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3574798Z copying torch\include\ATen\ops\bitwise_or_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3581534Z copying torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3588065Z copying torch\include\ATen\ops\bitwise_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3594773Z copying torch\include\ATen\ops\bitwise_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3601384Z copying torch\include\ATen\ops\bitwise_right_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3608543Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3615750Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3622054Z copying torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3628751Z copying torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3635513Z copying torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3642291Z copying torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3649013Z copying torch\include\ATen\ops\bitwise_right_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3655815Z copying torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3662398Z copying torch\include\ATen\ops\bitwise_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3669567Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3676664Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3683143Z copying torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3689778Z copying torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3696411Z copying torch\include\ATen\ops\bitwise_xor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3703029Z copying torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3709724Z copying torch\include\ATen\ops\bitwise_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3717602Z copying torch\include\ATen\ops\bitwise_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3761370Z copying torch\include\ATen\ops\blackman_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3762297Z copying torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3763257Z copying torch\include\ATen\ops\blackman_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3764119Z copying torch\include\ATen\ops\blackman_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3764896Z copying torch\include\ATen\ops\block_diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3765890Z copying torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3770503Z copying torch\include\ATen\ops\block_diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3777205Z copying torch\include\ATen\ops\block_diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3785412Z copying torch\include\ATen\ops\bmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3791087Z copying torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3798021Z copying torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3804426Z copying torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3811055Z copying torch\include\ATen\ops\bmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3817562Z copying torch\include\ATen\ops\bmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3824330Z copying torch\include\ATen\ops\bmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3830649Z copying torch\include\ATen\ops\bmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3837259Z copying torch\include\ATen\ops\broadcast_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3844009Z copying torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3850466Z copying torch\include\ATen\ops\broadcast_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3856820Z copying torch\include\ATen\ops\broadcast_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3863514Z copying torch\include\ATen\ops\broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3870350Z copying torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3877066Z copying torch\include\ATen\ops\broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3883505Z copying torch\include\ATen\ops\broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3890371Z copying torch\include\ATen\ops\bucketize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3897108Z copying torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3903450Z copying torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3910214Z copying torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3916595Z copying torch\include\ATen\ops\bucketize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3923287Z copying torch\include\ATen\ops\bucketize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3929957Z copying torch\include\ATen\ops\can_cast.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3936526Z copying torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3943095Z copying torch\include\ATen\ops\can_cast_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3949377Z copying torch\include\ATen\ops\can_cast_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3955933Z copying torch\include\ATen\ops\cartesian_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.3962659Z copying torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4001408Z copying torch\include\ATen\ops\cartesian_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4007892Z copying torch\include\ATen\ops\cartesian_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4014973Z copying torch\include\ATen\ops\cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4021348Z copying torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4028067Z copying torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4034672Z copying torch\include\ATen\ops\cat_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4041124Z copying torch\include\ATen\ops\cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4047854Z copying torch\include\ATen\ops\cat_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4054580Z copying torch\include\ATen\ops\cat_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4061051Z copying torch\include\ATen\ops\cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4068399Z copying torch\include\ATen\ops\cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4075038Z copying torch\include\ATen\ops\cauchy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4081849Z copying torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4089032Z copying torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4095948Z copying torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4102942Z copying torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4119369Z copying torch\include\ATen\ops\cauchy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4126221Z copying torch\include\ATen\ops\cauchy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4132829Z copying torch\include\ATen\ops\ccol_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4139454Z copying torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4146255Z copying torch\include\ATen\ops\ccol_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4153412Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4160503Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4167475Z copying torch\include\ATen\ops\ccol_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4174424Z copying torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4181593Z copying torch\include\ATen\ops\ccol_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4188103Z copying torch\include\ATen\ops\ccol_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4195028Z copying torch\include\ATen\ops\cdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4201692Z copying torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4219413Z copying torch\include\ATen\ops\cdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4220136Z copying torch\include\ATen\ops\cdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4222934Z copying torch\include\ATen\ops\ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4230025Z copying torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4237456Z copying torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4243683Z copying torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4250370Z copying torch\include\ATen\ops\ceil_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4256831Z copying torch\include\ATen\ops\ceil_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4263739Z copying torch\include\ATen\ops\ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4270519Z copying torch\include\ATen\ops\ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4276681Z copying torch\include\ATen\ops\celu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4283266Z copying torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4289820Z copying torch\include\ATen\ops\celu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4296858Z copying torch\include\ATen\ops\celu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4303268Z copying torch\include\ATen\ops\chain_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4310120Z copying torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4317451Z copying torch\include\ATen\ops\chain_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4323756Z copying torch\include\ATen\ops\chain_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4330485Z copying torch\include\ATen\ops\chalf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4336855Z copying torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4343796Z copying torch\include\ATen\ops\chalf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4350352Z copying torch\include\ATen\ops\chalf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4357077Z copying torch\include\ATen\ops\channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4364150Z copying torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4371148Z copying torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4378090Z copying torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4384566Z copying torch\include\ATen\ops\channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4391183Z copying torch\include\ATen\ops\channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4397661Z copying torch\include\ATen\ops\cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4404083Z copying torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4410789Z copying torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4417524Z copying torch\include\ATen\ops\cholesky_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4424157Z copying torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4430950Z copying torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4437927Z copying torch\include\ATen\ops\cholesky_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4444537Z copying torch\include\ATen\ops\cholesky_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4451304Z copying torch\include\ATen\ops\cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4458130Z copying torch\include\ATen\ops\cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4465035Z copying torch\include\ATen\ops\cholesky_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4472173Z copying torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4478794Z copying torch\include\ATen\ops\cholesky_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4503540Z copying torch\include\ATen\ops\cholesky_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4509880Z copying torch\include\ATen\ops\choose_qparams_optimized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4516539Z copying torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4522796Z copying torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4529461Z copying torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4535851Z copying torch\include\ATen\ops\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4542649Z copying torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4549506Z copying torch\include\ATen\ops\chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4555957Z copying torch\include\ATen\ops\chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4562675Z copying torch\include\ATen\ops\clamp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4569710Z copying torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4576590Z copying torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4583387Z copying torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4589987Z copying torch\include\ATen\ops\clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4597300Z copying torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4604329Z copying torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4611237Z copying torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4617763Z copying torch\include\ATen\ops\clamp_max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4625262Z copying torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4632013Z copying torch\include\ATen\ops\clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4638843Z copying torch\include\ATen\ops\clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4645685Z copying torch\include\ATen\ops\clamp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4652497Z copying torch\include\ATen\ops\clamp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4659159Z copying torch\include\ATen\ops\clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4666356Z copying torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4673373Z copying torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4680264Z copying torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4687525Z copying torch\include\ATen\ops\clamp_min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4694452Z copying torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4701074Z copying torch\include\ATen\ops\clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4708329Z copying torch\include\ATen\ops\clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4724007Z copying torch\include\ATen\ops\clamp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4724759Z copying torch\include\ATen\ops\clamp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4733858Z copying torch\include\ATen\ops\clip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4736778Z copying torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4743728Z copying torch\include\ATen\ops\clip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4750406Z copying torch\include\ATen\ops\clip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4756796Z copying torch\include\ATen\ops\clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4763406Z copying torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4770031Z copying torch\include\ATen\ops\clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4776420Z copying torch\include\ATen\ops\clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4783013Z copying torch\include\ATen\ops\coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4789526Z copying torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4795882Z copying torch\include\ATen\ops\coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4802159Z copying torch\include\ATen\ops\coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4808680Z copying torch\include\ATen\ops\col2im.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4815112Z copying torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4821907Z copying torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4828366Z copying torch\include\ATen\ops\col2im_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4835591Z copying torch\include\ATen\ops\col2im_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4842040Z copying torch\include\ATen\ops\column_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4848995Z copying torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4855692Z copying torch\include\ATen\ops\column_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4861926Z copying torch\include\ATen\ops\column_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4868626Z copying torch\include\ATen\ops\col_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4875253Z copying torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4882204Z copying torch\include\ATen\ops\col_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4889506Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4896373Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4902829Z copying torch\include\ATen\ops\col_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4909424Z copying torch\include\ATen\ops\col_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4916471Z copying torch\include\ATen\ops\col_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4923010Z copying torch\include\ATen\ops\col_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4930033Z copying torch\include\ATen\ops\combinations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4936970Z copying torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4944222Z copying torch\include\ATen\ops\combinations_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4950098Z copying torch\include\ATen\ops\combinations_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4956567Z copying torch\include\ATen\ops\complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4963139Z copying torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4969895Z copying torch\include\ATen\ops\complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4977021Z copying torch\include\ATen\ops\complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4983639Z copying torch\include\ATen\ops\complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4990422Z copying torch\include\ATen\ops\complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.4996913Z copying torch\include\ATen\ops\concat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5003295Z copying torch\include\ATen\ops\concatenate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5010649Z copying torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5017308Z copying torch\include\ATen\ops\concatenate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5024320Z copying torch\include\ATen\ops\concatenate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5031237Z copying torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5037830Z copying torch\include\ATen\ops\concat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5044545Z copying torch\include\ATen\ops\concat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5051290Z copying torch\include\ATen\ops\conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5058128Z copying torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5064705Z copying torch\include\ATen\ops\conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5071091Z copying torch\include\ATen\ops\conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5077553Z copying torch\include\ATen\ops\conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5084723Z copying torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5091804Z copying torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5098664Z copying torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5105326Z copying torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5111988Z copying torch\include\ATen\ops\conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5118676Z copying torch\include\ATen\ops\conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5125954Z copying torch\include\ATen\ops\constant_pad_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5133113Z copying torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5140134Z copying torch\include\ATen\ops\constant_pad_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5146800Z copying torch\include\ATen\ops\constant_pad_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5153491Z copying torch\include\ATen\ops\contiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5175107Z copying torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5181653Z copying torch\include\ATen\ops\contiguous_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5188252Z copying torch\include\ATen\ops\contiguous_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5194845Z copying torch\include\ATen\ops\conv1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5202351Z copying torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5208259Z copying torch\include\ATen\ops\conv1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5230929Z copying torch\include\ATen\ops\conv1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5231630Z copying torch\include\ATen\ops\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5232466Z copying torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5237157Z copying torch\include\ATen\ops\conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5244185Z copying torch\include\ATen\ops\conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5250942Z copying torch\include\ATen\ops\conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5257767Z copying torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5264200Z copying torch\include\ATen\ops\conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5270863Z copying torch\include\ATen\ops\conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5277349Z copying torch\include\ATen\ops\convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5284084Z copying torch\include\ATen\ops\convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5291294Z copying torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5298156Z copying torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5305150Z copying torch\include\ATen\ops\convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5311800Z copying torch\include\ATen\ops\convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5366360Z copying torch\include\ATen\ops\convolution_backward_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5373636Z copying torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5380470Z copying torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5387158Z copying torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5394413Z copying torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5400785Z copying torch\include\ATen\ops\convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5407611Z copying torch\include\ATen\ops\convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5414207Z copying torch\include\ATen\ops\convolution_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5421295Z copying torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5428125Z copying torch\include\ATen\ops\convolution_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5434735Z copying torch\include\ATen\ops\convolution_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5441695Z copying torch\include\ATen\ops\conv_depthwise3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5448726Z copying torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5455226Z copying torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5462870Z copying torch\include\ATen\ops\conv_depthwise3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5469709Z copying torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5476340Z copying torch\include\ATen\ops\conv_tbc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5482695Z copying torch\include\ATen\ops\conv_tbc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5489719Z copying torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5496190Z copying torch\include\ATen\ops\conv_tbc_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5503026Z copying torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5509866Z copying torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5516582Z copying torch\include\ATen\ops\conv_tbc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5523099Z copying torch\include\ATen\ops\conv_tbc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5529855Z copying torch\include\ATen\ops\conv_transpose1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5536700Z copying torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5543523Z copying torch\include\ATen\ops\conv_transpose1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5550045Z copying torch\include\ATen\ops\conv_transpose1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5556708Z copying torch\include\ATen\ops\conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5565278Z copying torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5572159Z copying torch\include\ATen\ops\conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5578904Z copying torch\include\ATen\ops\conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5585594Z copying torch\include\ATen\ops\conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5592592Z copying torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5599635Z copying torch\include\ATen\ops\conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5606647Z copying torch\include\ATen\ops\conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5613207Z copying torch\include\ATen\ops\copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5619521Z copying torch\include\ATen\ops\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5626278Z copying torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5632858Z copying torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5639360Z copying torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5646102Z copying torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5652895Z copying torch\include\ATen\ops\copysign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5659514Z copying torch\include\ATen\ops\copysign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5666315Z copying torch\include\ATen\ops\copysign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5673387Z copying torch\include\ATen\ops\copysign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5681215Z copying torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5688010Z copying torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5694586Z copying torch\include\ATen\ops\copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5702208Z copying torch\include\ATen\ops\copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5708662Z copying torch\include\ATen\ops\copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5715028Z copying torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5722053Z copying torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5728804Z copying torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5735479Z copying torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5742255Z copying torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5749127Z copying torch\include\ATen\ops\corrcoef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5755458Z copying torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5761964Z copying torch\include\ATen\ops\corrcoef_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5768376Z copying torch\include\ATen\ops\corrcoef_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5775394Z copying torch\include\ATen\ops\cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5781636Z copying torch\include\ATen\ops\cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5788321Z copying torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5794751Z copying torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5801921Z copying torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5808771Z copying torch\include\ATen\ops\cosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5815090Z copying torch\include\ATen\ops\cosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5821818Z copying torch\include\ATen\ops\cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5861757Z copying torch\include\ATen\ops\cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5868455Z copying torch\include\ATen\ops\cosine_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5875481Z copying torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5882268Z copying torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5889194Z copying torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5897146Z copying torch\include\ATen\ops\cosine_similarity.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5903281Z copying torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5910046Z copying torch\include\ATen\ops\cosine_similarity_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5916630Z copying torch\include\ATen\ops\cosine_similarity_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5923755Z copying torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5931615Z copying torch\include\ATen\ops\cos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5937388Z copying torch\include\ATen\ops\cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5943937Z copying torch\include\ATen\ops\cos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5950236Z copying torch\include\ATen\ops\cos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5956831Z copying torch\include\ATen\ops\cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5963384Z copying torch\include\ATen\ops\cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5970158Z copying torch\include\ATen\ops\count_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5977720Z copying torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5984521Z copying torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5991637Z copying torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.5998610Z copying torch\include\ATen\ops\count_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6006223Z copying torch\include\ATen\ops\count_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6012016Z copying torch\include\ATen\ops\cov.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6018711Z copying torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6025497Z copying torch\include\ATen\ops\cov_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6032160Z copying torch\include\ATen\ops\cov_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6038615Z copying torch\include\ATen\ops\cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6046440Z copying torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6052241Z copying torch\include\ATen\ops\cross_entropy_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6059589Z copying torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6066482Z copying torch\include\ATen\ops\cross_entropy_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6073364Z copying torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6080098Z copying torch\include\ATen\ops\cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6086952Z copying torch\include\ATen\ops\cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6093638Z copying torch\include\ATen\ops\crow_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6100365Z copying torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6106945Z copying torch\include\ATen\ops\crow_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6114243Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6121632Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6128282Z copying torch\include\ATen\ops\crow_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6135120Z copying torch\include\ATen\ops\crow_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6141958Z copying torch\include\ATen\ops\crow_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6148463Z copying torch\include\ATen\ops\crow_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6155704Z copying torch\include\ATen\ops\ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6162529Z copying torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6169858Z copying torch\include\ATen\ops\ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6176650Z copying torch\include\ATen\ops\ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6183387Z copying torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6206705Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6213536Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6227411Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6234505Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6241286Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6248468Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6255218Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6262612Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6269684Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6276418Z copying torch\include\ATen\ops\cudnn_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6283279Z copying torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6290368Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6297228Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6303969Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6310877Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6318302Z copying torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6324358Z copying torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6331254Z copying torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6337996Z copying torch\include\ATen\ops\cudnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6344898Z copying torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6352155Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6359043Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6366022Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6372643Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6379485Z copying torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6386167Z copying torch\include\ATen\ops\cudnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6392999Z copying torch\include\ATen\ops\cudnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6399733Z copying torch\include\ATen\ops\cudnn_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6407497Z copying torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6414552Z copying torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6421753Z copying torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6428552Z copying torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6435620Z copying torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6443568Z copying torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6450484Z copying torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6457344Z copying torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6464170Z copying torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6471165Z copying torch\include\ATen\ops\cudnn_grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6477854Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6485265Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6492236Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6499171Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6506271Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6513761Z copying torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6520838Z copying torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6528373Z copying torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6535056Z copying torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6541773Z copying torch\include\ATen\ops\cudnn_is_acceptable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6549063Z copying torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6555872Z copying torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6563087Z copying torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6569622Z copying torch\include\ATen\ops\cummax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6576165Z copying torch\include\ATen\ops\cummaxmin_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6583383Z copying torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6639521Z copying torch\include\ATen\ops\cummaxmin_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6646091Z copying torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6653211Z copying torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6660699Z copying torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6667286Z copying torch\include\ATen\ops\cummax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6673883Z copying torch\include\ATen\ops\cummax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6680817Z copying torch\include\ATen\ops\cummin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6687678Z copying torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6695290Z copying torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6706286Z copying torch\include\ATen\ops\cummin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6713083Z copying torch\include\ATen\ops\cummin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6720081Z copying torch\include\ATen\ops\cumprod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6727028Z copying torch\include\ATen\ops\cumprod_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6734924Z copying torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6741612Z copying torch\include\ATen\ops\cumprod_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6748368Z copying torch\include\ATen\ops\cumprod_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6757010Z copying torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6763086Z copying torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6770281Z copying torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6777311Z copying torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6784115Z copying torch\include\ATen\ops\cumprod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6791015Z copying torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6797744Z copying torch\include\ATen\ops\cumprod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6804553Z copying torch\include\ATen\ops\cumprod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6811623Z copying torch\include\ATen\ops\cumsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6818595Z copying torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6826243Z copying torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6833060Z copying torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6840373Z copying torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6847146Z copying torch\include\ATen\ops\cumsum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6853951Z copying torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6860770Z copying torch\include\ATen\ops\cumsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6886574Z copying torch\include\ATen\ops\cumsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6887506Z copying torch\include\ATen\ops\cumulative_trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6888484Z copying torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6889487Z copying torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6894680Z copying torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6901075Z copying torch\include\ATen\ops\data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6907510Z copying torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6914117Z copying torch\include\ATen\ops\data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6920488Z copying torch\include\ATen\ops\data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6926837Z copying torch\include\ATen\ops\deg2rad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6933407Z copying torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6939880Z copying torch\include\ATen\ops\deg2rad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6946534Z copying torch\include\ATen\ops\deg2rad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6953076Z copying torch\include\ATen\ops\dense_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6959798Z copying torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6966608Z copying torch\include\ATen\ops\dense_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6973174Z copying torch\include\ATen\ops\dense_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6979914Z copying torch\include\ATen\ops\dequantize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6986894Z copying torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.6994079Z copying torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7000731Z copying torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7007502Z copying torch\include\ATen\ops\dequantize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7014626Z copying torch\include\ATen\ops\dequantize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7021479Z copying torch\include\ATen\ops\det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7027829Z copying torch\include\ATen\ops\detach.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7040297Z copying torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7046693Z copying torch\include\ATen\ops\detach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7053766Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7060627Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7067933Z copying torch\include\ATen\ops\detach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7074855Z copying torch\include\ATen\ops\detach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7081555Z copying torch\include\ATen\ops\detach_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7088221Z copying torch\include\ATen\ops\detach_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7095607Z copying torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7103073Z copying torch\include\ATen\ops\det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7109247Z copying torch\include\ATen\ops\det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7115716Z copying torch\include\ATen\ops\diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7122058Z copying torch\include\ATen\ops\diagflat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7128725Z copying torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7135297Z copying torch\include\ATen\ops\diagflat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7141794Z copying torch\include\ATen\ops\diagflat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7148417Z copying torch\include\ATen\ops\diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7155323Z copying torch\include\ATen\ops\diagonal_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7162115Z copying torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7169094Z copying torch\include\ATen\ops\diagonal_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7176005Z copying torch\include\ATen\ops\diagonal_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7183659Z copying torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7190140Z copying torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7196676Z copying torch\include\ATen\ops\diagonal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7203825Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7210985Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7218178Z copying torch\include\ATen\ops\diagonal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7233630Z copying torch\include\ATen\ops\diagonal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7234410Z copying torch\include\ATen\ops\diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7239839Z copying torch\include\ATen\ops\diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7246672Z copying torch\include\ATen\ops\diagonal_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7254059Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7261132Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7268662Z copying torch\include\ATen\ops\diagonal_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7274715Z copying torch\include\ATen\ops\diagonal_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7281583Z copying torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7288272Z copying torch\include\ATen\ops\diag_embed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7295278Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7302202Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7308789Z copying torch\include\ATen\ops\diag_embed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7315698Z copying torch\include\ATen\ops\diag_embed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7322181Z copying torch\include\ATen\ops\diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7328750Z copying torch\include\ATen\ops\diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7334956Z copying torch\include\ATen\ops\diff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7341788Z copying torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7348855Z copying torch\include\ATen\ops\diff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7355281Z copying torch\include\ATen\ops\diff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7361526Z copying torch\include\ATen\ops\digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7368439Z copying torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7375034Z copying torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7382051Z copying torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7388586Z copying torch\include\ATen\ops\digamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7395016Z copying torch\include\ATen\ops\digamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7401758Z copying torch\include\ATen\ops\digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7408393Z copying torch\include\ATen\ops\digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7414938Z copying torch\include\ATen\ops\dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7421510Z copying torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7427826Z copying torch\include\ATen\ops\dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7434363Z copying torch\include\ATen\ops\dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7440524Z copying torch\include\ATen\ops\div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7446984Z copying torch\include\ATen\ops\divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7453592Z copying torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7460616Z copying torch\include\ATen\ops\divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7467136Z copying torch\include\ATen\ops\divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7474169Z copying torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7480952Z copying torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7487688Z copying torch\include\ATen\ops\div_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7494284Z copying torch\include\ATen\ops\div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7501214Z copying torch\include\ATen\ops\div_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7508183Z copying torch\include\ATen\ops\div_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7514865Z copying torch\include\ATen\ops\div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7521479Z copying torch\include\ATen\ops\div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7528180Z copying torch\include\ATen\ops\dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7534938Z copying torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7541673Z copying torch\include\ATen\ops\dot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7548315Z copying torch\include\ATen\ops\dot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7554819Z copying torch\include\ATen\ops\dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7561696Z copying torch\include\ATen\ops\dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7568090Z copying torch\include\ATen\ops\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7575709Z copying torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7581667Z copying torch\include\ATen\ops\dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7588122Z copying torch\include\ATen\ops\dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7599626Z copying torch\include\ATen\ops\dsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7606970Z copying torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7613414Z copying torch\include\ATen\ops\dsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7620574Z copying torch\include\ATen\ops\dsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7631012Z copying torch\include\ATen\ops\dstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7637543Z copying torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7644469Z copying torch\include\ATen\ops\dstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7650684Z copying torch\include\ATen\ops\dstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7657385Z copying torch\include\ATen\ops\einsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7664079Z copying torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7670710Z copying torch\include\ATen\ops\einsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7677586Z copying torch\include\ATen\ops\einsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7684412Z copying torch\include\ATen\ops\elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7690790Z copying torch\include\ATen\ops\elu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7697820Z copying torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7736696Z copying torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7743505Z copying torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7749947Z copying torch\include\ATen\ops\elu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7756923Z copying torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7763593Z copying torch\include\ATen\ops\elu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7770791Z copying torch\include\ATen\ops\elu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7777849Z copying torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7784347Z copying torch\include\ATen\ops\elu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7790868Z copying torch\include\ATen\ops\elu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7797333Z copying torch\include\ATen\ops\elu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7803630Z copying torch\include\ATen\ops\elu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7810177Z copying torch\include\ATen\ops\elu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7816945Z copying torch\include\ATen\ops\elu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7823248Z copying torch\include\ATen\ops\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7829823Z copying torch\include\ATen\ops\embedding_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7836691Z copying torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7843694Z copying torch\include\ATen\ops\embedding_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7850575Z copying torch\include\ATen\ops\embedding_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7857226Z copying torch\include\ATen\ops\embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7864162Z copying torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7872335Z copying torch\include\ATen\ops\embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7878311Z copying torch\include\ATen\ops\embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7885406Z copying torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7892337Z copying torch\include\ATen\ops\embedding_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7900488Z copying torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7907144Z copying torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7914035Z copying torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7920667Z copying torch\include\ATen\ops\embedding_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7927567Z copying torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7934355Z copying torch\include\ATen\ops\embedding_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7940853Z copying torch\include\ATen\ops\embedding_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7947795Z copying torch\include\ATen\ops\embedding_renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7954768Z copying torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7978666Z copying torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7985664Z copying torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.7998442Z copying torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8005102Z copying torch\include\ATen\ops\embedding_renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8012330Z copying torch\include\ATen\ops\embedding_renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8019210Z copying torch\include\ATen\ops\embedding_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8026384Z copying torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8033372Z copying torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8040296Z copying torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8047063Z copying torch\include\ATen\ops\empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8053755Z copying torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8060988Z copying torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8067638Z copying torch\include\ATen\ops\empty_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8074643Z copying torch\include\ATen\ops\empty_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8083592Z copying torch\include\ATen\ops\empty_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8093509Z copying torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8101784Z copying torch\include\ATen\ops\empty_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8111136Z copying torch\include\ATen\ops\empty_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8119583Z copying torch\include\ATen\ops\empty_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8129055Z copying torch\include\ATen\ops\empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8137075Z copying torch\include\ATen\ops\empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8146998Z copying torch\include\ATen\ops\empty_permuted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8155459Z copying torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8164874Z copying torch\include\ATen\ops\empty_permuted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8173108Z copying torch\include\ATen\ops\empty_permuted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8182726Z copying torch\include\ATen\ops\empty_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8191050Z copying torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8199371Z copying torch\include\ATen\ops\empty_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8206565Z copying torch\include\ATen\ops\empty_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8214712Z copying torch\include\ATen\ops\empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8221647Z copying torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8228327Z copying torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8235366Z copying torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8242082Z copying torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8250719Z copying torch\include\ATen\ops\empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8257383Z copying torch\include\ATen\ops\empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8263943Z copying torch\include\ATen\ops\eq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8270692Z copying torch\include\ATen\ops\equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8276808Z copying torch\include\ATen\ops\equal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8283570Z copying torch\include\ATen\ops\equal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8291888Z copying torch\include\ATen\ops\equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8297733Z copying torch\include\ATen\ops\equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8306629Z copying torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8313092Z copying torch\include\ATen\ops\eq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8319981Z copying torch\include\ATen\ops\eq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8326786Z copying torch\include\ATen\ops\eq_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8333170Z copying torch\include\ATen\ops\eq_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8339919Z copying torch\include\ATen\ops\eq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8346627Z copying torch\include\ATen\ops\eq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8353041Z copying torch\include\ATen\ops\erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8359131Z copying torch\include\ATen\ops\erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8365991Z copying torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8392510Z copying torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8399062Z copying torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8405629Z copying torch\include\ATen\ops\erfc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8412316Z copying torch\include\ATen\ops\erfc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8419078Z copying torch\include\ATen\ops\erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8425561Z copying torch\include\ATen\ops\erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8431981Z copying torch\include\ATen\ops\erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8438579Z copying torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8445216Z copying torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8451999Z copying torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8458470Z copying torch\include\ATen\ops\erfinv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8464800Z copying torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8471648Z copying torch\include\ATen\ops\erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8478177Z copying torch\include\ATen\ops\erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8485718Z copying torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8496507Z copying torch\include\ATen\ops\erf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8502793Z copying torch\include\ATen\ops\erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8509191Z copying torch\include\ATen\ops\erf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8515499Z copying torch\include\ATen\ops\erf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8522302Z copying torch\include\ATen\ops\erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8529158Z copying torch\include\ATen\ops\erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8535088Z copying torch\include\ATen\ops\exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8541465Z copying torch\include\ATen\ops\exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8548465Z copying torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8555300Z copying torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8561824Z copying torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8570522Z copying torch\include\ATen\ops\exp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8579664Z copying torch\include\ATen\ops\exp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8587950Z copying torch\include\ATen\ops\exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8597054Z copying torch\include\ATen\ops\exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8604885Z copying torch\include\ATen\ops\expand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8612860Z copying torch\include\ATen\ops\expand_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8622493Z copying torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8630469Z copying torch\include\ATen\ops\expand_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8639507Z copying torch\include\ATen\ops\expand_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8647854Z copying torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8657549Z copying torch\include\ATen\ops\expand_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8666296Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8675959Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8683877Z copying torch\include\ATen\ops\expand_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8693419Z copying torch\include\ATen\ops\expand_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8701363Z copying torch\include\ATen\ops\expand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8710353Z copying torch\include\ATen\ops\expand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8718451Z copying torch\include\ATen\ops\expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8726688Z copying torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8751275Z copying torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8758981Z copying torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8767160Z copying torch\include\ATen\ops\expm1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8772215Z copying torch\include\ATen\ops\expm1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8779152Z copying torch\include\ATen\ops\expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8785821Z copying torch\include\ATen\ops\expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8792495Z copying torch\include\ATen\ops\exponential.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8800404Z copying torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8808227Z copying torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8814830Z copying torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8827255Z copying torch\include\ATen\ops\exponential_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8833807Z copying torch\include\ATen\ops\exponential_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8840662Z copying torch\include\ATen\ops\exponential_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8847940Z copying torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8854679Z copying torch\include\ATen\ops\exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8861149Z copying torch\include\ATen\ops\exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8867650Z copying torch\include\ATen\ops\exp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8873866Z copying torch\include\ATen\ops\exp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8880559Z copying torch\include\ATen\ops\exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8887260Z copying torch\include\ATen\ops\exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8893393Z copying torch\include\ATen\ops\eye.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8900182Z copying torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8907191Z copying torch\include\ATen\ops\eye_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8913729Z copying torch\include\ATen\ops\eye_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8920391Z copying torch\include\ATen\ops\eye_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8926988Z copying torch\include\ATen\ops\eye_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8933533Z copying torch\include\ATen\ops\eye_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8939862Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8946471Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8953586Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.8960859Z 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-08-26T20:11:39.8967629Z 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-08-26T20:11:39.8974541Z 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-08-26T20:11:39.8981775Z 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-08-26T20:11:39.8988788Z 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-08-26T20:11:39.8995818Z 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-08-26T20:11:39.9003737Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9010008Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9051345Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9059291Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9065378Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9072185Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9079220Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9086530Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9094113Z 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-08-26T20:11:39.9101421Z 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-08-26T20:11:39.9112984Z 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-08-26T20:11:39.9120653Z 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-08-26T20:11:39.9128333Z 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-08-26T20:11:39.9134960Z 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-08-26T20:11:39.9142002Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9149206Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9157003Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9163570Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9171025Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9177887Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9185851Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9192468Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9199940Z 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-08-26T20:11:39.9207046Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9214615Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9221320Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9246157Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9247027Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9249277Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9256432Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9264272Z 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-08-26T20:11:39.9271037Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9277902Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9285375Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9292172Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9299301Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9306762Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9313598Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9320510Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9328171Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9335120Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9342055Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9348750Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9356056Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9363027Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9369840Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9377003Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9384208Z copying torch\include\ATen\ops\feature_alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9391334Z copying torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9397980Z copying torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9409308Z copying torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9416163Z copying torch\include\ATen\ops\feature_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9423225Z copying torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9430051Z copying torch\include\ATen\ops\feature_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9441096Z copying torch\include\ATen\ops\feature_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9447901Z copying torch\include\ATen\ops\fft_fft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9454357Z copying torch\include\ATen\ops\fft_fft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9461051Z copying torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9468075Z copying torch\include\ATen\ops\fft_fft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9474711Z copying torch\include\ATen\ops\fft_fft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9481517Z copying torch\include\ATen\ops\fft_fftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9488771Z copying torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9499963Z copying torch\include\ATen\ops\fft_fftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9506852Z copying torch\include\ATen\ops\fft_fftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9513575Z copying torch\include\ATen\ops\fft_fftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9520163Z copying torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9527182Z copying torch\include\ATen\ops\fft_fftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9533856Z copying torch\include\ATen\ops\fft_fftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9541089Z copying torch\include\ATen\ops\fft_fftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9550114Z copying torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9559934Z copying torch\include\ATen\ops\fft_fftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9568181Z copying torch\include\ATen\ops\fft_fftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9577694Z copying torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9585736Z copying torch\include\ATen\ops\fft_fft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9595022Z copying torch\include\ATen\ops\fft_fft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9609279Z copying torch\include\ATen\ops\fft_hfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9617296Z copying torch\include\ATen\ops\fft_hfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9624470Z copying torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9636761Z copying torch\include\ATen\ops\fft_hfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9643532Z copying torch\include\ATen\ops\fft_hfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9668837Z copying torch\include\ATen\ops\fft_hfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9669832Z copying torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9670732Z copying torch\include\ATen\ops\fft_hfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9673334Z copying torch\include\ATen\ops\fft_hfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9680310Z copying torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9687034Z copying torch\include\ATen\ops\fft_hfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9698178Z copying torch\include\ATen\ops\fft_hfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9704979Z copying torch\include\ATen\ops\fft_ifft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9711714Z copying torch\include\ATen\ops\fft_ifft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9750555Z copying torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9761988Z copying torch\include\ATen\ops\fft_ifft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9765478Z copying torch\include\ATen\ops\fft_ifft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9773582Z copying torch\include\ATen\ops\fft_ifftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9780130Z copying torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9786757Z copying torch\include\ATen\ops\fft_ifftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9793536Z copying torch\include\ATen\ops\fft_ifftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9800305Z copying torch\include\ATen\ops\fft_ifftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9808030Z copying torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9819117Z copying torch\include\ATen\ops\fft_ifftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9825408Z copying torch\include\ATen\ops\fft_ifftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9832503Z copying torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9838911Z copying torch\include\ATen\ops\fft_ifft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9850060Z copying torch\include\ATen\ops\fft_ifft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9856547Z copying torch\include\ATen\ops\fft_ihfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9863021Z copying torch\include\ATen\ops\fft_ihfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9870068Z copying torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9876631Z copying torch\include\ATen\ops\fft_ihfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9883212Z copying torch\include\ATen\ops\fft_ihfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9890027Z copying torch\include\ATen\ops\fft_ihfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9898488Z copying torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9904530Z copying torch\include\ATen\ops\fft_ihfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9911008Z copying torch\include\ATen\ops\fft_ihfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9918091Z copying torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9924588Z copying torch\include\ATen\ops\fft_ihfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9931227Z copying torch\include\ATen\ops\fft_ihfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9937723Z copying torch\include\ATen\ops\fft_irfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9944625Z copying torch\include\ATen\ops\fft_irfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9951731Z copying torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9958278Z copying torch\include\ATen\ops\fft_irfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9965004Z copying torch\include\ATen\ops\fft_irfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9972323Z copying torch\include\ATen\ops\fft_irfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9979441Z copying torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9985972Z copying torch\include\ATen\ops\fft_irfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9992596Z copying torch\include\ATen\ops\fft_irfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:39.9999483Z copying torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0010596Z copying torch\include\ATen\ops\fft_irfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0017740Z copying torch\include\ATen\ops\fft_irfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0024309Z copying torch\include\ATen\ops\fft_rfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0030716Z copying torch\include\ATen\ops\fft_rfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0037537Z copying torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0044034Z copying torch\include\ATen\ops\fft_rfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0050750Z copying torch\include\ATen\ops\fft_rfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0057510Z copying torch\include\ATen\ops\fft_rfftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0064765Z copying torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0071804Z copying torch\include\ATen\ops\fft_rfftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0078701Z copying torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0085574Z copying torch\include\ATen\ops\fft_rfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0092661Z copying torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0099847Z copying torch\include\ATen\ops\fft_rfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0106453Z copying torch\include\ATen\ops\fft_rfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0114053Z copying torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0121234Z copying torch\include\ATen\ops\fft_rfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0128073Z copying torch\include\ATen\ops\fft_rfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0134836Z copying torch\include\ATen\ops\fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0142228Z copying torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0149522Z copying torch\include\ATen\ops\fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0157119Z copying torch\include\ATen\ops\fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0164676Z copying torch\include\ATen\ops\fill_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0171801Z copying torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0178678Z copying torch\include\ATen\ops\fill_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0185336Z copying torch\include\ATen\ops\fill_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0192067Z copying torch\include\ATen\ops\fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0198423Z copying torch\include\ATen\ops\fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0210575Z copying torch\include\ATen\ops\fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0217093Z copying torch\include\ATen\ops\fix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0223728Z copying torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0230150Z copying torch\include\ATen\ops\fix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0236929Z copying torch\include\ATen\ops\fix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0243530Z copying torch\include\ATen\ops\flatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0250425Z copying torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0256840Z copying torch\include\ATen\ops\flatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0268055Z copying torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0274646Z copying torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0281000Z copying torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0287874Z copying torch\include\ATen\ops\flatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0298150Z copying torch\include\ATen\ops\flatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0304862Z copying torch\include\ATen\ops\flip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0311566Z copying torch\include\ATen\ops\fliplr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0317823Z copying torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0324327Z copying torch\include\ATen\ops\fliplr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0330675Z copying torch\include\ATen\ops\fliplr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0337273Z copying torch\include\ATen\ops\flipud.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0343793Z copying torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0350377Z copying torch\include\ATen\ops\flipud_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0356882Z copying torch\include\ATen\ops\flipud_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0363725Z copying torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0370289Z copying torch\include\ATen\ops\flip_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0376910Z copying torch\include\ATen\ops\flip_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0383650Z copying torch\include\ATen\ops\flip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0390115Z copying torch\include\ATen\ops\flip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0396654Z copying torch\include\ATen\ops\float_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0409427Z copying torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0415841Z copying torch\include\ATen\ops\float_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0423140Z copying torch\include\ATen\ops\float_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0429699Z copying torch\include\ATen\ops\floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0436438Z copying torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0442925Z copying torch\include\ATen\ops\floor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0449851Z copying torch\include\ATen\ops\floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0456513Z copying torch\include\ATen\ops\floor_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0468286Z copying torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0474858Z copying torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0481570Z copying torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0488823Z copying torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0495539Z copying torch\include\ATen\ops\floor_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0502400Z copying torch\include\ATen\ops\floor_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0509081Z copying torch\include\ATen\ops\floor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0515999Z copying torch\include\ATen\ops\floor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0527554Z copying torch\include\ATen\ops\floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0534101Z copying torch\include\ATen\ops\floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0540861Z copying torch\include\ATen\ops\fmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0547557Z copying torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0559214Z copying torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0565938Z copying torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0572440Z copying torch\include\ATen\ops\fmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0578961Z copying torch\include\ATen\ops\fmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0585527Z copying torch\include\ATen\ops\fmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0592536Z copying torch\include\ATen\ops\fmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0598695Z copying torch\include\ATen\ops\fmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0605547Z copying torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0612118Z copying torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0618893Z copying torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0625631Z copying torch\include\ATen\ops\fmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0649124Z copying torch\include\ATen\ops\fmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0656443Z copying torch\include\ATen\ops\fmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0662246Z copying torch\include\ATen\ops\fmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0668748Z copying torch\include\ATen\ops\fmod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0675505Z copying torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0682041Z copying torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0688885Z copying torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0695489Z copying torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0702108Z copying torch\include\ATen\ops\fmod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0708732Z copying torch\include\ATen\ops\fmod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0715909Z copying torch\include\ATen\ops\fmod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0722320Z copying torch\include\ATen\ops\fmod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0728678Z copying torch\include\ATen\ops\frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0739707Z copying torch\include\ATen\ops\fractional_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0747276Z copying torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0754092Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0761128Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0803205Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0804172Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0805170Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0806117Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0807036Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0809509Z copying torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0815508Z copying torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0858851Z copying torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0870424Z copying torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0877305Z copying torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0885031Z copying torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0891323Z copying torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0898035Z copying torch\include\ATen\ops\fractional_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0904973Z copying torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0912205Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0918909Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0930423Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0937183Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0944512Z copying torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0951411Z copying torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0958460Z copying torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0965139Z copying torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0972097Z copying torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0978763Z copying torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0985552Z copying torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0992754Z copying torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.0999271Z copying torch\include\ATen\ops\frac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1005988Z copying torch\include\ATen\ops\frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1012612Z copying torch\include\ATen\ops\frac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1019446Z copying torch\include\ATen\ops\frac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1026080Z copying torch\include\ATen\ops\frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1032510Z copying torch\include\ATen\ops\frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1038850Z copying torch\include\ATen\ops\frexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1046040Z copying torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1053585Z copying torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1059615Z copying torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1071661Z copying torch\include\ATen\ops\frexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1078643Z copying torch\include\ATen\ops\frexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1085442Z copying torch\include\ATen\ops\frobenius_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1092426Z copying torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1099870Z copying torch\include\ATen\ops\frobenius_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1106354Z copying torch\include\ATen\ops\frobenius_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1112980Z copying torch\include\ATen\ops\from_blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1119984Z copying torch\include\ATen\ops\from_file.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1127733Z copying torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1134332Z copying torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1140994Z copying torch\include\ATen\ops\from_file_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1147721Z copying torch\include\ATen\ops\from_file_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1165026Z copying torch\include\ATen\ops\full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1171901Z copying torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1178603Z copying torch\include\ATen\ops\full_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1186080Z copying torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1192225Z copying torch\include\ATen\ops\full_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1199502Z copying torch\include\ATen\ops\full_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1206645Z copying torch\include\ATen\ops\full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1213177Z copying torch\include\ATen\ops\full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1220479Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1227239Z 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-08-26T20:11:40.1233951Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1240815Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1266526Z copying torch\include\ATen\ops\gather.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1267280Z copying torch\include\ATen\ops\gather_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1268191Z copying torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1270264Z copying torch\include\ATen\ops\gather_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1282742Z copying torch\include\ATen\ops\gather_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1291149Z copying torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1297163Z copying torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1304068Z copying torch\include\ATen\ops\gather_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1314982Z copying torch\include\ATen\ops\gather_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1321989Z copying torch\include\ATen\ops\gather_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1328804Z copying torch\include\ATen\ops\gather_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1335221Z copying torch\include\ATen\ops\gather_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1348450Z copying torch\include\ATen\ops\gather_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1354050Z copying torch\include\ATen\ops\gcd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1361154Z copying torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1367632Z copying torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1374530Z copying torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1380973Z copying torch\include\ATen\ops\gcd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1387376Z copying torch\include\ATen\ops\gcd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1393805Z copying torch\include\ATen\ops\gcd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1400365Z copying torch\include\ATen\ops\gcd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1406811Z copying torch\include\ATen\ops\ge.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1413174Z copying torch\include\ATen\ops\gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1419567Z copying torch\include\ATen\ops\gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1427772Z copying torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1434181Z copying torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1441014Z copying torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1447865Z copying torch\include\ATen\ops\gelu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1460534Z copying torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1467893Z copying torch\include\ATen\ops\gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1474302Z copying torch\include\ATen\ops\gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1481627Z copying torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1488274Z copying torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1495005Z copying torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1502268Z copying torch\include\ATen\ops\gelu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1508781Z copying torch\include\ATen\ops\gelu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1515659Z copying torch\include\ATen\ops\gelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1522251Z copying torch\include\ATen\ops\gelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1528779Z copying torch\include\ATen\ops\geometric.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1536895Z copying torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1543345Z copying torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1550178Z copying torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1556969Z copying torch\include\ATen\ops\geometric_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1563788Z copying torch\include\ATen\ops\geometric_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1571091Z copying torch\include\ATen\ops\geometric_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1577645Z copying torch\include\ATen\ops\geqrf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1584046Z copying torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1590877Z copying torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1603130Z copying torch\include\ATen\ops\geqrf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1611151Z copying torch\include\ATen\ops\geqrf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1617084Z copying torch\include\ATen\ops\ger.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1623351Z copying torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1630487Z copying torch\include\ATen\ops\ger_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1637036Z copying torch\include\ATen\ops\ger_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1643904Z copying torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1651540Z copying torch\include\ATen\ops\ge_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1689974Z copying torch\include\ATen\ops\ge_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1697323Z copying torch\include\ATen\ops\ge_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1703371Z copying torch\include\ATen\ops\ge_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1710776Z copying torch\include\ATen\ops\ge_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1717407Z copying torch\include\ATen\ops\ge_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1723783Z copying torch\include\ATen\ops\glu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1730310Z copying torch\include\ATen\ops\glu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1737859Z copying torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1744618Z copying torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1751364Z copying torch\include\ATen\ops\glu_backward_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1758570Z copying torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1765718Z copying torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1778067Z copying torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1784280Z copying torch\include\ATen\ops\glu_backward_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1791700Z copying torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1798610Z copying torch\include\ATen\ops\glu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1811056Z copying torch\include\ATen\ops\glu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1819886Z copying torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1825111Z copying torch\include\ATen\ops\glu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1831668Z copying torch\include\ATen\ops\glu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1838358Z copying torch\include\ATen\ops\glu_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1844872Z copying torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1851616Z copying torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1858213Z copying torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1869871Z copying torch\include\ATen\ops\glu_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1876555Z copying torch\include\ATen\ops\glu_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1883073Z copying torch\include\ATen\ops\glu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1889291Z copying torch\include\ATen\ops\glu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1900514Z copying torch\include\ATen\ops\glu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1907322Z copying torch\include\ATen\ops\glu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1913549Z copying torch\include\ATen\ops\gradient.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1920238Z copying torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1932552Z copying torch\include\ATen\ops\gradient_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1939367Z copying torch\include\ATen\ops\gradient_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1945951Z copying torch\include\ATen\ops\greater.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1952595Z copying torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1959036Z copying torch\include\ATen\ops\greater_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1966216Z copying torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1972659Z copying torch\include\ATen\ops\greater_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1979358Z copying torch\include\ATen\ops\greater_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1986462Z copying torch\include\ATen\ops\greater_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.1994443Z copying torch\include\ATen\ops\greater_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2000498Z copying torch\include\ATen\ops\grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2006902Z copying torch\include\ATen\ops\grid_sampler_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2013659Z copying torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2020864Z copying torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2027622Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2035258Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2041693Z copying torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2048583Z copying torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2055680Z copying torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2063905Z copying torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2070017Z copying torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2076718Z copying torch\include\ATen\ops\grid_sampler_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2083477Z copying torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2090314Z copying torch\include\ATen\ops\grid_sampler_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2103119Z copying torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2110112Z copying torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2121808Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2128669Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2150004Z copying torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2156427Z copying torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2163581Z copying torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2170588Z copying torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2181997Z copying torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2190010Z copying torch\include\ATen\ops\grid_sampler_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2195904Z copying torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2202932Z copying torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2209920Z copying torch\include\ATen\ops\grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2216812Z copying torch\include\ATen\ops\grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2224452Z copying torch\include\ATen\ops\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2231065Z copying torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2237681Z copying torch\include\ATen\ops\group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2244728Z copying torch\include\ATen\ops\group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2251470Z copying torch\include\ATen\ops\gru.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2258634Z copying torch\include\ATen\ops\gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2270582Z copying torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2276905Z copying torch\include\ATen\ops\gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2283718Z copying torch\include\ATen\ops\gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2290524Z copying torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2297093Z copying torch\include\ATen\ops\gru_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2303542Z copying torch\include\ATen\ops\gru_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2310022Z copying torch\include\ATen\ops\gt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2316661Z copying torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2327944Z copying torch\include\ATen\ops\gt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2334964Z copying torch\include\ATen\ops\gt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2341707Z copying torch\include\ATen\ops\gt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2348458Z copying torch\include\ATen\ops\gt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2355008Z copying torch\include\ATen\ops\gt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2361374Z copying torch\include\ATen\ops\gt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2367829Z copying torch\include\ATen\ops\hamming_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2374806Z copying torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2381294Z copying torch\include\ATen\ops\hamming_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2388050Z copying torch\include\ATen\ops\hamming_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2394860Z copying torch\include\ATen\ops\hann_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2401825Z copying torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2408601Z copying torch\include\ATen\ops\hann_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2415334Z copying torch\include\ATen\ops\hann_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2422019Z copying torch\include\ATen\ops\hardshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2428424Z copying torch\include\ATen\ops\hardshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2435660Z copying torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2442236Z copying torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2449009Z copying torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2455805Z copying torch\include\ATen\ops\hardshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2468007Z copying torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2474810Z copying torch\include\ATen\ops\hardshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2481657Z copying torch\include\ATen\ops\hardshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2489175Z copying torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2495659Z copying torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2503559Z copying torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2509693Z copying torch\include\ATen\ops\hardshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2516493Z copying torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2523462Z copying torch\include\ATen\ops\hardshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2530492Z copying torch\include\ATen\ops\hardshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2538341Z copying torch\include\ATen\ops\hardsigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2544146Z copying torch\include\ATen\ops\hardsigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2552074Z copying torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2558966Z copying torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2566863Z copying torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2573061Z copying torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2580008Z copying torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2586818Z copying torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2593627Z copying torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2601555Z copying torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2612964Z copying torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2619660Z copying torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2626578Z copying torch\include\ATen\ops\hardsigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2633294Z copying torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2640150Z copying torch\include\ATen\ops\hardsigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2647460Z copying torch\include\ATen\ops\hardsigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2654753Z copying torch\include\ATen\ops\hardswish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2661527Z copying torch\include\ATen\ops\hardswish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2668830Z copying torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2685594Z copying torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2692772Z copying torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2699296Z copying torch\include\ATen\ops\hardswish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2706120Z copying torch\include\ATen\ops\hardswish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2713029Z copying torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2719985Z copying torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2726862Z copying torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2733989Z copying torch\include\ATen\ops\hardswish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2740805Z copying torch\include\ATen\ops\hardswish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2747598Z copying torch\include\ATen\ops\hardtanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2754479Z copying torch\include\ATen\ops\hardtanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2767339Z copying torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2774122Z copying torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2780918Z copying torch\include\ATen\ops\hardtanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2787916Z copying torch\include\ATen\ops\hardtanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2800270Z copying torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2807028Z copying torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2813843Z copying torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2820917Z copying torch\include\ATen\ops\hardtanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2833145Z copying torch\include\ATen\ops\hardtanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2839902Z copying torch\include\ATen\ops\hash_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2847306Z copying torch\include\ATen\ops\hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2856347Z copying torch\include\ATen\ops\hash_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2862995Z copying torch\include\ATen\ops\hash_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2869523Z copying torch\include\ATen\ops\hash_tensor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2876254Z copying torch\include\ATen\ops\hash_tensor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2882858Z copying torch\include\ATen\ops\hash_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2894484Z copying torch\include\ATen\ops\hash_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2901673Z copying torch\include\ATen\ops\heaviside.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2909386Z copying torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2916147Z copying torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.2923294Z copying torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4111364Z copying torch\include\ATen\ops\heaviside_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4118249Z copying torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4125049Z copying torch\include\ATen\ops\heaviside_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4131911Z copying torch\include\ATen\ops\heaviside_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4139014Z copying torch\include\ATen\ops\hinge_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4146247Z copying torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4337336Z copying torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4338219Z copying torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4338987Z copying torch\include\ATen\ops\histc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4339731Z copying torch\include\ATen\ops\histc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4340507Z copying torch\include\ATen\ops\histc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4341270Z copying torch\include\ATen\ops\histc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4341979Z copying torch\include\ATen\ops\histc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4342694Z copying torch\include\ATen\ops\histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4343404Z copying torch\include\ATen\ops\histogramdd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4344294Z copying torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4345219Z copying torch\include\ATen\ops\histogramdd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4346082Z copying torch\include\ATen\ops\histogramdd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4346875Z copying torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4347684Z copying torch\include\ATen\ops\histogram_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4348430Z copying torch\include\ATen\ops\histogram_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4349142Z copying torch\include\ATen\ops\hsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4350043Z copying torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4350975Z copying torch\include\ATen\ops\hsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4351703Z copying torch\include\ATen\ops\hsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4352387Z copying torch\include\ATen\ops\hspmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4353095Z copying torch\include\ATen\ops\hspmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4353849Z copying torch\include\ATen\ops\hspmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4354547Z copying torch\include\ATen\ops\hstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4355394Z copying torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4356266Z copying torch\include\ATen\ops\hstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4356990Z copying torch\include\ATen\ops\hstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4363770Z copying torch\include\ATen\ops\huber_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4370354Z copying torch\include\ATen\ops\huber_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4377373Z copying torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4384165Z copying torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4390988Z copying torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4397984Z copying torch\include\ATen\ops\huber_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4404748Z copying torch\include\ATen\ops\huber_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4417699Z copying torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4424722Z copying torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4431548Z copying torch\include\ATen\ops\huber_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4438438Z copying torch\include\ATen\ops\huber_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4445124Z copying torch\include\ATen\ops\hypot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4451917Z copying torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4458662Z copying torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4465190Z copying torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4503215Z copying torch\include\ATen\ops\hypot_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4509944Z copying torch\include\ATen\ops\hypot_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4517972Z copying torch\include\ATen\ops\hypot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4524602Z copying torch\include\ATen\ops\hypot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4531455Z copying torch\include\ATen\ops\i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4538558Z copying torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4544764Z copying torch\include\ATen\ops\i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4551357Z copying torch\include\ATen\ops\i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4557741Z copying torch\include\ATen\ops\i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4564248Z copying torch\include\ATen\ops\i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4570962Z copying torch\include\ATen\ops\i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4576970Z copying torch\include\ATen\ops\i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4587938Z copying torch\include\ATen\ops\igamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4594372Z copying torch\include\ATen\ops\igammac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4601181Z copying torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4608278Z copying torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4614928Z copying torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4621710Z copying torch\include\ATen\ops\igammac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4628846Z copying torch\include\ATen\ops\igammac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4636158Z copying torch\include\ATen\ops\igammac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4643134Z copying torch\include\ATen\ops\igammac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4650603Z copying torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4657515Z copying torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4664323Z copying torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4674907Z copying torch\include\ATen\ops\igamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4682290Z copying torch\include\ATen\ops\igamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4689170Z copying torch\include\ATen\ops\igamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4696071Z copying torch\include\ATen\ops\igamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4707413Z copying torch\include\ATen\ops\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4713959Z copying torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4720736Z copying torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4727961Z copying torch\include\ATen\ops\im2col_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4738416Z copying torch\include\ATen\ops\im2col_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4745460Z copying torch\include\ATen\ops\imag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4752139Z copying torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4758758Z copying torch\include\ATen\ops\imag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4784545Z copying torch\include\ATen\ops\imag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4785251Z copying torch\include\ATen\ops\index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4785925Z copying torch\include\ATen\ops\index_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4787455Z copying torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4794513Z copying torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4802706Z copying torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4808869Z copying torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4815968Z copying torch\include\ATen\ops\index_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4860085Z copying torch\include\ATen\ops\index_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4867825Z copying torch\include\ATen\ops\index_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4874533Z copying torch\include\ATen\ops\index_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4881670Z copying torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4888661Z copying torch\include\ATen\ops\index_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4895855Z copying torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4903118Z copying torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4910136Z copying torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4917350Z copying torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4924091Z copying torch\include\ATen\ops\index_copy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4931340Z copying torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4938319Z copying torch\include\ATen\ops\index_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4944885Z copying torch\include\ATen\ops\index_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4952324Z copying torch\include\ATen\ops\index_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4959004Z copying torch\include\ATen\ops\index_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4966544Z copying torch\include\ATen\ops\index_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4973384Z copying torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4980231Z copying torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4987196Z copying torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.4994477Z copying torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5001278Z copying torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5008124Z copying torch\include\ATen\ops\index_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5014767Z copying torch\include\ATen\ops\index_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5021466Z copying torch\include\ATen\ops\index_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5028738Z copying torch\include\ATen\ops\index_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5035740Z copying torch\include\ATen\ops\index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5042502Z copying torch\include\ATen\ops\index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5049173Z copying torch\include\ATen\ops\index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5061653Z copying torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5068217Z copying torch\include\ATen\ops\index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5074962Z copying torch\include\ATen\ops\index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5081686Z copying torch\include\ATen\ops\index_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5088984Z copying torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5096465Z copying torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5103425Z copying torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5110076Z copying torch\include\ATen\ops\index_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5120864Z copying torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5128475Z copying torch\include\ATen\ops\index_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5135185Z copying torch\include\ATen\ops\index_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5141862Z copying torch\include\ATen\ops\index_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5149837Z copying torch\include\ATen\ops\index_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5156743Z copying torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5163975Z copying torch\include\ATen\ops\index_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5170867Z copying torch\include\ATen\ops\index_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5177881Z copying torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5184529Z copying torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5191585Z copying torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5199079Z copying torch\include\ATen\ops\index_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5206218Z copying torch\include\ATen\ops\index_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5213036Z copying torch\include\ATen\ops\indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5222944Z copying torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5229791Z copying torch\include\ATen\ops\indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5242225Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5249384Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5255977Z copying torch\include\ATen\ops\indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5262480Z copying torch\include\ATen\ops\indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5301928Z copying torch\include\ATen\ops\indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5308665Z copying torch\include\ATen\ops\indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5390317Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5397390Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5404574Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5411437Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5418750Z copying torch\include\ATen\ops\inner.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5425544Z copying torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5433552Z copying torch\include\ATen\ops\inner_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5440503Z copying torch\include\ATen\ops\inner_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5447407Z copying torch\include\ATen\ops\instance_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5454598Z copying torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5462217Z copying torch\include\ATen\ops\instance_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5468849Z copying torch\include\ATen\ops\instance_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5475363Z copying torch\include\ATen\ops\int_repr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5482089Z copying torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5493589Z copying torch\include\ATen\ops\int_repr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5500778Z copying torch\include\ATen\ops\int_repr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5507895Z copying torch\include\ATen\ops\inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5514702Z copying torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5521125Z copying torch\include\ATen\ops\inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5528272Z copying torch\include\ATen\ops\inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5535153Z copying torch\include\ATen\ops\isclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5542199Z copying torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5549822Z copying torch\include\ATen\ops\isclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5556626Z copying torch\include\ATen\ops\isclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5563194Z copying torch\include\ATen\ops\isfinite.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5570134Z copying torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5577407Z copying torch\include\ATen\ops\isfinite_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5584066Z copying torch\include\ATen\ops\isfinite_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5590976Z copying torch\include\ATen\ops\isin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5597627Z copying torch\include\ATen\ops\isinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5604791Z copying torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5611854Z copying torch\include\ATen\ops\isinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5618703Z copying torch\include\ATen\ops\isinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5625575Z copying torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5636229Z copying torch\include\ATen\ops\isin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5643058Z copying torch\include\ATen\ops\isin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5649768Z copying torch\include\ATen\ops\isin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5656786Z copying torch\include\ATen\ops\isin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5663662Z copying torch\include\ATen\ops\isin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5671484Z copying torch\include\ATen\ops\isin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5678084Z copying torch\include\ATen\ops\isnan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5685027Z copying torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5691759Z copying torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5698535Z copying torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5705327Z copying torch\include\ATen\ops\isnan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5712393Z copying torch\include\ATen\ops\isnan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5719177Z copying torch\include\ATen\ops\isneginf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5726766Z copying torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5743554Z copying torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5744448Z copying torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5751275Z copying torch\include\ATen\ops\isneginf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5757526Z copying torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5764327Z copying torch\include\ATen\ops\isneginf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5771159Z copying torch\include\ATen\ops\isneginf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5791012Z copying torch\include\ATen\ops\isposinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5794202Z copying torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5836942Z copying torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5844215Z copying torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5851277Z copying torch\include\ATen\ops\isposinf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5870217Z copying torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5877627Z copying torch\include\ATen\ops\isposinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5884421Z copying torch\include\ATen\ops\isposinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5907963Z copying torch\include\ATen\ops\isreal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5914644Z copying torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5923294Z copying torch\include\ATen\ops\isreal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5930388Z copying torch\include\ATen\ops\isreal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5966478Z copying torch\include\ATen\ops\istft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5973068Z copying torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5979491Z copying torch\include\ATen\ops\istft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5985958Z copying torch\include\ATen\ops\istft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.5997230Z copying torch\include\ATen\ops\is_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6003728Z copying torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6010523Z copying torch\include\ATen\ops\is_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6016753Z copying torch\include\ATen\ops\is_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6023294Z copying torch\include\ATen\ops\is_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6030141Z copying torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6036795Z copying torch\include\ATen\ops\is_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6043472Z copying torch\include\ATen\ops\is_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6050327Z copying torch\include\ATen\ops\is_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6056861Z copying torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6063417Z copying torch\include\ATen\ops\is_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6069967Z copying torch\include\ATen\ops\is_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6076998Z copying torch\include\ATen\ops\is_distributed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6084006Z copying torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6091042Z copying torch\include\ATen\ops\is_distributed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6097605Z copying torch\include\ATen\ops\is_distributed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6104804Z copying torch\include\ATen\ops\is_floating_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6111783Z copying torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6118414Z copying torch\include\ATen\ops\is_floating_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6125394Z copying torch\include\ATen\ops\is_floating_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6136264Z copying torch\include\ATen\ops\is_inference.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6143216Z copying torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6150301Z copying torch\include\ATen\ops\is_inference_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6157135Z copying torch\include\ATen\ops\is_inference_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6164129Z copying torch\include\ATen\ops\is_leaf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6170820Z copying torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6177869Z copying torch\include\ATen\ops\is_leaf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6185422Z copying torch\include\ATen\ops\is_leaf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6191351Z copying torch\include\ATen\ops\is_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6198319Z copying torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6205059Z copying torch\include\ATen\ops\is_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6212229Z copying torch\include\ATen\ops\is_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6220018Z copying torch\include\ATen\ops\is_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6226015Z copying torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6232838Z copying torch\include\ATen\ops\is_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6239393Z copying torch\include\ATen\ops\is_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6246488Z copying torch\include\ATen\ops\is_pinned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6254350Z copying torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6260522Z copying torch\include\ATen\ops\is_pinned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6267422Z copying torch\include\ATen\ops\is_pinned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6274130Z copying torch\include\ATen\ops\is_same_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6281457Z copying torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6289256Z copying torch\include\ATen\ops\is_same_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6295726Z copying torch\include\ATen\ops\is_same_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6302548Z copying torch\include\ATen\ops\is_set_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6309226Z copying torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6316017Z copying torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6324542Z copying torch\include\ATen\ops\is_set_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6329894Z copying torch\include\ATen\ops\is_set_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6336276Z copying torch\include\ATen\ops\is_signed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6343278Z copying torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6349762Z copying torch\include\ATen\ops\is_signed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6356095Z copying torch\include\ATen\ops\is_signed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6362783Z copying torch\include\ATen\ops\is_vulkan_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6369739Z copying torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6376370Z copying torch\include\ATen\ops\is_vulkan_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6383331Z copying torch\include\ATen\ops\is_vulkan_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6390322Z copying torch\include\ATen\ops\item.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6397041Z copying torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6403544Z copying torch\include\ATen\ops\item_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6415043Z copying torch\include\ATen\ops\item_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6422212Z copying torch\include\ATen\ops\kaiser_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6430659Z copying torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6438771Z copying torch\include\ATen\ops\kaiser_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6445626Z copying torch\include\ATen\ops\kaiser_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6454223Z copying torch\include\ATen\ops\kl_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6461110Z copying torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6467925Z copying torch\include\ATen\ops\kl_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6474239Z copying torch\include\ATen\ops\kl_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6480734Z copying torch\include\ATen\ops\kron.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6488046Z copying torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6494522Z copying torch\include\ATen\ops\kron_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6501085Z copying torch\include\ATen\ops\kron_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6507603Z copying torch\include\ATen\ops\kthvalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6514541Z copying torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6521263Z copying torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6532820Z copying torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6539836Z copying torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6546911Z copying torch\include\ATen\ops\kthvalue_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6553769Z copying torch\include\ATen\ops\kthvalue_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6560488Z copying torch\include\ATen\ops\l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6567519Z copying torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6574315Z copying torch\include\ATen\ops\l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6580466Z copying torch\include\ATen\ops\l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6587182Z copying torch\include\ATen\ops\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6594142Z copying torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6601474Z copying torch\include\ATen\ops\layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6608220Z copying torch\include\ATen\ops\layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6616042Z copying torch\include\ATen\ops\lcm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6623093Z copying torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6629590Z copying torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6636434Z copying torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6643135Z copying torch\include\ATen\ops\lcm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6649617Z copying torch\include\ATen\ops\lcm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6656232Z copying torch\include\ATen\ops\lcm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6662901Z copying torch\include\ATen\ops\lcm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6670420Z copying torch\include\ATen\ops\ldexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6676649Z copying torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6683560Z copying torch\include\ATen\ops\ldexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6690320Z copying torch\include\ATen\ops\ldexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6697020Z copying torch\include\ATen\ops\le.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6703455Z copying torch\include\ATen\ops\leaky_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6710716Z copying torch\include\ATen\ops\leaky_relu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6718119Z copying torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6724861Z copying torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6731714Z copying torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6739449Z copying torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6746382Z copying torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6753242Z copying torch\include\ATen\ops\leaky_relu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6760070Z copying torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6767491Z copying torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6774553Z copying torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6781559Z copying torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6788784Z copying torch\include\ATen\ops\leaky_relu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6795776Z copying torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6808337Z copying torch\include\ATen\ops\leaky_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6814969Z copying torch\include\ATen\ops\leaky_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6821678Z copying torch\include\ATen\ops\lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6828630Z copying torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6840688Z copying torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6847168Z copying torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6853666Z copying torch\include\ATen\ops\lerp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6860243Z copying torch\include\ATen\ops\lerp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6867289Z copying torch\include\ATen\ops\lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6874871Z copying torch\include\ATen\ops\lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6882032Z copying torch\include\ATen\ops\less.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6889275Z copying torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.6896296Z copying torch\include\ATen\ops\less_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7792368Z copying torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7800114Z copying torch\include\ATen\ops\less_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7807765Z copying torch\include\ATen\ops\less_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7815007Z copying torch\include\ATen\ops\less_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7821691Z copying torch\include\ATen\ops\less_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7828539Z copying torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7835210Z copying torch\include\ATen\ops\le_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7841747Z copying torch\include\ATen\ops\le_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7848565Z copying torch\include\ATen\ops\le_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7855208Z copying torch\include\ATen\ops\le_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7861572Z copying torch\include\ATen\ops\le_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7868728Z copying torch\include\ATen\ops\le_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7875023Z copying torch\include\ATen\ops\lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7881891Z copying torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7888846Z copying torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7899958Z copying torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7906542Z copying torch\include\ATen\ops\lgamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7912971Z copying torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7919719Z copying torch\include\ATen\ops\lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7926408Z copying torch\include\ATen\ops\lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7932984Z copying torch\include\ATen\ops\lift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7940105Z copying torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7946884Z copying torch\include\ATen\ops\lift_fresh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7984430Z copying torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7985326Z copying torch\include\ATen\ops\lift_fresh_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7986308Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7987489Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.7994822Z copying torch\include\ATen\ops\lift_fresh_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8002365Z copying torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8008744Z copying torch\include\ATen\ops\lift_fresh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8015202Z copying torch\include\ATen\ops\lift_fresh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8021998Z copying torch\include\ATen\ops\lift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8028555Z copying torch\include\ATen\ops\lift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8035437Z copying torch\include\ATen\ops\linalg_cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8041984Z copying torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8048859Z copying torch\include\ATen\ops\linalg_cholesky_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8055962Z copying torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8062654Z copying torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8069496Z copying torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8076398Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8083313Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8090405Z copying torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8097108Z copying torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8104750Z copying torch\include\ATen\ops\linalg_cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8111054Z copying torch\include\ATen\ops\linalg_cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8117702Z copying torch\include\ATen\ops\linalg_cond.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8124811Z copying torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8131953Z copying torch\include\ATen\ops\linalg_cond_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8138918Z copying torch\include\ATen\ops\linalg_cond_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8146077Z copying torch\include\ATen\ops\linalg_cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8153373Z copying torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8164340Z copying torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8171760Z copying torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8178559Z copying torch\include\ATen\ops\linalg_cross_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8185464Z copying torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8192357Z copying torch\include\ATen\ops\linalg_cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8199212Z copying torch\include\ATen\ops\linalg_cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8206030Z copying torch\include\ATen\ops\linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8213382Z copying torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8220135Z copying torch\include\ATen\ops\linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8226780Z copying torch\include\ATen\ops\linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8233520Z copying torch\include\ATen\ops\linalg_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8240975Z copying torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8247854Z copying torch\include\ATen\ops\linalg_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8254859Z copying torch\include\ATen\ops\linalg_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8261612Z copying torch\include\ATen\ops\linalg_eig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8268343Z copying torch\include\ATen\ops\linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8275426Z copying torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8282196Z copying torch\include\ATen\ops\linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8289338Z copying torch\include\ATen\ops\linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8296817Z copying torch\include\ATen\ops\linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8304127Z copying torch\include\ATen\ops\linalg_eigvalsh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8312118Z copying torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8318970Z copying torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8325920Z copying torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8333526Z copying torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8340681Z copying torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8347471Z copying torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8354078Z copying torch\include\ATen\ops\linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8360648Z copying torch\include\ATen\ops\linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8368289Z copying torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8375033Z copying torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8381792Z copying torch\include\ATen\ops\linalg_eig_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8388573Z copying torch\include\ATen\ops\linalg_eig_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8395525Z copying torch\include\ATen\ops\linalg_householder_product.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8402863Z copying torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8409894Z copying torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8421891Z copying torch\include\ATen\ops\linalg_householder_product_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8428815Z copying torch\include\ATen\ops\linalg_householder_product_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8436023Z copying torch\include\ATen\ops\linalg_inv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8443031Z copying torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8450079Z copying torch\include\ATen\ops\linalg_inv_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8457250Z copying torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8463857Z copying torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8470637Z copying torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8483514Z copying torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8490480Z copying torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8497193Z copying torch\include\ATen\ops\linalg_inv_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8503951Z copying torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8515065Z copying torch\include\ATen\ops\linalg_inv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8521632Z copying torch\include\ATen\ops\linalg_inv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8528439Z copying torch\include\ATen\ops\linalg_ldl_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8535328Z copying torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8559785Z copying torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8567057Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8574218Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8580994Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8587902Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8595226Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8601944Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8608858Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8615725Z copying torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8623150Z copying torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8629777Z copying torch\include\ATen\ops\linalg_ldl_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8637776Z copying torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8644276Z copying torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8651324Z copying torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8659013Z copying torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8666299Z copying torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8673540Z copying torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8680331Z copying torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8687459Z copying torch\include\ATen\ops\linalg_lstsq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8695403Z copying torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8706955Z copying torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8713845Z copying torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8720608Z copying torch\include\ATen\ops\linalg_lstsq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8727551Z copying torch\include\ATen\ops\linalg_lstsq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8734954Z copying torch\include\ATen\ops\linalg_lu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8742215Z copying torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8749086Z copying torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8756079Z copying torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8763901Z copying torch\include\ATen\ops\linalg_lu_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8770587Z copying torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8777797Z copying torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8785738Z copying torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8809057Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8809957Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8810878Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8815924Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8822877Z copying torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8829806Z copying torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8837415Z copying torch\include\ATen\ops\linalg_lu_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8844242Z copying torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8851946Z copying torch\include\ATen\ops\linalg_lu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8861447Z copying torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8868235Z copying torch\include\ATen\ops\linalg_lu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8874998Z copying torch\include\ATen\ops\linalg_lu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8881799Z copying torch\include\ATen\ops\linalg_lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8889172Z copying torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8897666Z copying torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8904434Z copying torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8911167Z copying torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8918170Z copying torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8925089Z copying torch\include\ATen\ops\linalg_lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8931695Z copying torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8944894Z copying torch\include\ATen\ops\linalg_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8953427Z copying torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8960856Z copying torch\include\ATen\ops\linalg_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8967705Z copying torch\include\ATen\ops\linalg_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8974892Z copying torch\include\ATen\ops\linalg_matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8981963Z copying torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8988718Z copying torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.8995862Z copying torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9011244Z copying torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9012081Z copying torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9018948Z copying torch\include\ATen\ops\linalg_matrix_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9025831Z copying torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9032274Z copying torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9039411Z copying torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9046230Z copying torch\include\ATen\ops\linalg_matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9053524Z copying torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9060651Z copying torch\include\ATen\ops\linalg_matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9067658Z copying torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9074461Z copying torch\include\ATen\ops\linalg_matrix_rank.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9081554Z copying torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9088603Z copying torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9095819Z copying torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9102689Z copying torch\include\ATen\ops\linalg_multi_dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9109690Z copying torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9116350Z copying torch\include\ATen\ops\linalg_multi_dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9123113Z copying torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9130050Z copying torch\include\ATen\ops\linalg_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9137085Z copying torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9149475Z copying torch\include\ATen\ops\linalg_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9155928Z copying torch\include\ATen\ops\linalg_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9162932Z copying torch\include\ATen\ops\linalg_pinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9170384Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9181254Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9188398Z copying torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9195221Z copying torch\include\ATen\ops\linalg_pinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9202074Z copying torch\include\ATen\ops\linalg_pinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9213063Z copying torch\include\ATen\ops\linalg_qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9220761Z copying torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9227927Z copying torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9234901Z copying torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9245693Z copying torch\include\ATen\ops\linalg_qr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9252655Z copying torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9259583Z copying torch\include\ATen\ops\linalg_qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9266321Z copying torch\include\ATen\ops\linalg_qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9282389Z copying torch\include\ATen\ops\linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9289631Z copying torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9298074Z copying torch\include\ATen\ops\linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9321170Z copying torch\include\ATen\ops\linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9321939Z copying torch\include\ATen\ops\linalg_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9325351Z copying torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9332420Z copying torch\include\ATen\ops\linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9339753Z copying torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9346972Z copying torch\include\ATen\ops\linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9353657Z copying torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9361510Z copying torch\include\ATen\ops\linalg_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9368415Z copying torch\include\ATen\ops\linalg_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9375597Z copying torch\include\ATen\ops\linalg_solve_triangular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9383008Z copying torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9389764Z copying torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9396763Z copying torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9407840Z copying torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9414417Z copying torch\include\ATen\ops\linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9421229Z copying torch\include\ATen\ops\linalg_svdvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9428257Z copying torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9434922Z copying torch\include\ATen\ops\linalg_svdvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9442424Z copying torch\include\ATen\ops\linalg_svdvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9449974Z copying torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9456716Z copying torch\include\ATen\ops\linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9468086Z copying torch\include\ATen\ops\linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9474702Z copying torch\include\ATen\ops\linalg_tensorinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9481768Z copying torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9488593Z copying torch\include\ATen\ops\linalg_tensorinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9495400Z copying torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9502264Z copying torch\include\ATen\ops\linalg_tensorsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9509318Z copying torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9516012Z copying torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9527986Z copying torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9534783Z copying torch\include\ATen\ops\linalg_vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9541955Z copying torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9548802Z copying torch\include\ATen\ops\linalg_vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9555344Z copying torch\include\ATen\ops\linalg_vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9589364Z copying torch\include\ATen\ops\linalg_vecdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9596545Z copying torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9603933Z copying torch\include\ATen\ops\linalg_vecdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9615218Z copying torch\include\ATen\ops\linalg_vecdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9622165Z copying torch\include\ATen\ops\linalg_vector_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9629665Z copying torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9636699Z copying torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9647167Z copying torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9654155Z copying torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9661216Z copying torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9668228Z copying torch\include\ATen\ops\linalg_vector_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9679106Z copying torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9686311Z copying torch\include\ATen\ops\linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9692953Z copying torch\include\ATen\ops\linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9700561Z copying torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9711514Z copying torch\include\ATen\ops\linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9718313Z copying torch\include\ATen\ops\linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9725509Z copying torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9732890Z copying torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9739634Z copying torch\include\ATen\ops\linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9746463Z copying torch\include\ATen\ops\linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9781041Z copying torch\include\ATen\ops\linspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9787954Z copying torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9794792Z copying torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9804610Z copying torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9810543Z copying torch\include\ATen\ops\linspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9816852Z copying torch\include\ATen\ops\linspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9823693Z copying torch\include\ATen\ops\linspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9830516Z copying torch\include\ATen\ops\log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9836789Z copying torch\include\ATen\ops\log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9843709Z copying torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9856804Z copying torch\include\ATen\ops\log10_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9863686Z copying torch\include\ATen\ops\log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9871208Z copying torch\include\ATen\ops\log10_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9877606Z copying torch\include\ATen\ops\log10_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9884503Z copying torch\include\ATen\ops\log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9891508Z copying torch\include\ATen\ops\log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9898666Z copying torch\include\ATen\ops\log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9905455Z copying torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9911824Z copying torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9918918Z copying torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9925723Z copying torch\include\ATen\ops\log1p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9932227Z copying torch\include\ATen\ops\log1p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9938909Z copying torch\include\ATen\ops\log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9945702Z copying torch\include\ATen\ops\log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9952872Z copying torch\include\ATen\ops\log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9959108Z copying torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9965766Z copying torch\include\ATen\ops\log2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9972406Z copying torch\include\ATen\ops\log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9979192Z copying torch\include\ATen\ops\log2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9985519Z copying torch\include\ATen\ops\log2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9992051Z copying torch\include\ATen\ops\log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:40.9998476Z copying torch\include\ATen\ops\log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0004754Z copying torch\include\ATen\ops\logaddexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0027404Z copying torch\include\ATen\ops\logaddexp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0038238Z copying torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0044849Z copying torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0051850Z copying torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0058424Z copying torch\include\ATen\ops\logaddexp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0065127Z copying torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0071885Z copying torch\include\ATen\ops\logaddexp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0078547Z copying torch\include\ATen\ops\logaddexp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0085684Z copying torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0092272Z copying torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0099352Z copying torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0106036Z copying torch\include\ATen\ops\logaddexp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0113066Z copying torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0119843Z copying torch\include\ATen\ops\logaddexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0127390Z copying torch\include\ATen\ops\logaddexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0134208Z copying torch\include\ATen\ops\logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0174886Z copying torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0175980Z copying torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0176915Z copying torch\include\ATen\ops\logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0177697Z copying torch\include\ATen\ops\logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0178416Z copying torch\include\ATen\ops\logdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0180736Z copying torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0186720Z copying torch\include\ATen\ops\logdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0192784Z copying torch\include\ATen\ops\logdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0199762Z copying torch\include\ATen\ops\logical_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0206894Z copying torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0213575Z copying torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0220560Z copying torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0227400Z copying torch\include\ATen\ops\logical_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0234026Z copying torch\include\ATen\ops\logical_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0240705Z copying torch\include\ATen\ops\logical_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0247871Z copying torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0254696Z copying torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0261673Z copying torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0268779Z copying torch\include\ATen\ops\logical_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0275528Z copying torch\include\ATen\ops\logical_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0282260Z copying torch\include\ATen\ops\logical_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0289472Z copying torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0296721Z copying torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0303104Z copying torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0309761Z copying torch\include\ATen\ops\logical_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0316414Z copying torch\include\ATen\ops\logical_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0323037Z copying torch\include\ATen\ops\logical_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0330128Z copying torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0336915Z copying torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0343658Z copying torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0350560Z copying torch\include\ATen\ops\logical_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0357293Z copying torch\include\ATen\ops\logical_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0363916Z copying torch\include\ATen\ops\logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0370257Z copying torch\include\ATen\ops\logit_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0377310Z copying torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0383834Z copying torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0390396Z copying torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0441994Z copying torch\include\ATen\ops\logit_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0448886Z copying torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0455791Z copying torch\include\ATen\ops\logit_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0463036Z copying torch\include\ATen\ops\logit_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0470851Z copying torch\include\ATen\ops\logit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0476956Z copying torch\include\ATen\ops\logit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0483784Z copying torch\include\ATen\ops\logit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0490880Z copying torch\include\ATen\ops\logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0497973Z copying torch\include\ATen\ops\logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0505736Z copying torch\include\ATen\ops\logspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0511815Z copying torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0518559Z copying torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0530481Z copying torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0537218Z copying torch\include\ATen\ops\logspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0544011Z copying torch\include\ATen\ops\logspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0551625Z copying torch\include\ATen\ops\logspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0563067Z copying torch\include\ATen\ops\logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0569485Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0576370Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0583432Z copying torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0595588Z copying torch\include\ATen\ops\logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0603128Z copying torch\include\ATen\ops\logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0609950Z copying torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0616565Z copying torch\include\ATen\ops\log_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0627676Z copying torch\include\ATen\ops\log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0634273Z copying torch\include\ATen\ops\log_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0640575Z copying torch\include\ATen\ops\log_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0647711Z copying torch\include\ATen\ops\log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0654922Z copying torch\include\ATen\ops\log_normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0661689Z copying torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0668494Z copying torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0675884Z copying torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0682563Z copying torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0689563Z copying torch\include\ATen\ops\log_normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0696643Z copying torch\include\ATen\ops\log_normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0703336Z copying torch\include\ATen\ops\log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0709961Z copying torch\include\ATen\ops\log_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0717591Z copying torch\include\ATen\ops\log_sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0724854Z copying torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0731950Z copying torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0738744Z copying torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0746380Z copying torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0753453Z copying torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0760424Z copying torch\include\ATen\ops\log_sigmoid_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0767835Z copying torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0775373Z copying torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0782042Z copying torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0789166Z copying torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0801126Z copying torch\include\ATen\ops\log_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0807829Z copying torch\include\ATen\ops\log_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0815194Z copying torch\include\ATen\ops\log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0821640Z copying torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0833490Z copying torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0840134Z copying torch\include\ATen\ops\log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0846880Z copying torch\include\ATen\ops\log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0853929Z copying torch\include\ATen\ops\lshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0865007Z copying torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0871718Z copying torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0878452Z copying torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0885164Z copying torch\include\ATen\ops\lshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0896219Z copying torch\include\ATen\ops\lshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0902880Z copying torch\include\ATen\ops\lshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0909544Z copying torch\include\ATen\ops\lstm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0915917Z copying torch\include\ATen\ops\lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0923025Z copying torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0929757Z copying torch\include\ATen\ops\lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0936351Z copying torch\include\ATen\ops\lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0944001Z copying torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0954598Z copying torch\include\ATen\ops\lstm_mps_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0961692Z copying torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0968376Z copying torch\include\ATen\ops\lstm_mps_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0975879Z copying torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0982948Z copying torch\include\ATen\ops\lstm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0990606Z copying torch\include\ATen\ops\lstm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.0997026Z copying torch\include\ATen\ops\lt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1003689Z copying torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1010303Z copying torch\include\ATen\ops\lt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1016844Z copying torch\include\ATen\ops\lt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1023291Z copying torch\include\ATen\ops\lt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1029715Z copying torch\include\ATen\ops\lt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1041837Z copying torch\include\ATen\ops\lt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1048496Z copying torch\include\ATen\ops\lt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1054914Z copying torch\include\ATen\ops\lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1061534Z copying torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1072906Z copying torch\include\ATen\ops\lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1079555Z copying torch\include\ATen\ops\lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1086179Z copying torch\include\ATen\ops\lu_unpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1093168Z copying torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1104239Z copying torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1111372Z copying torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1118142Z copying torch\include\ATen\ops\lu_unpack_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1125054Z copying torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1132450Z copying torch\include\ATen\ops\lu_unpack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1138825Z copying torch\include\ATen\ops\lu_unpack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1145684Z copying torch\include\ATen\ops\margin_ranking_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1152851Z copying torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1159588Z copying torch\include\ATen\ops\margin_ranking_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1166652Z copying torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1173232Z copying torch\include\ATen\ops\masked_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1180254Z copying torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1191185Z copying torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1198239Z copying torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1205297Z copying torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1212366Z copying torch\include\ATen\ops\masked_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1219343Z copying torch\include\ATen\ops\masked_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1226199Z copying torch\include\ATen\ops\masked_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1233079Z copying torch\include\ATen\ops\masked_scatter_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1240314Z copying torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1252470Z copying torch\include\ATen\ops\masked_scatter_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1259169Z copying torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1266825Z copying torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1273531Z copying torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1280436Z copying torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1287873Z copying torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1294670Z copying torch\include\ATen\ops\masked_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1301702Z copying torch\include\ATen\ops\masked_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1321004Z copying torch\include\ATen\ops\masked_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1321778Z copying torch\include\ATen\ops\masked_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1324484Z copying torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1331376Z copying torch\include\ATen\ops\masked_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1339118Z copying torch\include\ATen\ops\masked_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1345419Z copying torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1352198Z copying torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1359195Z copying torch\include\ATen\ops\masked_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1579195Z copying torch\include\ATen\ops\masked_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1579980Z copying torch\include\ATen\ops\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1580769Z copying torch\include\ATen\ops\matmul_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1581744Z copying torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1582812Z copying torch\include\ATen\ops\matmul_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1583653Z copying torch\include\ATen\ops\matmul_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1584551Z copying torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1585428Z copying torch\include\ATen\ops\matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1586205Z copying torch\include\ATen\ops\matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1586998Z copying torch\include\ATen\ops\matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1587731Z copying torch\include\ATen\ops\matrix_exp_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1588685Z copying torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1589652Z copying torch\include\ATen\ops\matrix_exp_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1590484Z copying torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1591400Z copying torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1592386Z copying torch\include\ATen\ops\matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1593136Z copying torch\include\ATen\ops\matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1593847Z copying torch\include\ATen\ops\matrix_H.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1594710Z copying torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1595591Z copying torch\include\ATen\ops\matrix_H_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1596316Z copying torch\include\ATen\ops\matrix_H_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1597042Z copying torch\include\ATen\ops\matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1597958Z copying torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1598924Z copying torch\include\ATen\ops\matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1599691Z copying torch\include\ATen\ops\matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1600384Z copying torch\include\ATen\ops\max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1601053Z copying torch\include\ATen\ops\maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1601977Z copying torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1603018Z copying torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1603901Z copying torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1604653Z copying torch\include\ATen\ops\maximum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1605496Z copying torch\include\ATen\ops\maximum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1606266Z copying torch\include\ATen\ops\maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1607027Z copying torch\include\ATen\ops\maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1608189Z copying torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1615740Z copying torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1626411Z copying torch\include\ATen\ops\max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1633302Z copying torch\include\ATen\ops\max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1639971Z copying torch\include\ATen\ops\max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1646461Z copying torch\include\ATen\ops\max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1653382Z copying torch\include\ATen\ops\max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1660381Z copying torch\include\ATen\ops\max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1666997Z copying torch\include\ATen\ops\max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1701513Z copying torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1707958Z copying torch\include\ATen\ops\max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1714803Z copying torch\include\ATen\ops\max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1750228Z copying torch\include\ATen\ops\max_pool1d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1757599Z copying torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1764799Z copying torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1771660Z copying torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1778409Z copying torch\include\ATen\ops\max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1786110Z copying torch\include\ATen\ops\max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1793478Z copying torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1800216Z copying torch\include\ATen\ops\max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1807250Z copying torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1814717Z copying torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1826754Z copying torch\include\ATen\ops\max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1834232Z copying torch\include\ATen\ops\max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1840609Z copying torch\include\ATen\ops\max_pool2d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1847789Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1860062Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1867610Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1874725Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1881614Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1893198Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1900094Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1907229Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1914448Z copying torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1921188Z copying torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1928246Z copying torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1935046Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1942077Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1953989Z copying torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1960896Z copying torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1967944Z copying torch\include\ATen\ops\max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1974869Z copying torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1981613Z copying torch\include\ATen\ops\max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1988371Z copying torch\include\ATen\ops\max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.1995571Z copying torch\include\ATen\ops\max_pool3d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2002464Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2014741Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2021675Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2028735Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2035519Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2042698Z copying torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2049711Z copying torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2056953Z copying torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2063858Z copying torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2070533Z copying torch\include\ATen\ops\max_unpool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2077258Z copying torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2084035Z copying torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2090987Z copying torch\include\ATen\ops\max_unpool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2097806Z copying torch\include\ATen\ops\max_unpool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2104495Z copying torch\include\ATen\ops\max_unpool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2111385Z copying torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2118228Z copying torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2125028Z copying torch\include\ATen\ops\max_unpool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2137254Z copying torch\include\ATen\ops\max_unpool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2143486Z copying torch\include\ATen\ops\mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2150981Z copying torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2162740Z copying torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2169661Z copying torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2176602Z copying torch\include\ATen\ops\mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2183885Z copying torch\include\ATen\ops\mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2195018Z copying torch\include\ATen\ops\mean_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2201571Z copying torch\include\ATen\ops\mean_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2208395Z copying torch\include\ATen\ops\mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2215244Z copying torch\include\ATen\ops\mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2226344Z copying torch\include\ATen\ops\median.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2233154Z copying torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2240510Z copying torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2246756Z copying torch\include\ATen\ops\median_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2253457Z copying torch\include\ATen\ops\median_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2260307Z copying torch\include\ATen\ops\median_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2267008Z copying torch\include\ATen\ops\median_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2274613Z copying torch\include\ATen\ops\meshgrid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2280908Z copying torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2287638Z copying torch\include\ATen\ops\meshgrid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2294452Z copying torch\include\ATen\ops\meshgrid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2301003Z copying torch\include\ATen\ops\mH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2307454Z copying torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2330997Z copying torch\include\ATen\ops\mH_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2331684Z copying torch\include\ATen\ops\mH_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2332337Z copying torch\include\ATen\ops\min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2335191Z copying torch\include\ATen\ops\minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2343195Z copying torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2349035Z copying torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2356477Z copying torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2363554Z copying torch\include\ATen\ops\minimum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2370579Z copying torch\include\ATen\ops\minimum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2377130Z copying torch\include\ATen\ops\minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2383791Z copying torch\include\ATen\ops\minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2390752Z copying torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2397293Z copying torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2403765Z copying torch\include\ATen\ops\min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2410788Z copying torch\include\ATen\ops\min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2417668Z copying torch\include\ATen\ops\min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2424013Z copying torch\include\ATen\ops\min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2430603Z copying torch\include\ATen\ops\min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2437089Z copying torch\include\ATen\ops\min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2448580Z copying torch\include\ATen\ops\miopen_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2455058Z copying torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2462069Z copying torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2469125Z copying torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2480968Z copying torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2487813Z copying torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2494972Z copying torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2501755Z copying torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2508543Z copying torch\include\ATen\ops\miopen_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2515825Z copying torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2522857Z copying torch\include\ATen\ops\miopen_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2529730Z copying torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2536559Z copying torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2543380Z copying torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2550171Z copying torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2557898Z copying torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2564727Z copying torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2571871Z copying torch\include\ATen\ops\miopen_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2578524Z copying torch\include\ATen\ops\miopen_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2585278Z copying torch\include\ATen\ops\miopen_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2592228Z copying torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2599087Z copying torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2606151Z copying torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2613272Z copying torch\include\ATen\ops\miopen_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2620752Z copying torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2627623Z copying torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2634451Z copying torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2642069Z copying torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2648888Z copying torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2656117Z copying torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2663314Z copying torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2671268Z copying torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2677624Z copying torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2684687Z copying torch\include\ATen\ops\miopen_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2691438Z copying torch\include\ATen\ops\miopen_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2698469Z copying torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2705122Z copying torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2711795Z copying torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2718759Z copying torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2726625Z copying torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2733295Z copying torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2739964Z copying torch\include\ATen\ops\miopen_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2746713Z copying torch\include\ATen\ops\miopen_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2753295Z copying torch\include\ATen\ops\mish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2759611Z copying torch\include\ATen\ops\mish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2766611Z copying torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2773770Z copying torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2780622Z copying torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2787282Z copying torch\include\ATen\ops\mish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2793834Z copying torch\include\ATen\ops\mish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2837151Z copying torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2843446Z copying torch\include\ATen\ops\mish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2850204Z copying torch\include\ATen\ops\mish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2857066Z copying torch\include\ATen\ops\mish_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2863552Z copying torch\include\ATen\ops\mish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2870783Z copying torch\include\ATen\ops\mish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2877898Z copying torch\include\ATen\ops\mish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2919651Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2920530Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2921658Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2922813Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2923770Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2924768Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2931773Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2943024Z copying torch\include\ATen\ops\mkldnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2949867Z copying torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2956825Z copying torch\include\ATen\ops\mkldnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2963484Z copying torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2970749Z copying torch\include\ATen\ops\mkldnn_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2977592Z copying torch\include\ATen\ops\mkldnn_linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2984676Z copying torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2991373Z copying torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.2998798Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3005823Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3012914Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3019761Z copying torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3026901Z copying torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3033689Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3040955Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3047871Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3054642Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3061849Z copying torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3068617Z copying torch\include\ATen\ops\mkldnn_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3075556Z copying torch\include\ATen\ops\mkldnn_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3082330Z copying torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3089370Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3096511Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3103303Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3114783Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3121864Z copying torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3129067Z copying torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3135849Z copying torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3142609Z copying torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3149432Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3157746Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3164625Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3171986Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3180106Z copying torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3186297Z copying torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3192967Z copying torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3200053Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3209073Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3215399Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3223412Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3230433Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3238048Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3244857Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3252205Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3263994Z copying torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3271921Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3278391Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3292807Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3304518Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3312489Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3338018Z copying torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3338984Z copying torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3339869Z copying torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3342057Z copying torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3349884Z copying torch\include\ATen\ops\mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3356147Z copying torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3362968Z copying torch\include\ATen\ops\mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3369951Z copying torch\include\ATen\ops\mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3376651Z copying torch\include\ATen\ops\mm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3382846Z copying torch\include\ATen\ops\mm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3389576Z copying torch\include\ATen\ops\mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3396762Z copying torch\include\ATen\ops\mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3403264Z copying torch\include\ATen\ops\mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3410013Z copying torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3416971Z copying torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3423591Z copying torch\include\ATen\ops\mode_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3430189Z copying torch\include\ATen\ops\mode_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3436669Z copying torch\include\ATen\ops\mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3443083Z copying torch\include\ATen\ops\mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3449530Z copying torch\include\ATen\ops\moveaxis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3456123Z copying torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3462828Z copying torch\include\ATen\ops\moveaxis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3469230Z copying torch\include\ATen\ops\moveaxis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3476012Z copying torch\include\ATen\ops\movedim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3482901Z copying torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3489440Z copying torch\include\ATen\ops\movedim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3496594Z copying torch\include\ATen\ops\movedim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3503391Z copying torch\include\ATen\ops\mps_convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3510495Z copying torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3517453Z copying torch\include\ATen\ops\mps_convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3524415Z copying torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3531470Z copying torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3538780Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3546565Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3553627Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3560280Z copying torch\include\ATen\ops\mse_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3571317Z copying torch\include\ATen\ops\mse_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3578177Z copying torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3585110Z copying torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3591938Z copying torch\include\ATen\ops\mse_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3598760Z copying torch\include\ATen\ops\mse_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3611587Z copying torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3618360Z copying torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3625298Z copying torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3632192Z copying torch\include\ATen\ops\mse_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3638913Z copying torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3655269Z copying torch\include\ATen\ops\mse_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3661983Z copying torch\include\ATen\ops\mse_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3698055Z copying torch\include\ATen\ops\msort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3705062Z copying torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3711518Z copying torch\include\ATen\ops\msort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3718100Z copying torch\include\ATen\ops\msort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3724748Z copying torch\include\ATen\ops\mT.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3731317Z copying torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3737876Z copying torch\include\ATen\ops\mT_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3744486Z copying torch\include\ATen\ops\mT_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3751373Z copying torch\include\ATen\ops\mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3757907Z copying torch\include\ATen\ops\multilabel_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3765143Z copying torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3773049Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3779270Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3786344Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3793950Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3801728Z copying torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3808620Z copying torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3815524Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3827941Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3834750Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3841798Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3848809Z copying torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3855657Z copying torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3862316Z copying torch\include\ATen\ops\multinomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3869088Z copying torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3875751Z copying torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3882361Z copying torch\include\ATen\ops\multinomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3889330Z copying torch\include\ATen\ops\multinomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3901068Z copying torch\include\ATen\ops\multiply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3907810Z copying torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3916189Z copying torch\include\ATen\ops\multiply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3923621Z copying torch\include\ATen\ops\multiply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3930423Z copying torch\include\ATen\ops\multi_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3940920Z copying torch\include\ATen\ops\multi_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3947728Z copying torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3954584Z copying torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3961314Z copying torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3968196Z copying torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3975058Z copying torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3981959Z copying torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3988677Z copying torch\include\ATen\ops\multi_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.3995677Z copying torch\include\ATen\ops\multi_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4002671Z copying torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4009658Z copying torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4016211Z copying torch\include\ATen\ops\mul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4022782Z copying torch\include\ATen\ops\mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4030200Z copying torch\include\ATen\ops\mul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4037019Z copying torch\include\ATen\ops\mul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4049039Z copying torch\include\ATen\ops\mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4055558Z copying torch\include\ATen\ops\mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4061836Z copying torch\include\ATen\ops\mv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4068187Z copying torch\include\ATen\ops\mvlgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4074770Z copying torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4117368Z copying torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4123869Z copying torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4130545Z copying torch\include\ATen\ops\mvlgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4137416Z copying torch\include\ATen\ops\mvlgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4144357Z copying torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4150724Z copying torch\include\ATen\ops\mv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4157237Z copying torch\include\ATen\ops\mv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4163792Z copying torch\include\ATen\ops\nanmean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4170522Z copying torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4176969Z copying torch\include\ATen\ops\nanmean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4192016Z copying torch\include\ATen\ops\nanmean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4198779Z copying torch\include\ATen\ops\nanmedian.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4205600Z copying torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4212388Z copying torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4219160Z copying torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4225918Z copying torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4232652Z copying torch\include\ATen\ops\nanmedian_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4239466Z copying torch\include\ATen\ops\nanmedian_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4246584Z copying torch\include\ATen\ops\nanquantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4253855Z copying torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4265148Z copying torch\include\ATen\ops\nanquantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4272124Z copying torch\include\ATen\ops\nanquantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4278580Z copying torch\include\ATen\ops\nansum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4285133Z copying torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4291837Z copying torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4298592Z copying torch\include\ATen\ops\nansum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4305643Z copying torch\include\ATen\ops\nansum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4312515Z copying torch\include\ATen\ops\nan_to_num.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4319660Z copying torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4326639Z copying torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4350120Z copying torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4350917Z copying torch\include\ATen\ops\nan_to_num_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4353559Z copying torch\include\ATen\ops\nan_to_num_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4363038Z copying torch\include\ATen\ops\narrow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4369722Z copying torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4381166Z copying torch\include\ATen\ops\narrow_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4387386Z copying torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4394154Z copying torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4401242Z copying torch\include\ATen\ops\narrow_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4407861Z copying torch\include\ATen\ops\narrow_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4414963Z copying torch\include\ATen\ops\narrow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4421556Z copying torch\include\ATen\ops\narrow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4428182Z copying torch\include\ATen\ops\native_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4434906Z copying torch\include\ATen\ops\native_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4441733Z copying torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4448677Z copying torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4455509Z copying torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4462448Z copying torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4469469Z copying torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4476623Z copying torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4488453Z copying torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4495155Z copying torch\include\ATen\ops\native_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4502029Z copying torch\include\ATen\ops\native_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4508901Z copying torch\include\ATen\ops\native_channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4515896Z copying torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4526860Z copying torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4534155Z copying torch\include\ATen\ops\native_channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4540944Z copying torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4548014Z copying torch\include\ATen\ops\native_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4555054Z copying torch\include\ATen\ops\native_dropout_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4562279Z copying torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4569276Z copying torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4576089Z copying torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4582995Z copying torch\include\ATen\ops\native_dropout_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4589769Z copying torch\include\ATen\ops\native_dropout_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4596861Z copying torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4603769Z copying torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4610858Z copying torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4617499Z copying torch\include\ATen\ops\native_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4624240Z copying torch\include\ATen\ops\native_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4630966Z copying torch\include\ATen\ops\native_group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4637735Z copying torch\include\ATen\ops\native_group_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4644812Z copying torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4675887Z copying torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4683008Z copying torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4694262Z copying torch\include\ATen\ops\native_group_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4701193Z copying torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4708395Z copying torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4715411Z copying torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4722228Z copying torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4734093Z copying torch\include\ATen\ops\native_group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4740820Z copying torch\include\ATen\ops\native_group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4747557Z copying torch\include\ATen\ops\native_layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4754401Z copying torch\include\ATen\ops\native_layer_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4761763Z copying torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4772555Z copying torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4779409Z copying torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4786280Z copying torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4793022Z copying torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4800042Z copying torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4807490Z copying torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4814575Z copying torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4821285Z copying torch\include\ATen\ops\native_layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4828029Z copying torch\include\ATen\ops\native_layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4834630Z copying torch\include\ATen\ops\native_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4841702Z copying torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4848980Z copying torch\include\ATen\ops\native_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4855803Z copying torch\include\ATen\ops\native_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4862393Z copying torch\include\ATen\ops\ne.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4868649Z copying torch\include\ATen\ops\neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4875416Z copying torch\include\ATen\ops\negative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4882160Z copying torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4888814Z copying torch\include\ATen\ops\negative_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4895420Z copying torch\include\ATen\ops\negative_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4902808Z copying torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4909740Z copying torch\include\ATen\ops\neg_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4951494Z copying torch\include\ATen\ops\neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4952228Z copying torch\include\ATen\ops\neg_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4952952Z copying torch\include\ATen\ops\neg_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4953672Z copying torch\include\ATen\ops\neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4954357Z copying torch\include\ATen\ops\neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4955099Z copying torch\include\ATen\ops\nested_to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4962082Z copying torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4969596Z copying torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4975979Z copying torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4990519Z copying torch\include\ATen\ops\new_empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.4997023Z copying torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5008185Z copying torch\include\ATen\ops\new_empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5014996Z copying torch\include\ATen\ops\new_empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5021704Z copying torch\include\ATen\ops\new_empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5029001Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5035830Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5042643Z copying torch\include\ATen\ops\new_empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5050247Z copying torch\include\ATen\ops\new_empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5057061Z copying torch\include\ATen\ops\new_full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5064132Z copying torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5070523Z copying torch\include\ATen\ops\new_full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5077268Z copying torch\include\ATen\ops\new_full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5083784Z copying torch\include\ATen\ops\new_ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5090487Z copying torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5097251Z copying torch\include\ATen\ops\new_ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5103808Z copying torch\include\ATen\ops\new_ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5110561Z copying torch\include\ATen\ops\new_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5117982Z copying torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5124804Z copying torch\include\ATen\ops\new_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5131499Z copying torch\include\ATen\ops\new_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5138041Z copying torch\include\ATen\ops\nextafter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5145031Z copying torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5151528Z copying torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5158356Z copying torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5165379Z copying torch\include\ATen\ops\nextafter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5172154Z copying torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5178828Z copying torch\include\ATen\ops\nextafter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5185775Z copying torch\include\ATen\ops\nextafter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5192841Z copying torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5199314Z copying torch\include\ATen\ops\ne_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5206242Z copying torch\include\ATen\ops\ne_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5213587Z copying torch\include\ATen\ops\ne_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5224197Z copying torch\include\ATen\ops\ne_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5231055Z copying torch\include\ATen\ops\ne_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5237877Z copying torch\include\ATen\ops\ne_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5244452Z copying torch\include\ATen\ops\nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5251033Z copying torch\include\ATen\ops\nll_loss2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5257809Z copying torch\include\ATen\ops\nll_loss2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5265001Z copying torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5278123Z copying torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5285054Z copying torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5292373Z copying torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5299499Z copying torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5306979Z copying torch\include\ATen\ops\nll_loss2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5314211Z copying torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5321695Z copying torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5329141Z copying torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5335990Z copying torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5355029Z copying torch\include\ATen\ops\nll_loss2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5355770Z copying torch\include\ATen\ops\nll_loss2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5367282Z copying torch\include\ATen\ops\nll_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5370755Z copying torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5377823Z copying torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5385418Z copying torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5392084Z copying torch\include\ATen\ops\nll_loss_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5398902Z copying torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5406307Z copying torch\include\ATen\ops\nll_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5412896Z copying torch\include\ATen\ops\nll_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5420307Z copying torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5432054Z copying torch\include\ATen\ops\nll_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5439322Z copying torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5446070Z copying torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5452993Z copying torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5459584Z copying torch\include\ATen\ops\nll_loss_forward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5466353Z copying torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5473881Z copying torch\include\ATen\ops\nll_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5480560Z copying torch\include\ATen\ops\nll_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5487865Z copying torch\include\ATen\ops\nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5495091Z copying torch\include\ATen\ops\nll_loss_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5507510Z copying torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5514136Z copying torch\include\ATen\ops\nll_loss_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5521110Z copying torch\include\ATen\ops\nll_loss_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5528061Z copying torch\include\ATen\ops\nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5534724Z copying torch\include\ATen\ops\nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5541409Z copying torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5548145Z copying torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5554708Z copying torch\include\ATen\ops\nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5561209Z copying torch\include\ATen\ops\nonzero_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5568292Z copying torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5579665Z copying torch\include\ATen\ops\nonzero_numpy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5586332Z copying torch\include\ATen\ops\nonzero_numpy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5592966Z copying torch\include\ATen\ops\nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5600177Z copying torch\include\ATen\ops\nonzero_static.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5607309Z copying torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5618283Z copying torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5625282Z copying torch\include\ATen\ops\nonzero_static_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5631994Z copying torch\include\ATen\ops\nonzero_static_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5669404Z copying torch\include\ATen\ops\norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5675946Z copying torch\include\ATen\ops\normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5682755Z copying torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5689514Z copying torch\include\ATen\ops\normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5696239Z copying torch\include\ATen\ops\normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5703044Z copying torch\include\ATen\ops\normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5709683Z copying torch\include\ATen\ops\normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5722050Z copying torch\include\ATen\ops\normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5729848Z copying torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5736623Z copying torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5743423Z copying torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5750037Z copying torch\include\ATen\ops\norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5761972Z copying torch\include\ATen\ops\norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5768813Z copying torch\include\ATen\ops\norm_except_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5775894Z copying torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5783049Z copying torch\include\ATen\ops\norm_except_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5789569Z copying torch\include\ATen\ops\norm_except_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5796262Z copying torch\include\ATen\ops\norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5803153Z copying torch\include\ATen\ops\norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5809861Z copying torch\include\ATen\ops\norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5816468Z copying torch\include\ATen\ops\norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5824295Z copying torch\include\ATen\ops\not_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5835984Z copying torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5842850Z copying torch\include\ATen\ops\not_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5849689Z copying torch\include\ATen\ops\not_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5856842Z copying torch\include\ATen\ops\nuclear_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5864748Z copying torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5871636Z copying torch\include\ATen\ops\nuclear_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5878410Z copying torch\include\ATen\ops\nuclear_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5885445Z copying torch\include\ATen\ops\numpy_T.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5892158Z copying torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5898562Z copying torch\include\ATen\ops\numpy_T_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5905095Z copying torch\include\ATen\ops\numpy_T_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5916493Z copying torch\include\ATen\ops\ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5923268Z copying torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5929920Z copying torch\include\ATen\ops\ones_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5937176Z copying torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5943770Z copying torch\include\ATen\ops\ones_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5950432Z copying torch\include\ATen\ops\ones_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5957004Z copying torch\include\ATen\ops\ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5963470Z copying torch\include\ATen\ops\ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5970308Z copying torch\include\ATen\ops\one_hot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5982387Z copying torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5988876Z copying torch\include\ATen\ops\one_hot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.5995306Z copying torch\include\ATen\ops\one_hot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6001983Z copying torch\include\ATen\ops\or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6008291Z copying torch\include\ATen\ops\orgqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6015080Z copying torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6021663Z copying torch\include\ATen\ops\orgqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6028159Z copying torch\include\ATen\ops\orgqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6034648Z copying torch\include\ATen\ops\ormqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6041111Z copying torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6047825Z copying torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6054355Z copying torch\include\ATen\ops\ormqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6061139Z copying torch\include\ATen\ops\ormqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6068052Z copying torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6074701Z copying torch\include\ATen\ops\or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6080978Z copying torch\include\ATen\ops\or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6127616Z copying torch\include\ATen\ops\outer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6134193Z copying torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6141034Z copying torch\include\ATen\ops\outer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6147524Z copying torch\include\ATen\ops\outer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6154347Z copying torch\include\ATen\ops\output_nr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6161407Z copying torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6167946Z copying torch\include\ATen\ops\output_nr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6174227Z copying torch\include\ATen\ops\output_nr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.6180734Z copying torch\include\ATen\ops\pad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7838939Z copying torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7846168Z copying torch\include\ATen\ops\pad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7853752Z copying torch\include\ATen\ops\pad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7861151Z copying torch\include\ATen\ops\pad_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7868789Z copying torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7876107Z copying torch\include\ATen\ops\pad_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7883027Z copying torch\include\ATen\ops\pad_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7890032Z copying torch\include\ATen\ops\pairwise_distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7897146Z copying torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7903967Z copying torch\include\ATen\ops\pairwise_distance_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7910717Z copying torch\include\ATen\ops\pairwise_distance_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7917484Z copying torch\include\ATen\ops\pdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7923910Z copying torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7930660Z copying torch\include\ATen\ops\pdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7937121Z copying torch\include\ATen\ops\pdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7948372Z copying torch\include\ATen\ops\permute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7954855Z copying torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7961503Z copying torch\include\ATen\ops\permute_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.7969320Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8002003Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8002916Z copying torch\include\ATen\ops\permute_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8003686Z copying torch\include\ATen\ops\permute_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8004446Z copying torch\include\ATen\ops\permute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8006515Z copying torch\include\ATen\ops\permute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8013313Z copying torch\include\ATen\ops\pinverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8020122Z copying torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8026706Z copying torch\include\ATen\ops\pinverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8033284Z copying torch\include\ATen\ops\pinverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8043943Z copying torch\include\ATen\ops\pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8050917Z copying torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8062659Z copying torch\include\ATen\ops\pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8069463Z copying torch\include\ATen\ops\pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8076333Z copying torch\include\ATen\ops\pixel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8083459Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8090307Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8097085Z copying torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8104019Z copying torch\include\ATen\ops\pixel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8111052Z copying torch\include\ATen\ops\pixel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8117877Z copying torch\include\ATen\ops\pixel_unshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8125424Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8136688Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8143365Z copying torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8150145Z copying torch\include\ATen\ops\pixel_unshuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8156865Z copying torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8163428Z copying torch\include\ATen\ops\poisson.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8174002Z copying torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8181023Z copying torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8187575Z copying torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8194174Z copying torch\include\ATen\ops\poisson_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8200868Z copying torch\include\ATen\ops\poisson_nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8207981Z copying torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8214603Z copying torch\include\ATen\ops\poisson_nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8221487Z copying torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8228375Z copying torch\include\ATen\ops\poisson_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8234887Z copying torch\include\ATen\ops\polar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8245916Z copying torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8252829Z copying torch\include\ATen\ops\polar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8259424Z copying torch\include\ATen\ops\polar_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8266071Z copying torch\include\ATen\ops\polar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8272573Z copying torch\include\ATen\ops\polar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8279415Z copying torch\include\ATen\ops\polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8286533Z copying torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8293204Z copying torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8299818Z copying torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8306550Z copying torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8322890Z copying torch\include\ATen\ops\polygamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8329753Z copying torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8336779Z copying torch\include\ATen\ops\polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8344025Z copying torch\include\ATen\ops\polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8350813Z copying torch\include\ATen\ops\positive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8357349Z copying torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8364323Z copying torch\include\ATen\ops\positive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8371098Z copying torch\include\ATen\ops\positive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8377891Z copying torch\include\ATen\ops\pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8384970Z copying torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8396132Z copying torch\include\ATen\ops\pow_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8403646Z copying torch\include\ATen\ops\pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8411142Z copying torch\include\ATen\ops\pow_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8418187Z copying torch\include\ATen\ops\pow_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8424813Z copying torch\include\ATen\ops\pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8435373Z copying torch\include\ATen\ops\pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8441853Z copying torch\include\ATen\ops\prelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8449402Z copying torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8458924Z copying torch\include\ATen\ops\prelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8466018Z copying torch\include\ATen\ops\prelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8472606Z copying torch\include\ATen\ops\prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8479578Z copying torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8486414Z copying torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8493188Z copying torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8500019Z copying torch\include\ATen\ops\prod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8511201Z copying torch\include\ATen\ops\prod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8517832Z copying torch\include\ATen\ops\prod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8524386Z copying torch\include\ATen\ops\prod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8530962Z copying torch\include\ATen\ops\prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8537387Z copying torch\include\ATen\ops\prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8543810Z copying torch\include\ATen\ops\promote_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8551211Z copying torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8558046Z copying torch\include\ATen\ops\promote_types_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8564465Z copying torch\include\ATen\ops\promote_types_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8571233Z copying torch\include\ATen\ops\put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8582367Z copying torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8588983Z copying torch\include\ATen\ops\put_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8595564Z copying torch\include\ATen\ops\put_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8602158Z copying torch\include\ATen\ops\put_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8656809Z copying torch\include\ATen\ops\put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8663360Z copying torch\include\ATen\ops\put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8669599Z copying torch\include\ATen\ops\qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8676379Z copying torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8682950Z copying torch\include\ATen\ops\qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8690499Z copying torch\include\ATen\ops\qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8700863Z copying torch\include\ATen\ops\qscheme.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8707424Z copying torch\include\ATen\ops\qscheme_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8713755Z copying torch\include\ATen\ops\qscheme_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8720179Z copying torch\include\ATen\ops\quantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8727344Z copying torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8738198Z copying torch\include\ATen\ops\quantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8744747Z copying torch\include\ATen\ops\quantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8751485Z copying torch\include\ATen\ops\quantized_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8758432Z copying torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8765326Z copying torch\include\ATen\ops\quantized_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8771929Z copying torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8778646Z copying torch\include\ATen\ops\quantized_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8785497Z copying torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8791926Z copying torch\include\ATen\ops\quantized_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8798379Z copying torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8809395Z copying torch\include\ATen\ops\quantized_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8816843Z copying torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8823137Z copying torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8829783Z copying torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8836251Z copying torch\include\ATen\ops\quantized_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8843173Z copying torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8849786Z copying torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8856841Z copying torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8863251Z copying torch\include\ATen\ops\quantized_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8869861Z copying torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8876240Z copying torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8882976Z copying torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8890472Z copying torch\include\ATen\ops\quantized_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8898446Z copying torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8905911Z copying torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8918396Z copying torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8925688Z copying torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8932719Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8939437Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8946978Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8953611Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8960863Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8967519Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8974253Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8980776Z copying torch\include\ATen\ops\quantize_per_channel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8987541Z copying torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.8994104Z copying torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9000626Z copying torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9007389Z copying torch\include\ATen\ops\quantize_per_channel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9013780Z copying torch\include\ATen\ops\quantize_per_channel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9025322Z copying torch\include\ATen\ops\quantize_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9032075Z copying torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9038505Z copying torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9045188Z copying torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9051754Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9058491Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9065145Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9071859Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9078497Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9084826Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9096549Z copying torch\include\ATen\ops\quantize_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9103056Z copying torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9109529Z copying torch\include\ATen\ops\q_per_channel_axis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9115923Z copying torch\include\ATen\ops\q_per_channel_axis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9121934Z copying torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9128713Z copying torch\include\ATen\ops\q_per_channel_scales.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9135427Z copying torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9141819Z copying torch\include\ATen\ops\q_per_channel_scales_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9148324Z copying torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9154712Z copying torch\include\ATen\ops\q_per_channel_zero_points.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9161665Z copying torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9168431Z copying torch\include\ATen\ops\q_per_channel_zero_points_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9174923Z copying torch\include\ATen\ops\q_per_channel_zero_points_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9181479Z copying torch\include\ATen\ops\q_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9187409Z copying torch\include\ATen\ops\q_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9198499Z copying torch\include\ATen\ops\q_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9204859Z copying torch\include\ATen\ops\q_zero_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9211519Z copying torch\include\ATen\ops\q_zero_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9229912Z copying torch\include\ATen\ops\q_zero_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9230783Z copying torch\include\ATen\ops\rad2deg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9231644Z copying torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9237773Z copying torch\include\ATen\ops\rad2deg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9244385Z copying torch\include\ATen\ops\rad2deg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9250734Z copying torch\include\ATen\ops\rand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9290417Z copying torch\include\ATen\ops\randint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9297602Z copying torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9304529Z copying torch\include\ATen\ops\randint_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9312239Z copying torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9319009Z copying torch\include\ATen\ops\randint_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9325959Z copying torch\include\ATen\ops\randint_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9332971Z copying torch\include\ATen\ops\randint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9339767Z copying torch\include\ATen\ops\randint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9352032Z copying torch\include\ATen\ops\randn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9359626Z copying torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9366480Z copying torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9388153Z copying torch\include\ATen\ops\randn_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9389029Z copying torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9390123Z copying torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9396045Z copying torch\include\ATen\ops\randn_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9402915Z copying torch\include\ATen\ops\randn_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9410060Z copying torch\include\ATen\ops\randn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9416986Z copying torch\include\ATen\ops\randn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9423786Z copying torch\include\ATen\ops\random.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9430452Z copying torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9436985Z copying torch\include\ATen\ops\random_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9448480Z copying torch\include\ATen\ops\random_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9455079Z copying torch\include\ATen\ops\random_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9461745Z copying torch\include\ATen\ops\random_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9468644Z copying torch\include\ATen\ops\random_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9475335Z copying torch\include\ATen\ops\randperm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9494575Z copying torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9500823Z copying torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9507471Z copying torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9514185Z copying torch\include\ATen\ops\randperm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9520672Z copying torch\include\ATen\ops\randperm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9527864Z copying torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9535264Z copying torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9541644Z copying torch\include\ATen\ops\rand_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9548849Z copying torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9555259Z copying torch\include\ATen\ops\rand_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9570048Z copying torch\include\ATen\ops\rand_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9577256Z copying torch\include\ATen\ops\rand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9583443Z copying torch\include\ATen\ops\rand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9590088Z copying torch\include\ATen\ops\range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9596807Z copying torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9603381Z copying torch\include\ATen\ops\range_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9610337Z copying torch\include\ATen\ops\range_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9617438Z copying torch\include\ATen\ops\range_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9624003Z copying torch\include\ATen\ops\range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9630738Z copying torch\include\ATen\ops\range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9642485Z copying torch\include\ATen\ops\ravel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9649334Z copying torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9655973Z copying torch\include\ATen\ops\ravel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9663151Z copying torch\include\ATen\ops\ravel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9669300Z copying torch\include\ATen\ops\real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9680513Z copying torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9733381Z copying torch\include\ATen\ops\real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9739580Z copying torch\include\ATen\ops\real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9745956Z copying torch\include\ATen\ops\reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9753166Z copying torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9765188Z copying torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9772122Z copying torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9778913Z copying torch\include\ATen\ops\reciprocal_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9785536Z copying torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9792230Z copying torch\include\ATen\ops\reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9807344Z copying torch\include\ATen\ops\reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9814415Z copying torch\include\ATen\ops\record_stream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9821153Z copying torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9827883Z copying torch\include\ATen\ops\record_stream_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9834400Z copying torch\include\ATen\ops\record_stream_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9845988Z copying torch\include\ATen\ops\refine_names.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9852989Z copying torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9859463Z copying torch\include\ATen\ops\refine_names_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9865945Z copying torch\include\ATen\ops\refine_names_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9872897Z copying torch\include\ATen\ops\reflection_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9896973Z copying torch\include\ATen\ops\reflection_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9898068Z copying torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9900430Z copying torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9908450Z copying torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9915236Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9922492Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9929612Z copying torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9936530Z copying torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9943800Z copying torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9950352Z copying torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9961931Z copying torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9968673Z copying torch\include\ATen\ops\reflection_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9975518Z copying torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9982147Z copying torch\include\ATen\ops\reflection_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9988939Z copying torch\include\ATen\ops\reflection_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:41.9995820Z copying torch\include\ATen\ops\reflection_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0002563Z copying torch\include\ATen\ops\reflection_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0010233Z copying torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0017061Z copying torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0023945Z copying torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0035053Z copying torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0041789Z copying torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0048729Z copying torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0055593Z copying torch\include\ATen\ops\reflection_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0062302Z copying torch\include\ATen\ops\reflection_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0072485Z copying torch\include\ATen\ops\reflection_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0079231Z copying torch\include\ATen\ops\reflection_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0086547Z copying torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0093278Z copying torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0100409Z copying torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0112070Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0119002Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0125954Z copying torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0132663Z copying torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0139801Z copying torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0153169Z copying torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0192760Z copying torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0193603Z copying torch\include\ATen\ops\reflection_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0194444Z copying torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0195362Z copying torch\include\ATen\ops\reflection_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0196301Z copying torch\include\ATen\ops\reflection_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0203315Z copying torch\include\ATen\ops\relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0210769Z copying torch\include\ATen\ops\relu6.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0216946Z copying torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0223421Z copying torch\include\ATen\ops\relu6_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0230044Z copying torch\include\ATen\ops\relu6_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0237028Z copying torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0243878Z copying torch\include\ATen\ops\relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0250301Z copying torch\include\ATen\ops\relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0256988Z copying torch\include\ATen\ops\relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0268078Z copying torch\include\ATen\ops\relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0274701Z copying torch\include\ATen\ops\relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0281012Z copying torch\include\ATen\ops\remainder.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0288130Z copying torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0300798Z copying torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0333702Z copying torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0340483Z copying torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0347562Z copying torch\include\ATen\ops\remainder_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0354289Z copying torch\include\ATen\ops\remainder_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0360874Z copying torch\include\ATen\ops\remainder_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0367621Z copying torch\include\ATen\ops\remainder_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0374341Z copying torch\include\ATen\ops\rename.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0380680Z copying torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0387133Z copying torch\include\ATen\ops\rename_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0393609Z copying torch\include\ATen\ops\rename_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0404896Z copying torch\include\ATen\ops\renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0411847Z copying torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0418461Z copying torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0425198Z copying torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0431451Z copying torch\include\ATen\ops\renorm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0438039Z copying torch\include\ATen\ops\renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0444606Z copying torch\include\ATen\ops\renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0451432Z copying torch\include\ATen\ops\renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0471078Z copying torch\include\ATen\ops\repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0472011Z copying torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0472993Z copying torch\include\ATen\ops\repeat_interleave.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0515331Z copying torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0516488Z copying torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0517466Z copying torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0518352Z copying torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0519208Z copying torch\include\ATen\ops\repeat_interleave_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0523416Z copying torch\include\ATen\ops\repeat_interleave_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0530253Z copying torch\include\ATen\ops\repeat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0536918Z copying torch\include\ATen\ops\repeat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0543590Z copying torch\include\ATen\ops\replication_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0550432Z copying torch\include\ATen\ops\replication_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0557692Z copying torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0564609Z copying torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0571478Z copying torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0578159Z copying torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0584944Z copying torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0591807Z copying torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0598673Z copying torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0605932Z copying torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0612511Z copying torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0619455Z copying torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0626011Z copying torch\include\ATen\ops\replication_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0633149Z copying torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0639916Z copying torch\include\ATen\ops\replication_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0646696Z copying torch\include\ATen\ops\replication_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0657871Z copying torch\include\ATen\ops\replication_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0664792Z copying torch\include\ATen\ops\replication_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0671632Z copying torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0678425Z copying torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0685506Z copying torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0692465Z copying torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0699575Z copying torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0706236Z copying torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0713097Z copying torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0719931Z copying torch\include\ATen\ops\replication_pad2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0726870Z copying torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0733672Z copying torch\include\ATen\ops\replication_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0740406Z copying torch\include\ATen\ops\replication_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0747092Z copying torch\include\ATen\ops\replication_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0754081Z copying torch\include\ATen\ops\replication_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0761133Z copying torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0768585Z copying torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0775576Z copying torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0782469Z copying torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0789660Z copying torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0799158Z copying torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0806641Z copying torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0813732Z copying torch\include\ATen\ops\replication_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0820764Z copying torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0827809Z copying torch\include\ATen\ops\replication_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0839813Z copying torch\include\ATen\ops\replication_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0846714Z copying torch\include\ATen\ops\requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0853536Z copying torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0860795Z copying torch\include\ATen\ops\requires_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0867283Z copying torch\include\ATen\ops\requires_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0878182Z copying torch\include\ATen\ops\reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0885878Z copying torch\include\ATen\ops\reshape_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0893593Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0901057Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0909205Z copying torch\include\ATen\ops\reshape_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0916509Z copying torch\include\ATen\ops\reshape_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0926768Z copying torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0937010Z copying torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0943647Z copying torch\include\ATen\ops\reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0952368Z copying torch\include\ATen\ops\reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0966480Z copying torch\include\ATen\ops\resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0972909Z copying torch\include\ATen\ops\resize_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0979771Z copying torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0986829Z copying torch\include\ATen\ops\resize_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.0994845Z copying torch\include\ATen\ops\resize_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1002420Z copying torch\include\ATen\ops\resize_as_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1009582Z copying torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1016417Z copying torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1023317Z copying torch\include\ATen\ops\resize_as_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1030328Z copying torch\include\ATen\ops\resize_as_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1046854Z copying torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1054245Z copying torch\include\ATen\ops\resize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1061386Z copying torch\include\ATen\ops\resize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1068725Z copying torch\include\ATen\ops\resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1076423Z copying torch\include\ATen\ops\resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1087578Z copying torch\include\ATen\ops\resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1094951Z copying torch\include\ATen\ops\resolve_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1102899Z copying torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1110249Z copying torch\include\ATen\ops\resolve_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1117174Z copying torch\include\ATen\ops\resolve_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1128375Z copying torch\include\ATen\ops\resolve_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1135353Z copying torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1142919Z copying torch\include\ATen\ops\resolve_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1206935Z copying torch\include\ATen\ops\resolve_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1214153Z copying torch\include\ATen\ops\result_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1221424Z copying torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1231552Z copying torch\include\ATen\ops\result_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1240178Z copying torch\include\ATen\ops\result_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1250460Z copying torch\include\ATen\ops\retains_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1259383Z copying torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1272661Z copying torch\include\ATen\ops\retains_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1278612Z copying torch\include\ATen\ops\retains_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1285747Z copying torch\include\ATen\ops\retain_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1292803Z copying torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1299735Z copying torch\include\ATen\ops\retain_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1310017Z copying torch\include\ATen\ops\retain_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1316760Z copying torch\include\ATen\ops\rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1324465Z copying torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1331096Z copying torch\include\ATen\ops\rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1337992Z copying torch\include\ATen\ops\rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1344792Z copying torch\include\ATen\ops\rnn_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1351373Z copying torch\include\ATen\ops\rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1358827Z copying torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1366087Z copying torch\include\ATen\ops\rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1373248Z copying torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1726105Z copying torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1732585Z copying torch\include\ATen\ops\rnn_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1739448Z copying torch\include\ATen\ops\rnn_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1746347Z copying torch\include\ATen\ops\rnn_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1752792Z copying torch\include\ATen\ops\rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1760197Z copying torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1766883Z copying torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1773831Z copying torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1780878Z copying torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1787755Z copying torch\include\ATen\ops\rnn_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1794536Z copying torch\include\ATen\ops\rnn_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1801545Z copying torch\include\ATen\ops\roll.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1808319Z copying torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1815050Z copying torch\include\ATen\ops\roll_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1821731Z copying torch\include\ATen\ops\roll_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1850283Z copying torch\include\ATen\ops\roll_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1850999Z copying torch\include\ATen\ops\roll_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1851670Z copying torch\include\ATen\ops\rot90.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1852506Z copying torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1858051Z copying torch\include\ATen\ops\rot90_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1871732Z copying torch\include\ATen\ops\rot90_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1880124Z copying torch\include\ATen\ops\round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1888883Z copying torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1895549Z copying torch\include\ATen\ops\round_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1904068Z copying torch\include\ATen\ops\round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1915859Z copying torch\include\ATen\ops\round_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1922548Z copying torch\include\ATen\ops\round_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1929452Z copying torch\include\ATen\ops\round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1936378Z copying torch\include\ATen\ops\round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1943045Z copying torch\include\ATen\ops\row_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1949685Z copying torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1956167Z copying torch\include\ATen\ops\row_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1963551Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1970322Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1976934Z copying torch\include\ATen\ops\row_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1983817Z copying torch\include\ATen\ops\row_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1990690Z copying torch\include\ATen\ops\row_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.1997143Z copying torch\include\ATen\ops\row_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2004070Z copying torch\include\ATen\ops\row_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2011037Z copying torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2022941Z copying torch\include\ATen\ops\row_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2029273Z copying torch\include\ATen\ops\row_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2036094Z copying torch\include\ATen\ops\rrelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2042692Z copying torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2049320Z copying torch\include\ATen\ops\rrelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2060839Z copying torch\include\ATen\ops\rrelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2067683Z copying torch\include\ATen\ops\rrelu_with_noise.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2074551Z copying torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2081670Z copying torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2088733Z copying torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2095659Z copying torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2102819Z copying torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2109829Z copying torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2116761Z copying torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2123769Z copying torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2130865Z copying torch\include\ATen\ops\rrelu_with_noise_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2138054Z copying torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2145043Z copying torch\include\ATen\ops\rshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2151852Z copying torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2158645Z copying torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2170596Z copying torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2177473Z copying torch\include\ATen\ops\rshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2184300Z copying torch\include\ATen\ops\rshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2191071Z copying torch\include\ATen\ops\rshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2197834Z copying torch\include\ATen\ops\rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2204748Z copying torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2211767Z copying torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2218788Z copying torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2225448Z copying torch\include\ATen\ops\rsqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2231945Z copying torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2243330Z copying torch\include\ATen\ops\rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2250275Z copying torch\include\ATen\ops\rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2257035Z copying torch\include\ATen\ops\rsub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2263835Z copying torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2270700Z copying torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2281716Z copying torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2288552Z copying torch\include\ATen\ops\rsub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2295302Z copying torch\include\ATen\ops\rsub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2301720Z copying torch\include\ATen\ops\scalar_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2308676Z copying torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2322937Z copying torch\include\ATen\ops\scalar_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2329815Z copying torch\include\ATen\ops\scalar_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2336846Z copying torch\include\ATen\ops\scaled_dot_product_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2347446Z copying torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2354270Z copying torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2366449Z copying torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2373376Z copying torch\include\ATen\ops\scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2379848Z copying torch\include\ATen\ops\scatter_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2387391Z copying torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2394567Z copying torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2405801Z copying torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2412683Z copying torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2419519Z copying torch\include\ATen\ops\scatter_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2426544Z copying torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2433334Z copying torch\include\ATen\ops\scatter_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2444327Z copying torch\include\ATen\ops\scatter_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2451788Z copying torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2458573Z copying torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2465295Z copying torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2472151Z copying torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2482814Z copying torch\include\ATen\ops\scatter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2524913Z copying torch\include\ATen\ops\scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2525757Z copying torch\include\ATen\ops\scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2526478Z copying torch\include\ATen\ops\scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2527202Z copying torch\include\ATen\ops\scatter_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2528180Z copying torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2533323Z copying torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2540224Z copying torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2547338Z copying torch\include\ATen\ops\scatter_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2554298Z copying torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2561156Z copying torch\include\ATen\ops\scatter_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2568103Z copying torch\include\ATen\ops\scatter_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2574963Z copying torch\include\ATen\ops\searchsorted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2581639Z copying torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2588322Z copying torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2595139Z copying torch\include\ATen\ops\searchsorted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2602118Z copying torch\include\ATen\ops\searchsorted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2609103Z copying torch\include\ATen\ops\segment_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2615958Z copying torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2622578Z copying torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2629329Z copying torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2635922Z copying torch\include\ATen\ops\segment_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2642533Z copying torch\include\ATen\ops\segment_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2649648Z copying torch\include\ATen\ops\select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2656037Z copying torch\include\ATen\ops\select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2667839Z copying torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2674540Z copying torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2681107Z copying torch\include\ATen\ops\select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2687979Z copying torch\include\ATen\ops\select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2695972Z copying torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2707867Z copying torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2714664Z copying torch\include\ATen\ops\select_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2721864Z copying torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2728913Z copying torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2735535Z copying torch\include\ATen\ops\select_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2746706Z copying torch\include\ATen\ops\select_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2753414Z copying torch\include\ATen\ops\select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2760005Z copying torch\include\ATen\ops\select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2766976Z copying torch\include\ATen\ops\select_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2774408Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2786643Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2792903Z copying torch\include\ATen\ops\select_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2799866Z copying torch\include\ATen\ops\select_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2806666Z copying torch\include\ATen\ops\selu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2813451Z copying torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2825374Z copying torch\include\ATen\ops\selu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2831805Z copying torch\include\ATen\ops\selu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2838191Z copying torch\include\ATen\ops\set.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2844896Z copying torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2851807Z copying torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2858664Z copying torch\include\ATen\ops\set_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2865209Z copying torch\include\ATen\ops\set_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2873685Z copying torch\include\ATen\ops\set_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2880226Z copying torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2885764Z copying torch\include\ATen\ops\set_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2892364Z copying torch\include\ATen\ops\set_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2932384Z copying torch\include\ATen\ops\set_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2933134Z copying torch\include\ATen\ops\set_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2933813Z copying torch\include\ATen\ops\set_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2934479Z copying torch\include\ATen\ops\sgn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2935377Z copying torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2941309Z copying torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2973734Z copying torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2980157Z copying torch\include\ATen\ops\sgn_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2986900Z copying torch\include\ATen\ops\sgn_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.2993584Z copying torch\include\ATen\ops\sgn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3000129Z copying torch\include\ATen\ops\sgn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3006581Z copying torch\include\ATen\ops\sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3013141Z copying torch\include\ATen\ops\sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3020463Z copying torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3027040Z copying torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3033734Z copying torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3040545Z copying torch\include\ATen\ops\sigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3047665Z copying torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3054376Z copying torch\include\ATen\ops\sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3065669Z copying torch\include\ATen\ops\sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3072748Z copying torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3079448Z copying torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3086200Z copying torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3092983Z copying torch\include\ATen\ops\sigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3104363Z copying torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3110981Z copying torch\include\ATen\ops\sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3117867Z copying torch\include\ATen\ops\sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3124333Z copying torch\include\ATen\ops\sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3130541Z copying torch\include\ATen\ops\signbit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3141751Z copying torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3148255Z copying torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3155283Z copying torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3164687Z copying torch\include\ATen\ops\signbit_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3168888Z copying torch\include\ATen\ops\signbit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3176148Z copying torch\include\ATen\ops\signbit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3218407Z copying torch\include\ATen\ops\signbit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3219341Z copying torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3220374Z copying torch\include\ATen\ops\sign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3221133Z copying torch\include\ATen\ops\sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3221864Z copying torch\include\ATen\ops\sign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3224796Z copying torch\include\ATen\ops\sign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3231681Z copying torch\include\ATen\ops\sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3238453Z copying torch\include\ATen\ops\sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3244858Z copying torch\include\ATen\ops\silu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3255875Z copying torch\include\ATen\ops\silu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3262897Z copying torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3270601Z copying torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3277202Z copying torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3283901Z copying torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3295424Z copying torch\include\ATen\ops\silu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3302317Z copying torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3309073Z copying torch\include\ATen\ops\silu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3315843Z copying torch\include\ATen\ops\silu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3323041Z copying torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3333412Z copying torch\include\ATen\ops\silu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3339974Z copying torch\include\ATen\ops\silu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3346523Z copying torch\include\ATen\ops\silu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3352884Z copying torch\include\ATen\ops\silu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3359798Z copying torch\include\ATen\ops\silu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3374020Z copying torch\include\ATen\ops\silu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3380402Z copying torch\include\ATen\ops\sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3386601Z copying torch\include\ATen\ops\sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3393620Z copying torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3400052Z copying torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3406725Z copying torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3413420Z copying torch\include\ATen\ops\sinc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3420268Z copying torch\include\ATen\ops\sinc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3426388Z copying torch\include\ATen\ops\sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3432944Z copying torch\include\ATen\ops\sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3444216Z copying torch\include\ATen\ops\sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3451062Z copying torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3458426Z copying torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3464461Z copying torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3471054Z copying torch\include\ATen\ops\sinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3477351Z copying torch\include\ATen\ops\sinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3483842Z copying torch\include\ATen\ops\sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3490693Z copying torch\include\ATen\ops\sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3497347Z copying torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3503726Z copying torch\include\ATen\ops\sin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3515243Z copying torch\include\ATen\ops\sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3521757Z copying torch\include\ATen\ops\sin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3528569Z copying torch\include\ATen\ops\sin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3535031Z copying torch\include\ATen\ops\sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3541714Z copying torch\include\ATen\ops\sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3548156Z copying torch\include\ATen\ops\size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3554909Z copying torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3561546Z copying torch\include\ATen\ops\size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3568094Z copying torch\include\ATen\ops\size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3574590Z copying torch\include\ATen\ops\slice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3581105Z copying torch\include\ATen\ops\slice_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3588186Z copying torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3595473Z copying torch\include\ATen\ops\slice_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3602052Z copying torch\include\ATen\ops\slice_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3609180Z copying torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3616007Z copying torch\include\ATen\ops\slice_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3623693Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3630546Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3637236Z copying torch\include\ATen\ops\slice_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3644029Z copying torch\include\ATen\ops\slice_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3655689Z copying torch\include\ATen\ops\slice_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3690977Z copying torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3697995Z copying torch\include\ATen\ops\slice_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3705064Z copying torch\include\ATen\ops\slice_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3711706Z copying torch\include\ATen\ops\slice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3718526Z copying torch\include\ATen\ops\slice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3725592Z copying torch\include\ATen\ops\slice_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3733227Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3740209Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3746960Z copying torch\include\ATen\ops\slice_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3753998Z copying torch\include\ATen\ops\slice_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3760690Z copying torch\include\ATen\ops\slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3767446Z copying torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3773931Z copying torch\include\ATen\ops\slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3781262Z copying torch\include\ATen\ops\slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3792837Z copying torch\include\ATen\ops\slow_conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3800118Z copying torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3807070Z copying torch\include\ATen\ops\slow_conv3d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3814063Z copying torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3820948Z copying torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3827954Z copying torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3835579Z copying torch\include\ATen\ops\slow_conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3842077Z copying torch\include\ATen\ops\slow_conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3849160Z copying torch\include\ATen\ops\slow_conv_dilated2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3856397Z copying torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3863774Z copying torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3870448Z copying torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3878038Z copying torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3884928Z copying torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3893071Z copying torch\include\ATen\ops\slow_conv_dilated3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3903502Z copying torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3910492Z copying torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3917808Z copying torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3924724Z copying torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3931806Z copying torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3941932Z copying torch\include\ATen\ops\slow_conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3949229Z copying torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3957351Z copying torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3963139Z copying torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3970194Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3982982Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3989950Z copying torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.3996667Z copying torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4003359Z copying torch\include\ATen\ops\slow_conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4010345Z copying torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4018046Z copying torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4039854Z copying torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4040695Z copying torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4041431Z copying torch\include\ATen\ops\smm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4047734Z copying torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4054367Z copying torch\include\ATen\ops\smm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4060910Z copying torch\include\ATen\ops\smm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4067972Z copying torch\include\ATen\ops\smooth_l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4074601Z copying torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4081897Z copying torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4088811Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4095811Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4102875Z copying torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4109863Z copying torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4117244Z copying torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4129184Z copying torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4136752Z copying torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4143349Z copying torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4150300Z copying torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4157095Z copying torch\include\ATen\ops\smooth_l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4163992Z copying torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4171198Z copying torch\include\ATen\ops\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4177947Z copying torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4184791Z copying torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4191437Z copying torch\include\ATen\ops\softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4203047Z copying torch\include\ATen\ops\softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4210290Z copying torch\include\ATen\ops\softplus.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4216989Z copying torch\include\ATen\ops\softplus_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4224386Z copying torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4231272Z copying torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4251058Z copying torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4257716Z copying torch\include\ATen\ops\softplus_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4264504Z copying torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4271208Z copying torch\include\ATen\ops\softplus_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4278244Z copying torch\include\ATen\ops\softplus_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4290173Z copying torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4296833Z copying torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4303665Z copying torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4310209Z copying torch\include\ATen\ops\softplus_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4316885Z copying torch\include\ATen\ops\softplus_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4323596Z copying torch\include\ATen\ops\softplus_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4330700Z copying torch\include\ATen\ops\softplus_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4337468Z copying torch\include\ATen\ops\softshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4349161Z copying torch\include\ATen\ops\softshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4356032Z copying torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4362766Z copying torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4369763Z copying torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4377006Z copying torch\include\ATen\ops\softshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4384255Z copying torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4428449Z copying torch\include\ATen\ops\softshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4429290Z copying torch\include\ATen\ops\softshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4430301Z copying torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4431307Z copying torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4432130Z copying torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4432972Z copying torch\include\ATen\ops\softshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4442228Z copying torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4449309Z copying torch\include\ATen\ops\softshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4456098Z copying torch\include\ATen\ops\softshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4463608Z copying torch\include\ATen\ops\soft_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4469324Z copying torch\include\ATen\ops\soft_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4481228Z copying torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4488166Z copying torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4494802Z copying torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4501565Z copying torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4508007Z copying torch\include\ATen\ops\soft_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4514959Z copying torch\include\ATen\ops\soft_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4521275Z copying torch\include\ATen\ops\sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4528162Z copying torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4535532Z copying torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4542294Z copying torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4548963Z copying torch\include\ATen\ops\sort_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4555856Z copying torch\include\ATen\ops\sort_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4562505Z copying torch\include\ATen\ops\sort_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4569192Z copying torch\include\ATen\ops\sort_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4576093Z copying torch\include\ATen\ops\sort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4582859Z copying torch\include\ATen\ops\sort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4589387Z copying torch\include\ATen\ops\sparse_bsc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4596332Z copying torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4602897Z copying torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4609710Z copying torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4628656Z copying torch\include\ATen\ops\sparse_bsr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4635748Z copying torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4642784Z copying torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4649601Z copying torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4656256Z copying torch\include\ATen\ops\sparse_compressed_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4663336Z copying torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4670017Z copying torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4677149Z copying torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4684120Z copying torch\include\ATen\ops\sparse_coo_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4691374Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4698699Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4705284Z copying torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4712210Z copying torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4719241Z copying torch\include\ATen\ops\sparse_csc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4726633Z copying torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4738933Z copying torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4745876Z copying torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4752988Z copying torch\include\ATen\ops\sparse_csr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4760119Z copying torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4766977Z copying torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4777985Z copying torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4784841Z copying torch\include\ATen\ops\sparse_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4791765Z copying torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4798751Z copying torch\include\ATen\ops\sparse_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4805409Z copying torch\include\ATen\ops\sparse_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4812286Z copying torch\include\ATen\ops\sparse_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4819384Z copying torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4826131Z copying torch\include\ATen\ops\sparse_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4833498Z copying torch\include\ATen\ops\sparse_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4840060Z copying torch\include\ATen\ops\sparse_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4854718Z copying torch\include\ATen\ops\sparse_resize_and_clear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4862363Z copying torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4869267Z copying torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4876214Z copying torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4883395Z copying torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4890781Z copying torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4897728Z copying torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4905245Z copying torch\include\ATen\ops\sparse_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4912646Z copying torch\include\ATen\ops\sparse_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4920143Z copying torch\include\ATen\ops\sparse_sampled_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4932969Z copying torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4940540Z copying torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4947925Z copying torch\include\ATen\ops\special_airy_ai.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4955614Z copying torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4962374Z copying torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4973019Z copying torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4980312Z copying torch\include\ATen\ops\special_airy_ai_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4987752Z copying torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.4994788Z copying torch\include\ATen\ops\special_airy_ai_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5002196Z copying torch\include\ATen\ops\special_airy_ai_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5012935Z copying torch\include\ATen\ops\special_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5020141Z copying torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5027013Z copying torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5034212Z copying torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5041019Z copying torch\include\ATen\ops\special_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5053096Z copying torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5059939Z copying torch\include\ATen\ops\special_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5066690Z copying torch\include\ATen\ops\special_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5073450Z copying torch\include\ATen\ops\special_bessel_j1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5080626Z copying torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5092279Z copying torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5099116Z copying torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5105804Z copying torch\include\ATen\ops\special_bessel_j1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5112631Z copying torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5119387Z copying torch\include\ATen\ops\special_bessel_j1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5129633Z copying torch\include\ATen\ops\special_bessel_j1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5164872Z copying torch\include\ATen\ops\special_bessel_y0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5172287Z copying torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5178839Z copying torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5185597Z copying torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5198103Z copying torch\include\ATen\ops\special_bessel_y0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5205301Z copying torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5212040Z copying torch\include\ATen\ops\special_bessel_y0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5219155Z copying torch\include\ATen\ops\special_bessel_y0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5226142Z copying torch\include\ATen\ops\special_bessel_y1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5238818Z copying torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5243717Z copying torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5250627Z copying torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5257927Z copying torch\include\ATen\ops\special_bessel_y1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5265458Z copying torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5277752Z copying torch\include\ATen\ops\special_bessel_y1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5285463Z copying torch\include\ATen\ops\special_bessel_y1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5293261Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5301408Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5308381Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5316209Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5322720Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5329574Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5336789Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5343537Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5350952Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5357563Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5364731Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5372023Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5379046Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5385904Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5393014Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5399933Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5406876Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5413585Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5420793Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5427989Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5435225Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5441995Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5448847Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5455871Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5462736Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5469629Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5476397Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5483149Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5491011Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5497962Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5504884Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5512053Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5518751Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5526084Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5533145Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5540194Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5551537Z copying torch\include\ATen\ops\special_digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5554770Z copying torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5561713Z copying torch\include\ATen\ops\special_digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5583919Z copying torch\include\ATen\ops\special_digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5584680Z copying torch\include\ATen\ops\special_entr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5585655Z copying torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5592411Z copying torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5604971Z copying torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5611899Z copying torch\include\ATen\ops\special_entr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5618778Z copying torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5625777Z copying torch\include\ATen\ops\special_entr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5632539Z copying torch\include\ATen\ops\special_entr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5644020Z copying torch\include\ATen\ops\special_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5650880Z copying torch\include\ATen\ops\special_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5686950Z copying torch\include\ATen\ops\special_erfcx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5694067Z copying torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5700691Z copying torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5707858Z copying torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5714512Z copying torch\include\ATen\ops\special_erfcx_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5721686Z copying torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5728468Z copying torch\include\ATen\ops\special_erfcx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5735388Z copying torch\include\ATen\ops\special_erfcx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5749447Z copying torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5750651Z copying torch\include\ATen\ops\special_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5757063Z copying torch\include\ATen\ops\special_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5763940Z copying torch\include\ATen\ops\special_erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5803379Z copying torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5804328Z copying torch\include\ATen\ops\special_erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5820669Z copying torch\include\ATen\ops\special_erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5827439Z copying torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5834346Z copying torch\include\ATen\ops\special_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5840964Z copying torch\include\ATen\ops\special_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5848236Z copying torch\include\ATen\ops\special_exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5855547Z copying torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5862273Z copying torch\include\ATen\ops\special_exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5868838Z copying torch\include\ATen\ops\special_exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5875568Z copying torch\include\ATen\ops\special_expit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5887365Z copying torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5894205Z copying torch\include\ATen\ops\special_expit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5905308Z copying torch\include\ATen\ops\special_expit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5911972Z copying torch\include\ATen\ops\special_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5918966Z copying torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5926221Z copying torch\include\ATen\ops\special_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5932709Z copying torch\include\ATen\ops\special_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5939817Z copying torch\include\ATen\ops\special_gammainc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5946457Z copying torch\include\ATen\ops\special_gammaincc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5953432Z copying torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5960101Z copying torch\include\ATen\ops\special_gammaincc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5966893Z copying torch\include\ATen\ops\special_gammaincc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5973710Z copying torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5980311Z copying torch\include\ATen\ops\special_gammainc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5987379Z copying torch\include\ATen\ops\special_gammainc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.5994169Z copying torch\include\ATen\ops\special_gammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6001145Z copying torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6008069Z copying torch\include\ATen\ops\special_gammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6014786Z copying torch\include\ATen\ops\special_gammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6021541Z copying torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6028217Z copying torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6035408Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6052530Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6053606Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6058990Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6081572Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6082499Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6083440Z copying torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6089291Z copying torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6096766Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6104323Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6125089Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6126308Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6127257Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6133065Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6149952Z copying torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6157128Z copying torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6164037Z copying torch\include\ATen\ops\special_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6170775Z copying torch\include\ATen\ops\special_i0e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6177872Z copying torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6184347Z copying torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6191171Z copying torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6197929Z copying torch\include\ATen\ops\special_i0e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6204480Z copying torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6211412Z copying torch\include\ATen\ops\special_i0e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6218096Z copying torch\include\ATen\ops\special_i0e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6225147Z copying torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6231712Z copying torch\include\ATen\ops\special_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6238205Z copying torch\include\ATen\ops\special_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6245465Z copying torch\include\ATen\ops\special_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6252619Z copying torch\include\ATen\ops\special_i1e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6259993Z copying torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6266890Z copying torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6273867Z copying torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6280716Z copying torch\include\ATen\ops\special_i1e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6287466Z copying torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6294182Z copying torch\include\ATen\ops\special_i1e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6301290Z copying torch\include\ATen\ops\special_i1e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6308481Z copying torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6315587Z copying torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6322460Z copying torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6329501Z copying torch\include\ATen\ops\special_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6336195Z copying torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6343144Z copying torch\include\ATen\ops\special_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6350376Z copying torch\include\ATen\ops\special_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6357545Z copying torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6364949Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6373011Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6379759Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6387012Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6398895Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6406050Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6420624Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6421606Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6441240Z copying torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6442364Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6444543Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6451966Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6459376Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6466393Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6478397Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6485327Z copying torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6492437Z copying torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6499159Z copying torch\include\ATen\ops\special_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6506227Z copying torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6513238Z copying torch\include\ATen\ops\special_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6519787Z copying torch\include\ATen\ops\special_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6527057Z copying torch\include\ATen\ops\special_logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6534240Z copying torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6540942Z copying torch\include\ATen\ops\special_logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6547914Z copying torch\include\ATen\ops\special_logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6554614Z copying torch\include\ATen\ops\special_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6561720Z copying torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6568835Z copying torch\include\ATen\ops\special_logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6575540Z copying torch\include\ATen\ops\special_logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6587148Z copying torch\include\ATen\ops\special_log_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6594303Z copying torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6600984Z copying torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6607998Z copying torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6614903Z copying torch\include\ATen\ops\special_log_ndtr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6626905Z copying torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6633793Z copying torch\include\ATen\ops\special_log_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6640618Z copying torch\include\ATen\ops\special_log_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6647675Z copying torch\include\ATen\ops\special_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6655198Z copying torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6670455Z copying torch\include\ATen\ops\special_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6677307Z copying torch\include\ATen\ops\special_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6684105Z copying torch\include\ATen\ops\special_modified_bessel_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6691480Z copying torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6698154Z copying torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6709855Z copying torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6716997Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6724100Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6731413Z copying torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6738391Z copying torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6745441Z copying torch\include\ATen\ops\special_modified_bessel_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6752886Z copying torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6760467Z copying torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6767558Z copying torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6774480Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6786267Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6793835Z copying torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6800589Z copying torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6807723Z copying torch\include\ATen\ops\special_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6815107Z copying torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6822193Z copying torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6829525Z copying torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6836498Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6843919Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6851671Z copying torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6858329Z copying torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6865309Z copying torch\include\ATen\ops\special_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6872703Z copying torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6880449Z copying torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6887171Z copying torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6894259Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6901427Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6924369Z copying torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6924740Z copying torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6925154Z copying torch\include\ATen\ops\special_multigammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6932322Z copying torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6939483Z copying torch\include\ATen\ops\special_multigammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6946367Z copying torch\include\ATen\ops\special_multigammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6953185Z copying torch\include\ATen\ops\special_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6960318Z copying torch\include\ATen\ops\special_ndtri.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6967703Z copying torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6975997Z copying torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6982890Z copying torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6989659Z copying torch\include\ATen\ops\special_ndtri_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.6996829Z copying torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7003614Z copying torch\include\ATen\ops\special_ndtri_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7010758Z copying torch\include\ATen\ops\special_ndtri_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7018094Z copying torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7025033Z copying torch\include\ATen\ops\special_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7031503Z copying torch\include\ATen\ops\special_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7038463Z copying torch\include\ATen\ops\special_polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7045626Z copying torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7052573Z copying torch\include\ATen\ops\special_polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7059256Z copying torch\include\ATen\ops\special_polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7066352Z copying torch\include\ATen\ops\special_psi.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7073863Z copying torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7080385Z copying torch\include\ATen\ops\special_psi_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7087176Z copying torch\include\ATen\ops\special_psi_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7094064Z copying torch\include\ATen\ops\special_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7101337Z copying torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7108258Z copying torch\include\ATen\ops\special_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7115403Z copying torch\include\ATen\ops\special_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7122515Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7130192Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7137265Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7144713Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7151814Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7158704Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7191675Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7198819Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7205893Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7213569Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7220560Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7228010Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7234766Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7242000Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7249415Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7256571Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7263594Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7271088Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7278418Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7285880Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7293108Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7300177Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7308329Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7320417Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7327763Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7334900Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7342879Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7350188Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7357389Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7364596Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7371821Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7379090Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7386155Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7394124Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7401003Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7408611Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7416093Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7442286Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7442753Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7443250Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7449835Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7455827Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7462910Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7470147Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7478083Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7485549Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7492896Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7501045Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7507188Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7514257Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7521224Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7528594Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7535424Z copying torch\include\ATen\ops\special_sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7542626Z copying torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7549382Z copying torch\include\ATen\ops\special_sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7556034Z copying torch\include\ATen\ops\special_sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7562832Z copying torch\include\ATen\ops\special_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7570054Z copying torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7578399Z copying torch\include\ATen\ops\special_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7585031Z copying torch\include\ATen\ops\special_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7592128Z copying torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7599458Z copying torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7606255Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7613425Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7620219Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7627069Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7662931Z copying torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7669735Z copying torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7676595Z copying torch\include\ATen\ops\special_xlog1py.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7684139Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7691564Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7698429Z copying torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7705292Z copying torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7712305Z copying torch\include\ATen\ops\special_xlog1py_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7719292Z copying torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7726349Z copying torch\include\ATen\ops\special_xlog1py_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7733287Z copying torch\include\ATen\ops\special_xlog1py_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7739995Z copying torch\include\ATen\ops\special_xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7747796Z copying torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7754422Z copying torch\include\ATen\ops\special_xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7761037Z copying torch\include\ATen\ops\special_xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7768579Z copying torch\include\ATen\ops\special_zeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7775964Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7782942Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7789796Z copying torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7796614Z copying torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7803451Z copying torch\include\ATen\ops\special_zeta_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7810556Z copying torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7821918Z copying torch\include\ATen\ops\special_zeta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7829266Z copying torch\include\ATen\ops\special_zeta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7836148Z copying torch\include\ATen\ops\split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7842968Z copying torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7849797Z copying torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7863220Z copying torch\include\ATen\ops\split_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7870342Z copying torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7877374Z copying torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7884092Z copying torch\include\ATen\ops\split_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7890864Z copying torch\include\ATen\ops\split_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7897590Z copying torch\include\ATen\ops\split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7904266Z copying torch\include\ATen\ops\split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7911017Z copying torch\include\ATen\ops\split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7918565Z copying torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7925543Z copying torch\include\ATen\ops\split_with_sizes_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7934944Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7978453Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7979481Z copying torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7980344Z copying torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7981173Z copying torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7981993Z copying torch\include\ATen\ops\split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7982904Z copying torch\include\ATen\ops\split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7986804Z copying torch\include\ATen\ops\sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.7993741Z copying torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8000458Z copying torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8007856Z copying torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8014735Z copying torch\include\ATen\ops\sqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8021515Z copying torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8029468Z copying torch\include\ATen\ops\sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8035201Z copying torch\include\ATen\ops\sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8041260Z copying torch\include\ATen\ops\square.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8048105Z copying torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8054434Z copying torch\include\ATen\ops\square_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8061154Z copying torch\include\ATen\ops\square_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8067710Z copying torch\include\ATen\ops\squeeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8079956Z copying torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8087097Z copying torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8093743Z copying torch\include\ATen\ops\squeeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8100858Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8107733Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8114386Z copying torch\include\ATen\ops\squeeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8121287Z copying torch\include\ATen\ops\squeeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8128178Z copying torch\include\ATen\ops\squeeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8134870Z copying torch\include\ATen\ops\squeeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8146562Z copying torch\include\ATen\ops\sspaddmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8159137Z copying torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8165680Z copying torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8172509Z copying torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8179487Z copying torch\include\ATen\ops\sspaddmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8186254Z copying torch\include\ATen\ops\sspaddmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8197242Z copying torch\include\ATen\ops\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8203731Z copying torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8210291Z copying torch\include\ATen\ops\stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8216619Z copying torch\include\ATen\ops\stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8223143Z copying torch\include\ATen\ops\std.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8229899Z copying torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8236624Z copying torch\include\ATen\ops\std_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8243439Z copying torch\include\ATen\ops\std_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8250117Z copying torch\include\ATen\ops\std_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8256817Z copying torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8263845Z copying torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8270055Z copying torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8276846Z copying torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8283828Z copying torch\include\ATen\ops\std_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8290742Z copying torch\include\ATen\ops\std_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8297959Z copying torch\include\ATen\ops\std_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8304559Z copying torch\include\ATen\ops\std_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8310921Z copying torch\include\ATen\ops\stft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8317625Z copying torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8324141Z copying torch\include\ATen\ops\stft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8338696Z copying torch\include\ATen\ops\stft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8345122Z copying torch\include\ATen\ops\stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8351870Z copying torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8359358Z copying torch\include\ATen\ops\stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8366593Z copying torch\include\ATen\ops\stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8373836Z copying torch\include\ATen\ops\sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8381065Z copying torch\include\ATen\ops\subtract.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8388669Z copying torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8395496Z copying torch\include\ATen\ops\subtract_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8402239Z copying torch\include\ATen\ops\subtract_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8409798Z copying torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8416662Z copying torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8423171Z copying torch\include\ATen\ops\sub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8429896Z copying torch\include\ATen\ops\sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8436301Z copying torch\include\ATen\ops\sub_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8447580Z copying torch\include\ATen\ops\sub_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8454120Z copying torch\include\ATen\ops\sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8461604Z copying torch\include\ATen\ops\sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8467580Z copying torch\include\ATen\ops\sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8474314Z copying torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8486202Z copying torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8492984Z copying torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8499555Z copying torch\include\ATen\ops\sum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8506167Z copying torch\include\ATen\ops\sum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8512664Z copying torch\include\ATen\ops\sum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8518961Z copying torch\include\ATen\ops\sum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8525774Z copying torch\include\ATen\ops\sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8532337Z copying torch\include\ATen\ops\sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8538749Z copying torch\include\ATen\ops\sum_to_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8545563Z copying torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8558867Z copying torch\include\ATen\ops\sum_to_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8566658Z copying torch\include\ATen\ops\sum_to_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8573348Z copying torch\include\ATen\ops\svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8581180Z copying torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8587845Z copying torch\include\ATen\ops\svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8600663Z copying torch\include\ATen\ops\svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8607199Z copying torch\include\ATen\ops\swapaxes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8613828Z copying torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8620372Z copying torch\include\ATen\ops\swapaxes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8626966Z copying torch\include\ATen\ops\swapaxes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8638231Z copying torch\include\ATen\ops\swapdims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8644807Z copying torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8651646Z copying torch\include\ATen\ops\swapdims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8658170Z copying torch\include\ATen\ops\swapdims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8664958Z copying torch\include\ATen\ops\sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8671920Z copying torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8678463Z copying torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8685626Z copying torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8692720Z copying torch\include\ATen\ops\sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8699451Z copying torch\include\ATen\ops\sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8706183Z copying torch\include\ATen\ops\sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8712945Z copying torch\include\ATen\ops\sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8719544Z copying torch\include\ATen\ops\sym_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8726513Z copying torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8733253Z copying torch\include\ATen\ops\sym_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8744998Z copying torch\include\ATen\ops\sym_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8751779Z copying torch\include\ATen\ops\sym_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8758614Z copying torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8765405Z copying torch\include\ATen\ops\sym_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8771891Z copying torch\include\ATen\ops\sym_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8778814Z copying torch\include\ATen\ops\sym_storage_offset.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8785825Z copying torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8792820Z copying torch\include\ATen\ops\sym_storage_offset_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8799960Z copying torch\include\ATen\ops\sym_storage_offset_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8806819Z copying torch\include\ATen\ops\sym_stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8813967Z copying torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8821027Z copying torch\include\ATen\ops\sym_stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8827722Z copying torch\include\ATen\ops\sym_stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8834601Z copying torch\include\ATen\ops\t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8841134Z copying torch\include\ATen\ops\take.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8847769Z copying torch\include\ATen\ops\take_along_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8854786Z copying torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8861561Z copying torch\include\ATen\ops\take_along_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8868650Z copying torch\include\ATen\ops\take_along_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8875865Z copying torch\include\ATen\ops\take_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8882718Z copying torch\include\ATen\ops\take_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8889837Z copying torch\include\ATen\ops\take_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8896823Z copying torch\include\ATen\ops\take_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8903216Z copying torch\include\ATen\ops\tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8909570Z copying torch\include\ATen\ops\tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8916058Z copying torch\include\ATen\ops\tanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8923246Z copying torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8954610Z copying torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8955457Z copying torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8956254Z copying torch\include\ATen\ops\tanh_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8957059Z copying torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8960589Z copying torch\include\ATen\ops\tanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8967859Z copying torch\include\ATen\ops\tanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8975124Z copying torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8981703Z copying torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8993144Z copying torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.8999671Z copying torch\include\ATen\ops\tanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9006406Z copying torch\include\ATen\ops\tanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9013112Z copying torch\include\ATen\ops\tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9019539Z copying torch\include\ATen\ops\tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9026162Z copying torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9051356Z copying torch\include\ATen\ops\tan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9058099Z copying torch\include\ATen\ops\tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9064788Z copying torch\include\ATen\ops\tan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9070926Z copying torch\include\ATen\ops\tan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9081776Z copying torch\include\ATen\ops\tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9088420Z copying torch\include\ATen\ops\tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9094878Z copying torch\include\ATen\ops\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9101240Z copying torch\include\ATen\ops\tensordot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9108005Z copying torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9114508Z copying torch\include\ATen\ops\tensordot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9121388Z copying torch\include\ATen\ops\tensordot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9128034Z copying torch\include\ATen\ops\tensor_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9135738Z copying torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9142255Z copying torch\include\ATen\ops\tensor_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9148970Z copying torch\include\ATen\ops\tensor_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9155610Z copying torch\include\ATen\ops\thnn_conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9162497Z copying torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9169238Z copying torch\include\ATen\ops\thnn_conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9175987Z copying torch\include\ATen\ops\thnn_conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9187506Z copying torch\include\ATen\ops\threshold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9194470Z copying torch\include\ATen\ops\threshold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9201533Z copying torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9208135Z copying torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9214832Z copying torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9226761Z copying torch\include\ATen\ops\threshold_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9233622Z copying torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9240452Z copying torch\include\ATen\ops\threshold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9247338Z copying torch\include\ATen\ops\threshold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9283314Z copying torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9290038Z copying torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9296962Z copying torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9303829Z copying torch\include\ATen\ops\threshold_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9310550Z copying torch\include\ATen\ops\threshold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9317172Z copying torch\include\ATen\ops\threshold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9323782Z copying torch\include\ATen\ops\threshold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9330679Z copying torch\include\ATen\ops\tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9337285Z copying torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9343780Z copying torch\include\ATen\ops\tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9350076Z copying torch\include\ATen\ops\tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9360991Z copying torch\include\ATen\ops\to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9367208Z copying torch\include\ATen\ops\topk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9373994Z copying torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9380570Z copying torch\include\ATen\ops\topk_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9387084Z copying torch\include\ATen\ops\topk_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9398348Z copying torch\include\ATen\ops\topk_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9405106Z copying torch\include\ATen\ops\topk_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9411893Z copying torch\include\ATen\ops\topk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9418832Z copying torch\include\ATen\ops\topk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9425558Z copying torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9432940Z copying torch\include\ATen\ops\to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9439327Z copying torch\include\ATen\ops\to_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9447284Z copying torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9454982Z copying torch\include\ATen\ops\to_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9462447Z copying torch\include\ATen\ops\to_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9475082Z copying torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9482324Z copying torch\include\ATen\ops\to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9489235Z copying torch\include\ATen\ops\to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9496273Z copying torch\include\ATen\ops\to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9503019Z copying torch\include\ATen\ops\to_mkldnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9510651Z copying torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9517539Z copying torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9524164Z copying torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9531565Z copying torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9538132Z copying torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9544867Z copying torch\include\ATen\ops\to_mkldnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9551477Z copying torch\include\ATen\ops\to_mkldnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9558152Z copying torch\include\ATen\ops\to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9564818Z copying torch\include\ATen\ops\to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9599099Z copying torch\include\ATen\ops\to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9606360Z copying torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9612941Z copying torch\include\ATen\ops\to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9619812Z copying torch\include\ATen\ops\to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9626485Z copying torch\include\ATen\ops\to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9632876Z copying torch\include\ATen\ops\to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9644477Z copying torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9651314Z copying torch\include\ATen\ops\to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9657961Z copying torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9664660Z copying torch\include\ATen\ops\to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9671419Z copying torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9682733Z copying torch\include\ATen\ops\to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9689303Z copying torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9696307Z copying torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9703111Z copying torch\include\ATen\ops\to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9709819Z copying torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9716488Z copying torch\include\ATen\ops\to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9724163Z copying torch\include\ATen\ops\to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9731207Z copying torch\include\ATen\ops\to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9738409Z copying torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9745176Z copying torch\include\ATen\ops\to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9756801Z copying torch\include\ATen\ops\to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9763623Z copying torch\include\ATen\ops\to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9770645Z copying torch\include\ATen\ops\to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9777391Z copying torch\include\ATen\ops\trace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9784280Z copying torch\include\ATen\ops\trace_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9796006Z copying torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9802871Z copying torch\include\ATen\ops\trace_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9809664Z copying torch\include\ATen\ops\trace_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9816777Z copying torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9823650Z copying torch\include\ATen\ops\trace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9835423Z copying torch\include\ATen\ops\trace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9842260Z copying torch\include\ATen\ops\trace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9849102Z copying torch\include\ATen\ops\trace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9855855Z copying torch\include\ATen\ops\transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9862750Z copying torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9869908Z copying torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9876585Z copying torch\include\ATen\ops\transpose_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9883882Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9891048Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9898188Z copying torch\include\ATen\ops\transpose_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9904746Z copying torch\include\ATen\ops\transpose_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9911799Z copying torch\include\ATen\ops\transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9918579Z copying torch\include\ATen\ops\transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9925437Z copying torch\include\ATen\ops\trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9932443Z copying torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9940083Z copying torch\include\ATen\ops\trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9947663Z copying torch\include\ATen\ops\trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9954859Z copying torch\include\ATen\ops\trapz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9961834Z copying torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9968793Z copying torch\include\ATen\ops\trapz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9975778Z copying torch\include\ATen\ops\trapz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9982617Z copying torch\include\ATen\ops\triangular_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9989857Z copying torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:42.9996420Z copying torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0003283Z copying torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0010789Z copying torch\include\ATen\ops\triangular_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0017672Z copying torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0024530Z copying torch\include\ATen\ops\triangular_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0031390Z copying torch\include\ATen\ops\triangular_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0038134Z copying torch\include\ATen\ops\tril.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0044909Z copying torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0051471Z copying torch\include\ATen\ops\tril_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0058283Z copying torch\include\ATen\ops\tril_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0065066Z copying torch\include\ATen\ops\tril_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0071994Z copying torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0078571Z copying torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0085365Z copying torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0092416Z copying torch\include\ATen\ops\tril_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0099152Z copying torch\include\ATen\ops\tril_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0106269Z copying torch\include\ATen\ops\tril_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0112852Z copying torch\include\ATen\ops\tril_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0119830Z copying torch\include\ATen\ops\tril_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0126858Z copying torch\include\ATen\ops\tril_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0133534Z copying torch\include\ATen\ops\triplet_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0141131Z copying torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0147874Z copying torch\include\ATen\ops\triplet_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0170144Z copying torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0177913Z copying torch\include\ATen\ops\triu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0185323Z copying torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0192040Z copying torch\include\ATen\ops\triu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0198880Z copying torch\include\ATen\ops\triu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0205914Z copying torch\include\ATen\ops\triu_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0212830Z copying torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0219650Z copying torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0226510Z copying torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0233337Z copying torch\include\ATen\ops\triu_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0240070Z copying torch\include\ATen\ops\triu_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0246936Z copying torch\include\ATen\ops\triu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0253360Z copying torch\include\ATen\ops\triu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0259856Z copying torch\include\ATen\ops\triu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0266592Z copying torch\include\ATen\ops\triu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0273183Z copying torch\include\ATen\ops\true_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0280592Z copying torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0287328Z copying torch\include\ATen\ops\true_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0293911Z copying torch\include\ATen\ops\true_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0300575Z copying torch\include\ATen\ops\trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0307746Z copying torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0314091Z copying torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0320693Z copying torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0327833Z copying torch\include\ATen\ops\trunc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0334318Z copying torch\include\ATen\ops\trunc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0340987Z copying torch\include\ATen\ops\trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0348445Z copying torch\include\ATen\ops\trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0355014Z copying torch\include\ATen\ops\type_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0361343Z copying torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0368057Z copying torch\include\ATen\ops\type_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0374444Z copying torch\include\ATen\ops\type_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0381546Z copying torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0388168Z copying torch\include\ATen\ops\t_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0394937Z copying torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0401656Z copying torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0408299Z copying torch\include\ATen\ops\t_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0414706Z copying torch\include\ATen\ops\t_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0421563Z copying torch\include\ATen\ops\t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0427479Z copying torch\include\ATen\ops\t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0433865Z copying torch\include\ATen\ops\unbind.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0440786Z copying torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0448071Z copying torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0454624Z copying torch\include\ATen\ops\unbind_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0461863Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0469003Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0476681Z copying torch\include\ATen\ops\unbind_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0484420Z copying torch\include\ATen\ops\unbind_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0491988Z copying torch\include\ATen\ops\unbind_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0499431Z copying torch\include\ATen\ops\unbind_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0507403Z copying torch\include\ATen\ops\unflatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0514477Z copying torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0521405Z copying torch\include\ATen\ops\unflatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0528821Z copying torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0536167Z copying torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0542989Z copying torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0550073Z copying torch\include\ATen\ops\unflatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0556939Z copying torch\include\ATen\ops\unflatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0564355Z copying torch\include\ATen\ops\unfold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0570395Z copying torch\include\ATen\ops\unfold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0577897Z copying torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0584985Z copying torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0592077Z copying torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0598887Z copying torch\include\ATen\ops\unfold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0605832Z copying torch\include\ATen\ops\unfold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0612674Z copying torch\include\ATen\ops\unfold_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0619911Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0627041Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0634053Z copying torch\include\ATen\ops\unfold_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0640829Z copying torch\include\ATen\ops\unfold_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0647877Z copying torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0654854Z copying torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0661882Z copying torch\include\ATen\ops\unfold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0669517Z copying torch\include\ATen\ops\unfold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0676131Z copying torch\include\ATen\ops\unfold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0683041Z copying torch\include\ATen\ops\uniform.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0689886Z copying torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0696537Z copying torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0703397Z copying torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0710160Z copying torch\include\ATen\ops\uniform_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0716944Z copying torch\include\ATen\ops\uniform_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0723853Z copying torch\include\ATen\ops\uniform_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0730822Z copying torch\include\ATen\ops\unique_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0738020Z copying torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0744796Z copying torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0751894Z copying torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0758737Z copying torch\include\ATen\ops\unique_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0765886Z copying torch\include\ATen\ops\unique_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0772804Z copying torch\include\ATen\ops\unique_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0779887Z copying torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0786777Z copying torch\include\ATen\ops\unique_dim_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0793827Z copying torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0800910Z copying torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0807990Z copying torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0815381Z copying torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0822136Z copying torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0829037Z copying torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0835983Z copying torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0843023Z copying torch\include\ATen\ops\unique_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0849925Z copying torch\include\ATen\ops\unique_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0856719Z copying torch\include\ATen\ops\unsafe_chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0864010Z copying torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0870633Z copying torch\include\ATen\ops\unsafe_chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0876974Z copying torch\include\ATen\ops\unsafe_chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0883826Z copying torch\include\ATen\ops\unsafe_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0891077Z copying torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0897765Z copying torch\include\ATen\ops\unsafe_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0904706Z copying torch\include\ATen\ops\unsafe_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0911675Z copying torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0919252Z copying torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0925978Z copying torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0933046Z copying torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0940203Z copying torch\include\ATen\ops\unsqueeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0947097Z copying torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0954711Z copying torch\include\ATen\ops\unsqueeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0962698Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0970878Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0979244Z copying torch\include\ATen\ops\unsqueeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0987101Z copying torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.0995498Z copying torch\include\ATen\ops\unsqueeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1002657Z copying torch\include\ATen\ops\unsqueeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1010331Z copying torch\include\ATen\ops\upsample_bicubic2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1017491Z copying torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1024914Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1031931Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1038812Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1045903Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1053311Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1060369Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1067608Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1075141Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1082286Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1089273Z copying torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1096423Z copying torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1103714Z copying torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1110494Z copying torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1117631Z copying torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1124449Z copying torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1131785Z copying torch\include\ATen\ops\upsample_bilinear2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1139186Z copying torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1146544Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1153221Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1160381Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1168091Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1178925Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1186285Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1193483Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1201083Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1208211Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1215476Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1222525Z copying torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1229545Z copying torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1236846Z copying torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1244010Z copying torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1250899Z copying torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1258280Z copying torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1265320Z copying torch\include\ATen\ops\upsample_linear1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1272361Z copying torch\include\ATen\ops\upsample_linear1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1279668Z copying torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1286841Z copying torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1294439Z copying torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1301679Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1308722Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1316021Z copying torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1323624Z copying torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1331190Z copying torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1338678Z copying torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1345429Z copying torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1352606Z copying torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1359853Z copying torch\include\ATen\ops\upsample_linear1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1366857Z copying torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1373891Z copying torch\include\ATen\ops\upsample_linear1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1380916Z copying torch\include\ATen\ops\upsample_linear1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1388105Z copying torch\include\ATen\ops\upsample_nearest1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1394984Z copying torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1402392Z copying torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1409627Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1417011Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1424133Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1431120Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1467806Z copying torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1474639Z copying torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1481815Z copying torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1489431Z copying torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1496257Z copying torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1503439Z copying torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1510269Z copying torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1517199Z copying torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1548344Z copying torch\include\ATen\ops\upsample_nearest1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1555744Z copying torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1563572Z copying torch\include\ATen\ops\upsample_nearest2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1571450Z copying torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1579615Z copying torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1587011Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1594046Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1601399Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1608859Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1616043Z copying torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1623535Z copying torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1630944Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1638008Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1645600Z copying torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1652746Z copying torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1659915Z copying torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1666715Z copying torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1673589Z copying torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1680756Z copying torch\include\ATen\ops\upsample_nearest2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1687822Z copying torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1694769Z copying torch\include\ATen\ops\upsample_nearest3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1701936Z copying torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1709267Z copying torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1716078Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1723745Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1730819Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1737974Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1745163Z copying torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1752378Z copying torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1759905Z copying torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1767347Z copying torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1774140Z copying torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1781099Z copying torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1788181Z copying torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1795488Z copying torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1802760Z copying torch\include\ATen\ops\upsample_nearest3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1809832Z copying torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1816754Z copying torch\include\ATen\ops\upsample_trilinear3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1824420Z copying torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1832340Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1839901Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1847662Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1855253Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1862945Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1870294Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1877212Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1885384Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1892829Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1899836Z copying torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1906917Z copying torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1913726Z copying torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1920835Z copying torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1928297Z copying torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1935318Z copying torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1941905Z copying torch\include\ATen\ops\values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1948273Z copying torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1955050Z copying torch\include\ATen\ops\values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1962429Z copying torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1969397Z copying torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1976411Z copying torch\include\ATen\ops\values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1983111Z copying torch\include\ATen\ops\values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1990076Z copying torch\include\ATen\ops\values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.1997043Z copying torch\include\ATen\ops\values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2004125Z copying torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2011425Z copying torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2018377Z copying torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2025063Z copying torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2032225Z copying torch\include\ATen\ops\vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2039100Z copying torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2045740Z copying torch\include\ATen\ops\vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2052114Z copying torch\include\ATen\ops\vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2059030Z copying torch\include\ATen\ops\var.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2066219Z copying torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2072709Z copying torch\include\ATen\ops\var_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2079364Z copying torch\include\ATen\ops\var_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2085981Z copying torch\include\ATen\ops\var_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2093152Z copying torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2100155Z copying torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2106825Z copying torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2113897Z copying torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2121482Z copying torch\include\ATen\ops\var_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2128398Z copying torch\include\ATen\ops\var_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2135056Z copying torch\include\ATen\ops\var_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2142053Z copying torch\include\ATen\ops\var_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2148897Z copying torch\include\ATen\ops\vdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2155742Z copying torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2162399Z copying torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2169754Z copying torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2176726Z copying torch\include\ATen\ops\vdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2183439Z copying torch\include\ATen\ops\vdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2190306Z copying torch\include\ATen\ops\view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2196714Z copying torch\include\ATen\ops\view_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2203150Z copying torch\include\ATen\ops\view_as_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2210139Z copying torch\include\ATen\ops\view_as_complex_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2217375Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2225102Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2232168Z copying torch\include\ATen\ops\view_as_complex_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2239127Z copying torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2246312Z copying torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2253562Z copying torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2260816Z copying torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2267870Z copying torch\include\ATen\ops\view_as_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2274554Z copying torch\include\ATen\ops\view_as_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2282017Z copying torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2288961Z copying torch\include\ATen\ops\view_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2295516Z copying torch\include\ATen\ops\view_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2302175Z copying torch\include\ATen\ops\view_as_real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2309148Z copying torch\include\ATen\ops\view_as_real_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2316684Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2324490Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2331697Z copying torch\include\ATen\ops\view_as_real_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2338432Z copying torch\include\ATen\ops\view_as_real_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2345825Z copying torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2353153Z copying torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2360258Z copying torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2367579Z copying torch\include\ATen\ops\view_as_real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2374293Z copying torch\include\ATen\ops\view_as_real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2381569Z copying torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2388181Z copying torch\include\ATen\ops\view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2395476Z copying torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2402347Z copying torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2409511Z copying torch\include\ATen\ops\view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2417033Z copying torch\include\ATen\ops\view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2424263Z copying torch\include\ATen\ops\view_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2431232Z copying torch\include\ATen\ops\view_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2438166Z copying torch\include\ATen\ops\view_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2444933Z copying torch\include\ATen\ops\view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2451839Z copying torch\include\ATen\ops\view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2458149Z copying torch\include\ATen\ops\vsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2465182Z copying torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2471717Z copying torch\include\ATen\ops\vsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2478539Z copying torch\include\ATen\ops\vsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2485651Z copying torch\include\ATen\ops\vstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2492532Z copying torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2499145Z copying torch\include\ATen\ops\vstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2505524Z copying torch\include\ATen\ops\vstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2512558Z copying torch\include\ATen\ops\where.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2519320Z copying torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2525849Z copying torch\include\ATen\ops\where_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2532654Z copying torch\include\ATen\ops\where_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2539353Z copying torch\include\ATen\ops\where_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2545928Z copying torch\include\ATen\ops\where_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2552846Z copying torch\include\ATen\ops\xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2559692Z copying torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2566667Z copying torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2573232Z copying torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2580171Z copying torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2586928Z copying torch\include\ATen\ops\xlogy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2593774Z copying torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2600286Z copying torch\include\ATen\ops\xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2607322Z copying torch\include\ATen\ops\xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2613921Z copying torch\include\ATen\ops\xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2620850Z copying torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2627255Z copying torch\include\ATen\ops\xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2633758Z copying torch\include\ATen\ops\xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2640425Z copying torch\include\ATen\ops\zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2646853Z copying torch\include\ATen\ops\zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2653621Z copying torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2660064Z copying torch\include\ATen\ops\zeros_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2667659Z copying torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2674834Z copying torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2681323Z copying torch\include\ATen\ops\zeros_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2688136Z copying torch\include\ATen\ops\zeros_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2695127Z copying torch\include\ATen\ops\zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2701846Z copying torch\include\ATen\ops\zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2708683Z copying torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2720574Z copying torch\include\ATen\ops\zero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2727654Z copying torch\include\ATen\ops\zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2734255Z copying torch\include\ATen\ops\zero_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2740699Z copying torch\include\ATen\ops\zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2747428Z copying torch\include\ATen\ops\zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2753892Z copying torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2760827Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2767975Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2775410Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2782576Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2789391Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2796265Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2803571Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2810624Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2817472Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2824262Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2831213Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2838017Z copying torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2844873Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2852146Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2859318Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2866735Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2876012Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2882630Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2889985Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2897070Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2904014Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2910821Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2917832Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2924588Z copying torch\include\ATen\ops\_addmm_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2932116Z copying torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2939308Z copying torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2946665Z copying torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2953258Z copying torch\include\ATen\ops\_addmm_activation_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2960064Z copying torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.2968108Z copying torch\include\ATen\ops\_addmm_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3010386Z copying torch\include\ATen\ops\_addmm_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3011232Z copying torch\include\ATen\ops\_add_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3012129Z copying torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3013065Z copying torch\include\ATen\ops\_add_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3013832Z copying torch\include\ATen\ops\_add_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3014634Z copying torch\include\ATen\ops\_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3021318Z copying torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3028471Z copying torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3035069Z copying torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3041758Z copying torch\include\ATen\ops\_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3049008Z copying torch\include\ATen\ops\_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3055623Z copying torch\include\ATen\ops\_aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3103400Z copying torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3110251Z copying torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3116892Z copying torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3123762Z copying torch\include\ATen\ops\_aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3130524Z copying torch\include\ATen\ops\_aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3137393Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3144877Z 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-08-26T20:11:43.3151780Z 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-08-26T20:11:43.3158721Z 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-08-26T20:11:43.3165958Z 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-08-26T20:11:43.3173160Z 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-08-26T20:11:43.3179862Z copying torch\include\ATen\ops\_amp_update_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3187109Z copying torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3194133Z copying torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3205894Z copying torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3212802Z copying torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3219954Z copying torch\include\ATen\ops\_amp_update_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3226860Z copying torch\include\ATen\ops\_amp_update_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3234361Z copying torch\include\ATen\ops\_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3241316Z copying torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3248584Z copying torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3255457Z copying torch\include\ATen\ops\_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3262711Z copying torch\include\ATen\ops\_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3276064Z copying torch\include\ATen\ops\_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3276994Z copying torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3283454Z copying torch\include\ATen\ops\_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3290063Z copying torch\include\ATen\ops\_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3297216Z copying torch\include\ATen\ops\_assert_tensor_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3304575Z copying torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3311880Z copying torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3318770Z copying torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3326038Z copying torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3332786Z copying torch\include\ATen\ops\_autocast_to_full_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3339802Z copying torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3377671Z copying torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3383976Z copying torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3390854Z copying torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3397889Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3405182Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3412730Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3419409Z copying torch\include\ATen\ops\_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3426307Z copying torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3432905Z copying torch\include\ATen\ops\_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3439533Z copying torch\include\ATen\ops\_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3446529Z copying torch\include\ATen\ops\_batch_norm_impl_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3453610Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3468188Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3475512Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3482381Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3518043Z copying torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3524609Z copying torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3531656Z copying torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3538360Z copying torch\include\ATen\ops\_batch_norm_no_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3545557Z copying torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3552634Z copying torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3559844Z copying torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3567088Z copying torch\include\ATen\ops\_batch_norm_with_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3605527Z copying torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3614300Z copying torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3622870Z copying torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3632420Z copying torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3640795Z copying torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3650255Z copying torch\include\ATen\ops\_cast_Byte.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3658794Z copying torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3668502Z copying torch\include\ATen\ops\_cast_Byte_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3676519Z copying torch\include\ATen\ops\_cast_Byte_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3686162Z copying torch\include\ATen\ops\_cast_Char.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3694642Z copying torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3704465Z copying torch\include\ATen\ops\_cast_Char_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3712635Z copying torch\include\ATen\ops\_cast_Char_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3721988Z copying torch\include\ATen\ops\_cast_Double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3730614Z copying torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3739856Z copying torch\include\ATen\ops\_cast_Double_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3747990Z copying torch\include\ATen\ops\_cast_Double_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3757521Z copying torch\include\ATen\ops\_cast_Float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3766031Z copying torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3774061Z copying torch\include\ATen\ops\_cast_Float_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3780520Z copying torch\include\ATen\ops\_cast_Float_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3787676Z copying torch\include\ATen\ops\_cast_Half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3797459Z copying torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3805532Z copying torch\include\ATen\ops\_cast_Half_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3814774Z copying torch\include\ATen\ops\_cast_Half_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3822806Z copying torch\include\ATen\ops\_cast_Int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3832703Z copying torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3840830Z copying torch\include\ATen\ops\_cast_Int_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3850464Z copying torch\include\ATen\ops\_cast_Int_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3858571Z copying torch\include\ATen\ops\_cast_Long.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3868500Z copying torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3876424Z copying torch\include\ATen\ops\_cast_Long_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3886167Z copying torch\include\ATen\ops\_cast_Long_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3894187Z copying torch\include\ATen\ops\_cast_Short.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3904437Z copying torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3912572Z copying torch\include\ATen\ops\_cast_Short_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3921954Z copying torch\include\ATen\ops\_cast_Short_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3930079Z copying torch\include\ATen\ops\_cdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3939838Z copying torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3947836Z copying torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3957401Z copying torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3988176Z copying torch\include\ATen\ops\_cdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.3998582Z copying torch\include\ATen\ops\_cdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4008898Z copying torch\include\ATen\ops\_cdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4016311Z copying torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4024686Z copying torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4031547Z copying torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4040102Z copying torch\include\ATen\ops\_cdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4047241Z copying torch\include\ATen\ops\_cdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4054298Z copying torch\include\ATen\ops\_cholesky_solve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4061250Z copying torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4069912Z copying torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4077008Z copying torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4083847Z copying torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4090824Z copying torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4098173Z copying torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4105183Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4119712Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4126445Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4133229Z copying torch\include\ATen\ops\_chunk_cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4140245Z copying torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4147079Z copying torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4153892Z copying torch\include\ATen\ops\_chunk_cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4160919Z copying torch\include\ATen\ops\_chunk_cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4167605Z copying torch\include\ATen\ops\_coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4174240Z copying torch\include\ATen\ops\_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4181144Z copying torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4227695Z copying torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4234572Z copying torch\include\ATen\ops\_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4241374Z copying torch\include\ATen\ops\_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4248598Z copying torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4255460Z copying torch\include\ATen\ops\_coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4262427Z copying torch\include\ATen\ops\_coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4269410Z copying torch\include\ATen\ops\_compute_linear_combination.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4277861Z copying torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4287701Z copying torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4295924Z copying torch\include\ATen\ops\_compute_linear_combination_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4305632Z copying torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4313731Z copying torch\include\ATen\ops\_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4322968Z copying torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4331467Z copying torch\include\ATen\ops\_conj_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4346634Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4354487Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4361834Z copying torch\include\ATen\ops\_conj_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4369133Z copying torch\include\ATen\ops\_conj_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4377140Z copying torch\include\ATen\ops\_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4384379Z copying torch\include\ATen\ops\_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4391807Z copying torch\include\ATen\ops\_conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4399589Z copying torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4407366Z copying torch\include\ATen\ops\_conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4415141Z copying torch\include\ATen\ops\_conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4422994Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4430862Z 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-08-26T20:11:43.4443637Z 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-08-26T20:11:43.4451275Z 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-08-26T20:11:43.4458372Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4465643Z 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-08-26T20:11:43.4473674Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4481379Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4488737Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4496278Z 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-08-26T20:11:43.4503553Z 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-08-26T20:11:43.4510977Z 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-08-26T20:11:43.4518349Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4525833Z 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-08-26T20:11:43.4532935Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4540028Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4547301Z copying torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4554361Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4561554Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4569430Z 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-08-26T20:11:43.4576620Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4584026Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4612879Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4613755Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4614560Z copying torch\include\ATen\ops\_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4615565Z copying torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4623875Z copying torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4630765Z copying torch\include\ATen\ops\_convolution_double_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4638001Z copying torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4644919Z copying torch\include\ATen\ops\_convolution_double_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4652346Z copying torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4659633Z copying torch\include\ATen\ops\_convolution_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4666830Z copying torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4673745Z copying torch\include\ATen\ops\_convolution_mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4680732Z copying torch\include\ATen\ops\_convolution_mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4688087Z copying torch\include\ATen\ops\_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4694989Z copying torch\include\ATen\ops\_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4701839Z copying torch\include\ATen\ops\_conv_depthwise2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4708719Z copying torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4715135Z copying torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4721680Z copying torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4728316Z copying torch\include\ATen\ops\_copy_from.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4734786Z copying torch\include\ATen\ops\_copy_from_and_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4741763Z copying torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4748526Z copying torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4754960Z copying torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4761830Z copying torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4768680Z copying torch\include\ATen\ops\_copy_from_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4775023Z copying torch\include\ATen\ops\_copy_from_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4781510Z copying torch\include\ATen\ops\_cslt_compress.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4787983Z copying torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4794731Z copying torch\include\ATen\ops\_cslt_compress_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4801495Z copying torch\include\ATen\ops\_cslt_compress_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4808215Z copying torch\include\ATen\ops\_cslt_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4815133Z copying torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4821878Z copying torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4828640Z copying torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4835368Z copying torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4842466Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4849573Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4856244Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4862799Z copying torch\include\ATen\ops\_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4869383Z copying torch\include\ATen\ops\_ctc_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4876393Z copying torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4882992Z copying torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4890149Z copying torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4897032Z copying torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4903798Z copying torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4910816Z copying torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4917462Z copying torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4924353Z copying torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4931463Z copying torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4938406Z copying torch\include\ATen\ops\_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4945049Z copying torch\include\ATen\ops\_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4951831Z copying torch\include\ATen\ops\_cudnn_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4958629Z copying torch\include\ATen\ops\_cudnn_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4965379Z copying torch\include\ATen\ops\_cudnn_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4972234Z copying torch\include\ATen\ops\_cudnn_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4979093Z copying torch\include\ATen\ops\_cudnn_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4985987Z copying torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4992786Z copying torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.4999927Z copying torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5007587Z copying torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5015382Z copying torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5022797Z copying torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5030503Z copying torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5038031Z copying torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5046062Z copying torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5054103Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5061691Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5069026Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5076354Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5083257Z copying torch\include\ATen\ops\_cudnn_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5090421Z copying torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5098321Z copying torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5105288Z copying torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5112226Z copying torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5119204Z copying torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5131689Z copying torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5138582Z copying torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5145318Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5152478Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5159370Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5166634Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5173450Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5180175Z copying torch\include\ATen\ops\_cudnn_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5186902Z copying torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5193781Z copying torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5201000Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5207875Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5214411Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5221164Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5228272Z 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-08-26T20:11:43.5235117Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5241638Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5249063Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5256230Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5263026Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5269771Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5276569Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5283742Z 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-08-26T20:11:43.5290898Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5297704Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5304402Z copying torch\include\ATen\ops\_cummax_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5311056Z copying torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5318180Z copying torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5324956Z copying torch\include\ATen\ops\_cummax_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5332049Z copying torch\include\ATen\ops\_cummax_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5338858Z copying torch\include\ATen\ops\_cummin_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5345682Z copying torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5352432Z copying torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5359185Z copying torch\include\ATen\ops\_cummin_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5365900Z copying torch\include\ATen\ops\_cummin_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5372726Z copying torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5379935Z copying torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5386632Z copying torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5393183Z copying torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5400136Z copying torch\include\ATen\ops\_dimI.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5406557Z copying torch\include\ATen\ops\_dimI_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5412783Z copying torch\include\ATen\ops\_dimI_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5419302Z copying torch\include\ATen\ops\_dimV.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5425676Z copying torch\include\ATen\ops\_dimV_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5462907Z copying torch\include\ATen\ops\_dimV_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5469484Z copying torch\include\ATen\ops\_dim_arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5476387Z copying torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5483011Z copying torch\include\ATen\ops\_dim_arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5489662Z copying torch\include\ATen\ops\_dim_arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5496405Z copying torch\include\ATen\ops\_dirichlet_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5503626Z copying torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5510411Z copying torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5517240Z copying torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5523906Z copying torch\include\ATen\ops\_dirichlet_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5530743Z copying torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5537495Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5544327Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5551168Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5557921Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5564800Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5572011Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5578834Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5585615Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5592364Z copying torch\include\ATen\ops\_efficientzerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5600202Z copying torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5607029Z copying torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5613804Z copying torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5620692Z copying torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5627802Z copying torch\include\ATen\ops\_efficientzerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5634586Z copying torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5641618Z copying torch\include\ATen\ops\_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5648561Z copying torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5655452Z copying torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5662297Z copying torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5669100Z copying torch\include\ATen\ops\_efficient_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5676082Z copying torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5683228Z copying torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5690154Z copying torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5696804Z copying torch\include\ATen\ops\_embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5703511Z copying torch\include\ATen\ops\_embedding_bag_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5710358Z copying torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5717081Z copying torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5724214Z copying torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5731167Z copying torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5738197Z copying torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5744908Z copying torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5751665Z copying torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5758658Z copying torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5766161Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5772868Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5779736Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5786633Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5793699Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5800598Z copying torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5808270Z copying torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5815422Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5822538Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5829529Z copying torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5836621Z copying torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5862839Z copying torch\include\ATen\ops\_embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5870422Z copying torch\include\ATen\ops\_embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5877466Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5884752Z 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-08-26T20:11:43.5892156Z 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-08-26T20:11:43.5899234Z 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-08-26T20:11:43.5906481Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5913589Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5920539Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5928203Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5935608Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5942799Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5949879Z copying torch\include\ATen\ops\_empty_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5963129Z copying torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5970213Z copying torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5977063Z copying torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5985276Z copying torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.5992847Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6000978Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6008393Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6016117Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6023546Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6030401Z copying torch\include\ATen\ops\_euclidean_dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6037683Z copying torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6044183Z copying torch\include\ATen\ops\_euclidean_dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6051425Z copying torch\include\ATen\ops\_euclidean_dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6058717Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6065799Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6072853Z 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-08-26T20:11:43.6079904Z 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-08-26T20:11:43.6087254Z 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-08-26T20:11:43.6094459Z 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-08-26T20:11:43.6101872Z 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-08-26T20:11:43.6108918Z 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-08-26T20:11:43.6116016Z 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-08-26T20:11:43.6123516Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6130932Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6138059Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6145133Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6152708Z 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-08-26T20:11:43.6159784Z 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-08-26T20:11:43.6167145Z 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-08-26T20:11:43.6174227Z 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-08-26T20:11:43.6181580Z 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-08-26T20:11:43.6188599Z 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-08-26T20:11:43.6195845Z 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-08-26T20:11:43.6202882Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6209940Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6217241Z 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-08-26T20:11:43.6224614Z 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-08-26T20:11:43.6231865Z 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-08-26T20:11:43.6239209Z 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-08-26T20:11:43.6246400Z 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-08-26T20:11:43.6253585Z 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-08-26T20:11:43.6260080Z copying torch\include\ATen\ops\_fft_c2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6266573Z copying torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6273241Z copying torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6279821Z copying torch\include\ATen\ops\_fft_c2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6286579Z copying torch\include\ATen\ops\_fft_c2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6293249Z copying torch\include\ATen\ops\_fft_c2r.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6299719Z copying torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6306756Z copying torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6313398Z copying torch\include\ATen\ops\_fft_c2r_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6320311Z copying torch\include\ATen\ops\_fft_c2r_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6327007Z copying torch\include\ATen\ops\_fft_r2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6333453Z copying torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6340190Z copying torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6346919Z copying torch\include\ATen\ops\_fft_r2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6353647Z copying torch\include\ATen\ops\_fft_r2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6360917Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6368166Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6375592Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6382517Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6389647Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6396493Z copying torch\include\ATen\ops\_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6403643Z copying torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6410602Z copying torch\include\ATen\ops\_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6417461Z copying torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6424370Z copying torch\include\ATen\ops\_flash_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6431407Z copying torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6438349Z copying torch\include\ATen\ops\_flash_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6445531Z copying torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6452428Z copying torch\include\ATen\ops\_foobar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6459393Z copying torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6466103Z copying torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6472825Z copying torch\include\ATen\ops\_foobar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6479687Z copying torch\include\ATen\ops\_foobar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6487435Z copying torch\include\ATen\ops\_foreach_abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6494714Z copying torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6502690Z copying torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6509708Z copying torch\include\ATen\ops\_foreach_abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6522280Z copying torch\include\ATen\ops\_foreach_abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6527659Z copying torch\include\ATen\ops\_foreach_acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6534855Z copying torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6541629Z copying torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6548636Z copying torch\include\ATen\ops\_foreach_acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6555271Z copying torch\include\ATen\ops\_foreach_acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6562185Z copying torch\include\ATen\ops\_foreach_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6569014Z copying torch\include\ATen\ops\_foreach_addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6576080Z copying torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6582990Z copying torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6589641Z copying torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6596671Z copying torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6603445Z copying torch\include\ATen\ops\_foreach_addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6610610Z copying torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6617334Z copying torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6624566Z copying torch\include\ATen\ops\_foreach_addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6631228Z copying torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6638453Z copying torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6645374Z copying torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6652280Z copying torch\include\ATen\ops\_foreach_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6659007Z copying torch\include\ATen\ops\_foreach_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6665707Z copying torch\include\ATen\ops\_foreach_asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6672914Z copying torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6679569Z copying torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6686298Z copying torch\include\ATen\ops\_foreach_asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6693207Z copying torch\include\ATen\ops\_foreach_asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6699916Z copying torch\include\ATen\ops\_foreach_atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6706909Z copying torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6714566Z copying torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6720906Z copying torch\include\ATen\ops\_foreach_atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6727876Z copying torch\include\ATen\ops\_foreach_atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6734536Z copying torch\include\ATen\ops\_foreach_ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6741722Z copying torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6748422Z copying torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6755269Z copying torch\include\ATen\ops\_foreach_ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6762026Z copying torch\include\ATen\ops\_foreach_ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6768904Z copying torch\include\ATen\ops\_foreach_clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6776545Z copying torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6783445Z copying torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6790074Z copying torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6893466Z copying torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6899837Z copying torch\include\ATen\ops\_foreach_clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6906814Z copying torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6913386Z copying torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6920100Z copying torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6926951Z copying torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6933422Z copying torch\include\ATen\ops\_foreach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6940218Z copying torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6946739Z copying torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6953449Z copying torch\include\ATen\ops\_foreach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6960075Z copying torch\include\ATen\ops\_foreach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6966637Z copying torch\include\ATen\ops\_foreach_cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6973430Z copying torch\include\ATen\ops\_foreach_cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6981972Z copying torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6990051Z copying torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.6997965Z copying torch\include\ATen\ops\_foreach_cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7005913Z copying torch\include\ATen\ops\_foreach_cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7014076Z copying torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7022112Z copying torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7029205Z copying torch\include\ATen\ops\_foreach_cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7035873Z copying torch\include\ATen\ops\_foreach_cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7042616Z copying torch\include\ATen\ops\_foreach_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7049812Z copying torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7056617Z copying torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7063628Z copying torch\include\ATen\ops\_foreach_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7070695Z copying torch\include\ATen\ops\_foreach_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7077862Z copying torch\include\ATen\ops\_foreach_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7084543Z copying torch\include\ATen\ops\_foreach_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7091511Z copying torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7098004Z copying torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7104627Z copying torch\include\ATen\ops\_foreach_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7111483Z copying torch\include\ATen\ops\_foreach_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7118906Z copying torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7126046Z copying torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7132569Z copying torch\include\ATen\ops\_foreach_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7139154Z copying torch\include\ATen\ops\_foreach_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7146214Z copying torch\include\ATen\ops\_foreach_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7152995Z copying torch\include\ATen\ops\_foreach_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7160340Z copying torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7167163Z copying torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7173988Z copying torch\include\ATen\ops\_foreach_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7180878Z copying torch\include\ATen\ops\_foreach_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7188488Z copying torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7195086Z copying torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7201630Z copying torch\include\ATen\ops\_foreach_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7208206Z copying torch\include\ATen\ops\_foreach_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7214926Z copying torch\include\ATen\ops\_foreach_floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7221743Z copying torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7228413Z copying torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7236002Z copying torch\include\ATen\ops\_foreach_floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7242585Z copying torch\include\ATen\ops\_foreach_floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7249360Z copying torch\include\ATen\ops\_foreach_frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7256696Z copying torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7263651Z copying torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7270562Z copying torch\include\ATen\ops\_foreach_frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7277241Z copying torch\include\ATen\ops\_foreach_frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7284395Z copying torch\include\ATen\ops\_foreach_lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7291496Z copying torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7298624Z copying torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7305508Z copying torch\include\ATen\ops\_foreach_lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7313593Z copying torch\include\ATen\ops\_foreach_lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7320326Z copying torch\include\ATen\ops\_foreach_lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7327641Z copying torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7334728Z copying torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7342193Z copying torch\include\ATen\ops\_foreach_lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7349336Z copying torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7356016Z copying torch\include\ATen\ops\_foreach_log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7369274Z copying torch\include\ATen\ops\_foreach_log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7376029Z copying torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7382817Z copying torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7424246Z copying torch\include\ATen\ops\_foreach_log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7431194Z copying torch\include\ATen\ops\_foreach_log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7438245Z copying torch\include\ATen\ops\_foreach_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7445343Z copying torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7452447Z copying torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7459367Z copying torch\include\ATen\ops\_foreach_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7466362Z copying torch\include\ATen\ops\_foreach_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7473665Z copying torch\include\ATen\ops\_foreach_log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7481463Z copying torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7489041Z copying torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7496741Z copying torch\include\ATen\ops\_foreach_log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7503960Z copying torch\include\ATen\ops\_foreach_log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7511352Z copying torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7518880Z copying torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7525585Z copying torch\include\ATen\ops\_foreach_log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7532784Z copying torch\include\ATen\ops\_foreach_log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7539496Z copying torch\include\ATen\ops\_foreach_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7546111Z copying torch\include\ATen\ops\_foreach_maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7553404Z copying torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7560505Z copying torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7567324Z copying torch\include\ATen\ops\_foreach_maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7574252Z copying torch\include\ATen\ops\_foreach_maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7581423Z copying torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7588100Z copying torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7594867Z copying torch\include\ATen\ops\_foreach_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7601241Z copying torch\include\ATen\ops\_foreach_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7608383Z copying torch\include\ATen\ops\_foreach_minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7616244Z copying torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7622871Z copying torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7629671Z copying torch\include\ATen\ops\_foreach_minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7636470Z copying torch\include\ATen\ops\_foreach_minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7643353Z copying torch\include\ATen\ops\_foreach_mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7650488Z copying torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7657260Z copying torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7663707Z copying torch\include\ATen\ops\_foreach_mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7686396Z copying torch\include\ATen\ops\_foreach_mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7693190Z copying torch\include\ATen\ops\_foreach_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7700430Z copying torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7707550Z copying torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7714408Z copying torch\include\ATen\ops\_foreach_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7721000Z copying torch\include\ATen\ops\_foreach_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7727778Z copying torch\include\ATen\ops\_foreach_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7734598Z copying torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7741185Z copying torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7748549Z copying torch\include\ATen\ops\_foreach_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7755271Z copying torch\include\ATen\ops\_foreach_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7761691Z copying torch\include\ATen\ops\_foreach_pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7768523Z copying torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7775059Z copying torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7782165Z copying torch\include\ATen\ops\_foreach_pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7788987Z copying torch\include\ATen\ops\_foreach_pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7796373Z copying torch\include\ATen\ops\_foreach_reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7803692Z copying torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7810391Z copying torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7845723Z copying torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7852795Z copying torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7859567Z copying torch\include\ATen\ops\_foreach_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7867016Z copying torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7874291Z copying torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7881387Z copying torch\include\ATen\ops\_foreach_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7888420Z copying torch\include\ATen\ops\_foreach_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7895250Z copying torch\include\ATen\ops\_foreach_rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7902628Z copying torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7909787Z copying torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7917170Z copying torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7924152Z copying torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7931502Z copying torch\include\ATen\ops\_foreach_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7939055Z copying torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7945759Z copying torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7952805Z copying torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7959519Z copying torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7966348Z copying torch\include\ATen\ops\_foreach_sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7973251Z copying torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7979962Z copying torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7986646Z copying torch\include\ATen\ops\_foreach_sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.7993612Z copying torch\include\ATen\ops\_foreach_sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8000983Z copying torch\include\ATen\ops\_foreach_sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8007731Z copying torch\include\ATen\ops\_foreach_sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8014814Z copying torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8021678Z copying torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8028606Z copying torch\include\ATen\ops\_foreach_sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8035304Z copying torch\include\ATen\ops\_foreach_sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8042508Z copying torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8049322Z copying torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8056349Z copying torch\include\ATen\ops\_foreach_sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8063259Z copying torch\include\ATen\ops\_foreach_sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8070209Z copying torch\include\ATen\ops\_foreach_sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8077146Z copying torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8084575Z copying torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8091742Z copying torch\include\ATen\ops\_foreach_sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8099390Z copying torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8106841Z copying torch\include\ATen\ops\_foreach_sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8114928Z copying torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8122278Z copying torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8129735Z copying torch\include\ATen\ops\_foreach_sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8136721Z copying torch\include\ATen\ops\_foreach_sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8143602Z copying torch\include\ATen\ops\_foreach_tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8150390Z copying torch\include\ATen\ops\_foreach_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8157783Z copying torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8164774Z copying torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8172001Z copying torch\include\ATen\ops\_foreach_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8178932Z copying torch\include\ATen\ops\_foreach_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8186288Z copying torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8193350Z copying torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8200183Z copying torch\include\ATen\ops\_foreach_tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8206787Z copying torch\include\ATen\ops\_foreach_tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8213557Z copying torch\include\ATen\ops\_foreach_trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8220482Z copying torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8226903Z copying torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8233367Z copying torch\include\ATen\ops\_foreach_trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8239912Z copying torch\include\ATen\ops\_foreach_trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8247388Z copying torch\include\ATen\ops\_foreach_zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8254447Z copying torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8261496Z copying torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8268622Z copying torch\include\ATen\ops\_foreach_zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8276367Z copying torch\include\ATen\ops\_foreach_zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8282817Z copying torch\include\ATen\ops\_functional_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8289383Z copying torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8295776Z copying torch\include\ATen\ops\_functional_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8302240Z copying torch\include\ATen\ops\_functional_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8309088Z copying torch\include\ATen\ops\_functional_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8316101Z copying torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8323540Z copying torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8330854Z copying torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8337386Z copying torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8345148Z copying torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8351892Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8358911Z 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-08-26T20:11:43.8365509Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8372543Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8379747Z copying torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8386903Z copying torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8393911Z copying torch\include\ATen\ops\_fused_adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8401135Z copying torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8408391Z copying torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8415491Z copying torch\include\ATen\ops\_fused_adagrad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8423195Z copying torch\include\ATen\ops\_fused_adagrad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8430414Z copying torch\include\ATen\ops\_fused_adagrad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8437785Z copying torch\include\ATen\ops\_fused_adam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8444550Z copying torch\include\ATen\ops\_fused_adamw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8451811Z copying torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8458661Z copying torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8465726Z copying torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8472836Z copying torch\include\ATen\ops\_fused_adamw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8480149Z copying torch\include\ATen\ops\_fused_adamw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8487907Z copying torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8495012Z copying torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8502801Z copying torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8510690Z copying torch\include\ATen\ops\_fused_adam_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8518687Z copying torch\include\ATen\ops\_fused_adam_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8526645Z copying torch\include\ATen\ops\_fused_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8534371Z copying torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8541389Z copying torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8548640Z copying torch\include\ATen\ops\_fused_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8555563Z copying torch\include\ATen\ops\_fused_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8562865Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8570267Z 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-08-26T20:11:43.8577737Z 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-08-26T20:11:43.8584684Z 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-08-26T20:11:43.8591595Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8599165Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8606308Z copying torch\include\ATen\ops\_fused_rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8613348Z copying torch\include\ATen\ops\_fused_rms_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8620714Z copying torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8628102Z copying torch\include\ATen\ops\_fused_rms_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8634836Z copying torch\include\ATen\ops\_fused_rms_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8641803Z copying torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8648472Z copying torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8655423Z copying torch\include\ATen\ops\_fused_rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8662432Z copying torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8669390Z copying torch\include\ATen\ops\_fused_sdp_choice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8676441Z copying torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8683908Z copying torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8690962Z copying torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8697907Z copying torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8705054Z copying torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8712322Z copying torch\include\ATen\ops\_fused_sgd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8719799Z copying torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8726774Z copying torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8733846Z copying torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8740764Z copying torch\include\ATen\ops\_fused_sgd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8747522Z copying torch\include\ATen\ops\_fused_sgd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8754591Z copying torch\include\ATen\ops\_fw_primal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8761241Z copying torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8768156Z copying torch\include\ATen\ops\_fw_primal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8775127Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8782064Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8788838Z copying torch\include\ATen\ops\_fw_primal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8795802Z copying torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8803086Z copying torch\include\ATen\ops\_fw_primal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8810170Z copying torch\include\ATen\ops\_fw_primal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8817360Z copying torch\include\ATen\ops\_gather_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8824772Z copying torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8831480Z copying torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8838395Z copying torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8846445Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8853368Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8861060Z 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-08-26T20:11:43.8868206Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8875762Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8883399Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8890535Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8898132Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8905141Z copying torch\include\ATen\ops\_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8912079Z copying torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8918919Z copying torch\include\ATen\ops\_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8926236Z copying torch\include\ATen\ops\_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8933504Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8941002Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8947842Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8954615Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8961787Z copying torch\include\ATen\ops\_has_same_storage_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8969219Z copying torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8976050Z copying torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8982993Z copying torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8989902Z copying torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.8997045Z copying torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9004581Z copying torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9012613Z copying torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9020162Z copying torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9027586Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9034953Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9041963Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9048993Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9056123Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9062894Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9070162Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9077027Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9084240Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9091411Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9098077Z copying torch\include\ATen\ops\_index_put_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9105251Z copying torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9113088Z copying torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9119861Z copying torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9126936Z copying torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9133672Z copying torch\include\ATen\ops\_index_put_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9140595Z copying torch\include\ATen\ops\_index_put_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9147267Z copying torch\include\ATen\ops\_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9153522Z copying torch\include\ATen\ops\_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9163194Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9169812Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9176531Z copying torch\include\ATen\ops\_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9183403Z copying torch\include\ATen\ops\_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9190521Z copying torch\include\ATen\ops\_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9197564Z copying torch\include\ATen\ops\_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9204146Z copying torch\include\ATen\ops\_int_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9210833Z copying torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9217694Z copying torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9224562Z copying torch\include\ATen\ops\_int_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9231476Z copying torch\include\ATen\ops\_int_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9238342Z copying torch\include\ATen\ops\_is_all_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9246484Z copying torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9253459Z copying torch\include\ATen\ops\_is_all_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9260240Z copying torch\include\ATen\ops\_is_all_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9267288Z copying torch\include\ATen\ops\_is_any_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9275260Z copying torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9312466Z copying torch\include\ATen\ops\_is_any_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9319145Z copying torch\include\ATen\ops\_is_any_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9326289Z copying torch\include\ATen\ops\_is_zerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9333496Z copying torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9340780Z copying torch\include\ATen\ops\_is_zerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9347177Z copying torch\include\ATen\ops\_is_zerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9354189Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9361139Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9369050Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9375991Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9383014Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9390349Z copying torch\include\ATen\ops\_lazy_clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9397639Z copying torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9404335Z copying torch\include\ATen\ops\_lazy_clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9411194Z copying torch\include\ATen\ops\_lazy_clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9418002Z copying torch\include\ATen\ops\_linalg_check_errors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9425692Z copying torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9436519Z copying torch\include\ATen\ops\_linalg_check_errors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9442141Z copying torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9449207Z copying torch\include\ATen\ops\_linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9456881Z copying torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9463696Z copying torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9470592Z copying torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9477332Z copying torch\include\ATen\ops\_linalg_det_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9485187Z copying torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9491969Z copying torch\include\ATen\ops\_linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9499235Z copying torch\include\ATen\ops\_linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9506079Z copying torch\include\ATen\ops\_linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9514268Z copying torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9520869Z copying torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9527677Z copying torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9534223Z copying torch\include\ATen\ops\_linalg_eigh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9541184Z copying torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9547786Z copying torch\include\ATen\ops\_linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9554430Z copying torch\include\ATen\ops\_linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9568119Z copying torch\include\ATen\ops\_linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9579535Z copying torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9587253Z copying torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9593868Z copying torch\include\ATen\ops\_linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9600709Z copying torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9608127Z copying torch\include\ATen\ops\_linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9617330Z copying torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9624596Z copying torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9631663Z copying torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9639326Z copying torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9649669Z copying torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9656813Z copying torch\include\ATen\ops\_linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9664670Z copying torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9672113Z copying torch\include\ATen\ops\_linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9680544Z copying torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9687503Z copying torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9694472Z copying torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9701542Z copying torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9708513Z copying torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9715411Z copying torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9722490Z copying torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9729565Z copying torch\include\ATen\ops\_linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9737008Z copying torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9743801Z copying torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9750701Z copying torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9757507Z copying torch\include\ATen\ops\_linalg_svd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9764904Z copying torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9772035Z copying torch\include\ATen\ops\_linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9779059Z copying torch\include\ATen\ops\_linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9785984Z copying torch\include\ATen\ops\_local_scalar_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9792847Z copying torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9799795Z copying torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9806781Z copying torch\include\ATen\ops\_local_scalar_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9813618Z copying torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9820631Z copying torch\include\ATen\ops\_logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9827692Z copying torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9834570Z copying torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9841372Z copying torch\include\ATen\ops\_logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9848233Z copying torch\include\ATen\ops\_logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9855046Z copying torch\include\ATen\ops\_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9861933Z copying torch\include\ATen\ops\_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9869703Z copying torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9876230Z copying torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9883542Z copying torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9890437Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9897455Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9904323Z copying torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9911299Z copying torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9918348Z copying torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9925478Z copying torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9932198Z copying torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9938885Z copying torch\include\ATen\ops\_log_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9945744Z copying torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9952747Z copying torch\include\ATen\ops\_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9959466Z copying torch\include\ATen\ops\_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9966183Z copying torch\include\ATen\ops\_lstm_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9973298Z copying torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9979900Z copying torch\include\ATen\ops\_lstm_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9986778Z copying torch\include\ATen\ops\_lstm_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:43.9993534Z copying torch\include\ATen\ops\_lu_with_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0000697Z copying torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0007524Z copying torch\include\ATen\ops\_lu_with_info_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0014200Z copying torch\include\ATen\ops\_lu_with_info_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0022297Z copying torch\include\ATen\ops\_make_dep_token.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0030016Z copying torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0037688Z copying torch\include\ATen\ops\_make_dep_token_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0045426Z copying torch\include\ATen\ops\_make_dep_token_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0053116Z copying torch\include\ATen\ops\_make_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0061083Z copying torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0067457Z copying torch\include\ATen\ops\_make_dual_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0074745Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0082586Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0101713Z copying torch\include\ATen\ops\_make_dual_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0109052Z copying torch\include\ATen\ops\_make_dual_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0122948Z copying torch\include\ATen\ops\_make_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0123732Z copying torch\include\ATen\ops\_make_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0129210Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0136496Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0143218Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0150129Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0157230Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0164161Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0171166Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0178473Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0185325Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0192613Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0199527Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0206539Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0213272Z copying torch\include\ATen\ops\_masked_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0220218Z copying torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0227070Z copying torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0233837Z copying torch\include\ATen\ops\_masked_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0240986Z copying torch\include\ATen\ops\_masked_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0247771Z copying torch\include\ATen\ops\_masked_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0254568Z copying torch\include\ATen\ops\_masked_softmax_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0261766Z copying torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0268511Z copying torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0275558Z copying torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0282432Z copying torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0289771Z copying torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0297234Z copying torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0304226Z copying torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0311180Z copying torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0318560Z copying torch\include\ATen\ops\_masked_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0325451Z copying torch\include\ATen\ops\_masked_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0332286Z copying torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0339229Z copying torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0346131Z copying torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0352970Z copying torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0359808Z copying torch\include\ATen\ops\_mkldnn_reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0367123Z copying torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0374077Z copying torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0381111Z copying torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0388125Z copying torch\include\ATen\ops\_mkldnn_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0395467Z copying torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0402401Z copying torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0409789Z copying torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0416753Z copying torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0423603Z copying torch\include\ATen\ops\_mps_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0430734Z copying torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0437434Z copying torch\include\ATen\ops\_mps_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0444478Z copying torch\include\ATen\ops\_mps_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0451852Z copying torch\include\ATen\ops\_mps_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0459322Z copying torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0466288Z copying torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0473235Z copying torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0480074Z copying torch\include\ATen\ops\_native_batch_norm_legit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0487931Z copying torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0495147Z copying torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0502234Z copying torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0509195Z copying torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0516944Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0524571Z 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-08-26T20:11:44.0532650Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0540034Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0547161Z copying torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0554248Z copying torch\include\ATen\ops\_native_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0561450Z copying torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0568555Z copying torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0575738Z copying torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0582708Z copying torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0589577Z copying torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0596367Z copying torch\include\ATen\ops\_neg_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0603280Z copying torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0610165Z copying torch\include\ATen\ops\_neg_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0617299Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0624444Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0631346Z copying torch\include\ATen\ops\_neg_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0637728Z copying torch\include\ATen\ops\_neg_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0644411Z copying torch\include\ATen\ops\_neg_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0650943Z copying torch\include\ATen\ops\_neg_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0657927Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0666095Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0673466Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0680437Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0687928Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0694895Z copying torch\include\ATen\ops\_nested_from_padded.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0702936Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0710516Z 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-08-26T20:11:44.0717420Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0725038Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0732437Z copying torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0740050Z copying torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0746939Z copying torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0754151Z copying torch\include\ATen\ops\_nested_from_padded_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0761179Z copying torch\include\ATen\ops\_nested_from_padded_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0768478Z copying torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0776390Z copying torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0784089Z copying torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0790247Z copying torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0797624Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0804034Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0811905Z copying torch\include\ATen\ops\_nested_get_lengths.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0818922Z copying torch\include\ATen\ops\_nested_get_lengths_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0826308Z copying torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0833141Z copying torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0840308Z copying torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0847797Z copying torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0855244Z copying torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0861976Z copying torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0868846Z copying torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0875893Z copying torch\include\ATen\ops\_nested_get_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0883939Z copying torch\include\ATen\ops\_nested_get_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0890832Z copying torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0897638Z copying torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0904678Z copying torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.0911321Z copying torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1044427Z copying torch\include\ATen\ops\_nested_get_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1045321Z copying torch\include\ATen\ops\_nested_get_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1059385Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1060602Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1067595Z copying torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1074689Z copying torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1081845Z copying torch\include\ATen\ops\_nested_get_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1089299Z copying torch\include\ATen\ops\_nested_get_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1096025Z copying torch\include\ATen\ops\_nested_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1103279Z copying torch\include\ATen\ops\_nested_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1110077Z copying torch\include\ATen\ops\_nested_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1117122Z copying torch\include\ATen\ops\_nested_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1124095Z copying torch\include\ATen\ops\_nested_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1130977Z copying torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1138237Z copying torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1145712Z copying torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1152584Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1159512Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1166585Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1174150Z 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-08-26T20:11:44.1181564Z 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-08-26T20:11:44.1188388Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1194985Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1202289Z copying torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1209125Z copying torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1215967Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1237826Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1244750Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1251710Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1258678Z copying torch\include\ATen\ops\_nested_tensor_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1266625Z copying torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1273656Z copying torch\include\ATen\ops\_nested_tensor_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1280420Z copying torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1287387Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1585115Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1592091Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1599519Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1607390Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1614266Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1621380Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1628344Z copying torch\include\ATen\ops\_nested_tensor_strides.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1635776Z copying torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1643089Z copying torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1649822Z copying torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1656931Z copying torch\include\ATen\ops\_nested_view_from_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1663515Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1674809Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1682230Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1689158Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1696382Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1703597Z copying torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1710369Z copying torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1717282Z copying torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1724561Z copying torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1731544Z copying torch\include\ATen\ops\_nested_view_from_jagged.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1738801Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1746102Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1753242Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1760203Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1767078Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1773663Z copying torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1780275Z copying torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1787107Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1794126Z 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-08-26T20:11:44.1801197Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1808113Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1814879Z copying torch\include\ATen\ops\_nnpack_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1822019Z copying torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1828879Z copying torch\include\ATen\ops\_nnpack_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1836860Z copying torch\include\ATen\ops\_nnpack_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1844955Z copying torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1853253Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1861266Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1869165Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1875849Z copying torch\include\ATen\ops\_nnz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1885192Z copying torch\include\ATen\ops\_nnz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1895190Z copying torch\include\ATen\ops\_nnz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1902188Z copying torch\include\ATen\ops\_pack_padded_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1909263Z copying torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1916317Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1924232Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1931363Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1938742Z copying torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1945405Z copying torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1952503Z copying torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1960438Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1967490Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1974613Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1981839Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1988894Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.1995584Z copying torch\include\ATen\ops\_pad_circular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2002566Z copying torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2009638Z copying torch\include\ATen\ops\_pad_circular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2640020Z copying torch\include\ATen\ops\_pad_circular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2647391Z copying torch\include\ATen\ops\_pad_enum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2654139Z copying torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2660680Z copying torch\include\ATen\ops\_pad_enum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2667069Z copying torch\include\ATen\ops\_pad_enum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2673867Z copying torch\include\ATen\ops\_pad_packed_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2681035Z copying torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2687916Z copying torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2694927Z copying torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2701774Z copying torch\include\ATen\ops\_pdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2708532Z copying torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2718068Z copying torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2761498Z copying torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2768880Z copying torch\include\ATen\ops\_pdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2819772Z copying torch\include\ATen\ops\_pdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2826915Z copying torch\include\ATen\ops\_pdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2834360Z copying torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2841027Z copying torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2848884Z copying torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2855269Z copying torch\include\ATen\ops\_pdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2862241Z copying torch\include\ATen\ops\_pdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2869102Z copying torch\include\ATen\ops\_pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2876222Z copying torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2883111Z copying torch\include\ATen\ops\_pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2889975Z copying torch\include\ATen\ops\_pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2896906Z copying torch\include\ATen\ops\_prelu_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2903546Z copying torch\include\ATen\ops\_prelu_kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2910579Z copying torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2917920Z copying torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2924667Z copying torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2932107Z copying torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2939015Z copying torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2946416Z copying torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2952986Z copying torch\include\ATen\ops\_prelu_kernel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2959886Z copying torch\include\ATen\ops\_prelu_kernel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2966805Z copying torch\include\ATen\ops\_print.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2973648Z copying torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2980755Z copying torch\include\ATen\ops\_print_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2987332Z copying torch\include\ATen\ops\_print_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.2994205Z copying torch\include\ATen\ops\_propagate_xla_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3001212Z copying torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3008205Z copying torch\include\ATen\ops\_propagate_xla_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3015053Z copying torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3021855Z copying torch\include\ATen\ops\_remove_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3028910Z copying torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3038110Z copying torch\include\ATen\ops\_remove_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3081680Z copying torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3082469Z copying torch\include\ATen\ops\_reshape_alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3083233Z copying torch\include\ATen\ops\_reshape_alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3084233Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3085455Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3086505Z copying torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3089191Z copying torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3096960Z copying torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3103894Z copying torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3111444Z copying torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3118025Z copying torch\include\ATen\ops\_reshape_alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3124531Z copying torch\include\ATen\ops\_reshape_alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3131428Z copying torch\include\ATen\ops\_reshape_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3138640Z copying torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3145218Z copying torch\include\ATen\ops\_reshape_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3151830Z copying torch\include\ATen\ops\_reshape_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3158828Z copying torch\include\ATen\ops\_reshape_from_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3166068Z copying torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3172941Z copying torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3179338Z copying torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3186201Z copying torch\include\ATen\ops\_resize_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3193410Z copying torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3200142Z copying torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3207182Z copying torch\include\ATen\ops\_resize_output_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3213751Z copying torch\include\ATen\ops\_resize_output_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3220687Z copying torch\include\ATen\ops\_rowwise_prune.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3227661Z copying torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3234394Z copying torch\include\ATen\ops\_rowwise_prune_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3241178Z copying torch\include\ATen\ops\_rowwise_prune_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3248518Z copying torch\include\ATen\ops\_safe_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3255598Z copying torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3262398Z copying torch\include\ATen\ops\_safe_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3268917Z copying torch\include\ATen\ops\_safe_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3275645Z copying torch\include\ATen\ops\_sample_dirichlet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3282983Z copying torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3289827Z copying torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3297097Z copying torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3303850Z copying torch\include\ATen\ops\_sample_dirichlet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3310979Z copying torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3317796Z copying torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3324866Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3331729Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3338598Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3345770Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3352520Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3378100Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3385684Z 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-08-26T20:11:44.3392564Z 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-08-26T20:11:44.3399799Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3407368Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3415311Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3422888Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3430903Z 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-08-26T20:11:44.3438943Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3446937Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3455115Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3462549Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3469989Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3477685Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3484381Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3491635Z 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-08-26T20:11:44.3498782Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3505940Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3513370Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3520480Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3527564Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3535453Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3541777Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3549144Z 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-08-26T20:11:44.3556302Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3563926Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3571209Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3578109Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3586702Z 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-08-26T20:11:44.3592675Z 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-08-26T20:11:44.3599754Z 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-08-26T20:11:44.3606797Z 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-08-26T20:11:44.3614087Z 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-08-26T20:11:44.3621239Z 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-08-26T20:11:44.3628131Z 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-08-26T20:11:44.3635063Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3641944Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3649323Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3656387Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3663719Z 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-08-26T20:11:44.3670837Z 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-08-26T20:11:44.3677878Z 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-08-26T20:11:44.3685390Z 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-08-26T20:11:44.3692377Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3699418Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3706170Z copying torch\include\ATen\ops\_scaled_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3713255Z copying torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3720023Z copying torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3726939Z copying torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3733558Z copying torch\include\ATen\ops\_scaled_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3740476Z copying torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3747163Z copying torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3753787Z copying torch\include\ATen\ops\_scaled_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3760693Z copying torch\include\ATen\ops\_scaled_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3767791Z copying torch\include\ATen\ops\_segment_reduce_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3774881Z copying torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3781679Z copying torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3788588Z copying torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3795436Z copying torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3803111Z copying torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3809686Z copying torch\include\ATen\ops\_shape_as_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3816674Z copying torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3823340Z copying torch\include\ATen\ops\_shape_as_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3829891Z copying torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3836700Z copying torch\include\ATen\ops\_slow_conv2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3843938Z copying torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3851054Z copying torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3858018Z copying torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3864901Z copying torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3872107Z copying torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3878771Z copying torch\include\ATen\ops\_slow_conv2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3885848Z copying torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3893283Z copying torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3900295Z copying torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3907065Z copying torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3914249Z copying torch\include\ATen\ops\_sobol_engine_draw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3921314Z copying torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3928129Z copying torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3935224Z copying torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3942142Z copying torch\include\ATen\ops\_sobol_engine_ff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3949259Z copying torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3955963Z copying torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3963744Z copying torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3969995Z copying torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3977145Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3984226Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3991158Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.3998075Z copying torch\include\ATen\ops\_sobol_engine_scramble.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4005388Z copying torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4012335Z copying torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4030173Z copying torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4038441Z copying torch\include\ATen\ops\_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4053225Z copying torch\include\ATen\ops\_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4062403Z copying torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4072418Z copying torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4079329Z copying torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4088213Z copying torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4095421Z copying torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4104063Z copying torch\include\ATen\ops\_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4110757Z copying torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4117900Z copying torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4124498Z copying torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4133398Z copying torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4140278Z copying torch\include\ATen\ops\_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4146932Z copying torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4153602Z copying torch\include\ATen\ops\_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4193906Z copying torch\include\ATen\ops\_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4200440Z copying torch\include\ATen\ops\_sparse_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4207433Z copying torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4214018Z copying torch\include\ATen\ops\_sparse_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4220926Z copying torch\include\ATen\ops\_sparse_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4227680Z copying torch\include\ATen\ops\_sparse_broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4234359Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4241493Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4248546Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4255388Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4262289Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4269178Z copying torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4275978Z copying torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4282681Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4290521Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4296760Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4303720Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4310507Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4317584Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4324422Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4331423Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4338379Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4346126Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4353931Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4360007Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4366933Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4374200Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4381988Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4388676Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4395464Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4402744Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4409734Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4417267Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4423924Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4431859Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4440125Z 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-08-26T20:11:44.4446465Z 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-08-26T20:11:44.4453504Z 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-08-26T20:11:44.4460829Z 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-08-26T20:11:44.4469079Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4475317Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4482317Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4489418Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4497665Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4504265Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4511190Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4518297Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4526045Z copying torch\include\ATen\ops\_sparse_csr_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4532481Z copying torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4539239Z copying torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4550225Z copying torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4553411Z copying torch\include\ATen\ops\_sparse_csr_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4563208Z copying torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4569108Z copying torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4575854Z copying torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4582896Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4590399Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4598295Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4603776Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4610716Z copying torch\include\ATen\ops\_sparse_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4618077Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4625192Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4632203Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4638937Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4646288Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4653287Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4660336Z copying torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4667049Z copying torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4673789Z copying torch\include\ATen\ops\_sparse_mask_projection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4680957Z copying torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4687854Z copying torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4694713Z copying torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4701707Z copying torch\include\ATen\ops\_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4708838Z copying torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4715534Z copying torch\include\ATen\ops\_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4722236Z copying torch\include\ATen\ops\_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4729034Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4736078Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4742848Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4749908Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4756775Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4763590Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4770563Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4777476Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4784424Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4791536Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4798444Z copying torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4805903Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4813175Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4820178Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4827308Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4834726Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4842177Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4848959Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4855731Z copying torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4862688Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4869771Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4877243Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4884228Z copying torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4891709Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4898812Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4906010Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4912971Z copying torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4920393Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4927522Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4934655Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4941612Z copying torch\include\ATen\ops\_sparse_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4948676Z copying torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4955970Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4963510Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4970685Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4977953Z copying torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4985265Z copying torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4992131Z copying torch\include\ATen\ops\_sparse_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.4999694Z copying torch\include\ATen\ops\_sparse_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5007270Z copying torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5014650Z copying torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5021661Z copying torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5028534Z copying torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5035524Z copying torch\include\ATen\ops\_sparse_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5042563Z copying torch\include\ATen\ops\_sparse_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5050671Z copying torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5057974Z copying torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5064975Z copying torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5072238Z copying torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5079511Z copying torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5086434Z copying torch\include\ATen\ops\_sparse_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5093547Z copying torch\include\ATen\ops\_sparse_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5100325Z copying torch\include\ATen\ops\_spdiags.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5107026Z copying torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5113658Z copying torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5120260Z copying torch\include\ATen\ops\_spdiags_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5127073Z copying torch\include\ATen\ops\_spdiags_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5133791Z copying torch\include\ATen\ops\_spsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5140414Z copying torch\include\ATen\ops\_spsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5146944Z copying torch\include\ATen\ops\_spsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5153594Z copying torch\include\ATen\ops\_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5160314Z copying torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5166937Z copying torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5173496Z copying torch\include\ATen\ops\_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5180146Z copying torch\include\ATen\ops\_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5186938Z copying torch\include\ATen\ops\_standard_gamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5194178Z copying torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5200896Z copying torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5212539Z copying torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5219236Z copying torch\include\ATen\ops\_standard_gamma_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5226590Z copying torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5233480Z copying torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5240194Z copying torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5247378Z copying torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5254188Z copying torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5260992Z copying torch\include\ATen\ops\_standard_gamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5267768Z copying torch\include\ATen\ops\_standard_gamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5274566Z copying torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5281553Z copying torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5288535Z copying torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5295417Z copying torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5302207Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5309357Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5316342Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5323376Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5330600Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5337601Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5344812Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5356461Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5363842Z 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-08-26T20:11:44.5370866Z 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-08-26T20:11:44.5377453Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5401570Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5408864Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5416507Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5423183Z copying torch\include\ATen\ops\_test_check_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5430477Z copying torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5437136Z copying torch\include\ATen\ops\_test_check_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5443512Z copying torch\include\ATen\ops\_test_check_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5450490Z copying torch\include\ATen\ops\_test_functorch_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5457252Z copying torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5463901Z copying torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5470837Z copying torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5477822Z copying torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5484877Z copying torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5492389Z copying torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5499438Z copying torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5506470Z copying torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5517695Z copying torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5524514Z copying torch\include\ATen\ops\_test_optional_floatlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5531850Z copying torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5539497Z copying torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5546200Z copying torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5583263Z copying torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5584090Z copying torch\include\ATen\ops\_test_optional_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5585046Z copying torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5586898Z copying torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5594596Z copying torch\include\ATen\ops\_test_optional_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5601369Z copying torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5608014Z copying torch\include\ATen\ops\_test_parallel_materialize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5615187Z copying torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5622143Z copying torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5629521Z copying torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5641413Z copying torch\include\ATen\ops\_test_serialization_subcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5649182Z copying torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5655613Z copying torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5662133Z copying torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5668798Z copying torch\include\ATen\ops\_test_string_default.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5676131Z copying torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5682834Z copying torch\include\ATen\ops\_test_string_default_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5689504Z copying torch\include\ATen\ops\_test_string_default_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5696493Z copying torch\include\ATen\ops\_test_warn_in_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5703199Z copying torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5709886Z copying torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5716573Z copying torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5723276Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5730292Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5736672Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5743182Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5749936Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5756980Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5763941Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5770655Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5777282Z copying torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5784389Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5791679Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5798450Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5805410Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5812263Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5819293Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5826334Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5833127Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5839945Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5851734Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5858645Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5865718Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5872810Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5880743Z 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-08-26T20:11:44.5887489Z 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-08-26T20:11:44.5894483Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5901724Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5909160Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5915804Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5923086Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5930178Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5937749Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5944441Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5951320Z copying torch\include\ATen\ops\_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5958168Z copying torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5964923Z copying torch\include\ATen\ops\_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5972013Z copying torch\include\ATen\ops\_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5978514Z copying torch\include\ATen\ops\_to_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5985117Z copying torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5992175Z copying torch\include\ATen\ops\_to_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.5998740Z copying torch\include\ATen\ops\_to_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6005496Z copying torch\include\ATen\ops\_to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6013179Z copying torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6019726Z copying torch\include\ATen\ops\_to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6031999Z copying torch\include\ATen\ops\_to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6038805Z copying torch\include\ATen\ops\_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6074594Z copying torch\include\ATen\ops\_to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6081910Z copying torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6088910Z copying torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6095835Z copying torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6102855Z copying torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6109586Z copying torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6116273Z copying torch\include\ATen\ops\_to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6123270Z copying torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6130360Z copying torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6137202Z copying torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6143895Z copying torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6150717Z copying torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6157718Z copying torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6164696Z copying torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6171753Z copying torch\include\ATen\ops\_to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6178772Z copying torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6185570Z copying torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6192323Z copying torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6199052Z copying torch\include\ATen\ops\_to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6206189Z copying torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6213075Z copying torch\include\ATen\ops\_to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6220397Z copying torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6227697Z copying torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6234556Z copying torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6241518Z copying torch\include\ATen\ops\_to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6248365Z copying torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6255190Z copying torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6262372Z copying torch\include\ATen\ops\_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6269126Z copying torch\include\ATen\ops\_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6276003Z copying torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6282997Z copying torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6291105Z copying torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6297443Z copying torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6304776Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6312123Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6319661Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6326731Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6333653Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6340591Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6347952Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6355553Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6362488Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6369638Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6377023Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6383871Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6390828Z copying torch\include\ATen\ops\_trilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6398170Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6405278Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6416601Z copying torch\include\ATen\ops\_trilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6423071Z copying torch\include\ATen\ops\_trilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6429726Z copying torch\include\ATen\ops\_triton_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6436522Z copying torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6443274Z copying torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6450254Z copying torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6457420Z copying torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6464697Z copying torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6471850Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6479000Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6486057Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6493023Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6499936Z copying torch\include\ATen\ops\_unique.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6506379Z copying torch\include\ATen\ops\_unique2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6513132Z copying torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6520339Z copying torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6527058Z copying torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6533672Z copying torch\include\ATen\ops\_unique2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6540457Z copying torch\include\ATen\ops\_unique2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6547234Z copying torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6554097Z copying torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6560715Z copying torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6567481Z copying torch\include\ATen\ops\_unique_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6574353Z copying torch\include\ATen\ops\_unique_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6580826Z copying torch\include\ATen\ops\_unpack_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6587712Z copying torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6594246Z copying torch\include\ATen\ops\_unpack_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6629540Z copying torch\include\ATen\ops\_unpack_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6636232Z copying torch\include\ATen\ops\_unsafe_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6643020Z copying torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6649565Z copying torch\include\ATen\ops\_unsafe_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6694419Z copying torch\include\ATen\ops\_unsafe_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6694765Z copying torch\include\ATen\ops\_unsafe_index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6695308Z copying torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6695699Z copying torch\include\ATen\ops\_unsafe_index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6696034Z copying torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6696362Z copying torch\include\ATen\ops\_unsafe_masked_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6701581Z copying torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6708060Z copying torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6714659Z copying torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6721436Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6728529Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6735171Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6741698Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6748284Z copying torch\include\ATen\ops\_unsafe_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6776919Z copying torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6783544Z copying torch\include\ATen\ops\_unsafe_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6790342Z copying torch\include\ATen\ops\_unsafe_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6797020Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6808634Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6815664Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6822391Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6829011Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6835826Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6842673Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6853442Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6860041Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6867560Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6874170Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6880939Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6887667Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6894127Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6900707Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6907254Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6913672Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6920862Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6928059Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6935542Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6942639Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6949837Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6957196Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6964340Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6971532Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6979123Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.6986418Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7000914Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7008139Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7015175Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7022162Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7029231Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7040615Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7048324Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7054999Z copying torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7062079Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7084470Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7084984Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7086158Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7093989Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7102454Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7108581Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7119943Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7127817Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7135604Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7141573Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7148247Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7154830Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7161750Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7168554Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7175038Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7181497Z copying torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7188562Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7195901Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7202877Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7209983Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7216937Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7224082Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7230851Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7238142Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7245443Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7252400Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7259239Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7266072Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7273121Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7280010Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7286683Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7297809Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7304666Z copying torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7311760Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7319255Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7326162Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7333291Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7340055Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7347177Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7354307Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7361180Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7368567Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7376207Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7383267Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7390679Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7397932Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7404495Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7411791Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7419101Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7425854Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7432622Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7449339Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7456247Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7463255Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7470859Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7477648Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7484498Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7491885Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7498830Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7505550Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7512275Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7519310Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7526150Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7533530Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7540586Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7547665Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7560158Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7582452Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7582874Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7583282Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7589981Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7597716Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7606100Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7612577Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7618438Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7625578Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7632302Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7639700Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7646415Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7653925Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7660549Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7667601Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7674778Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7687056Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7698807Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7705723Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7712300Z copying torch\include\ATen\ops\_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7718493Z copying torch\include\ATen\ops\_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7726069Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7732950Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7739512Z copying torch\include\ATen\ops\_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7746432Z copying torch\include\ATen\ops\_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7752620Z copying torch\include\ATen\ops\_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7759015Z copying torch\include\ATen\ops\_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7765823Z copying torch\include\ATen\ops\_version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7772393Z copying torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7783754Z copying torch\include\ATen\ops\_version_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7790433Z copying torch\include\ATen\ops\_version_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7797029Z copying torch\include\ATen\ops\_weight_int4pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7803766Z copying torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7810556Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7817842Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7824896Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7831871Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7838836Z copying torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7845794Z copying torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7857846Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7865032Z 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-08-26T20:11:44.7871995Z 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-08-26T20:11:44.7879012Z copying torch\include\ATen\ops\_weight_int8pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7886339Z copying torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7893373Z copying torch\include\ATen\ops\_weight_int8pack_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7912171Z copying torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7913043Z copying torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7914819Z copying torch\include\ATen\ops\_weight_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7921832Z copying torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7928856Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7936664Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7943656Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7950565Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7957757Z copying torch\include\ATen\ops\_weight_norm_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7964810Z copying torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7977689Z copying torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.7985016Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8021346Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8028361Z copying torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8040327Z copying torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8047589Z copying torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8054592Z copying torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8061778Z copying torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8068903Z copying torch\include\ATen\ops\_weight_norm_interface_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8076922Z copying torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8084067Z copying torch\include\ATen\ops\_weight_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8090893Z copying torch\include\ATen\ops\_weight_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8097855Z copying torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8105233Z copying torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8111810Z copying torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8118724Z copying torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8125617Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8133113Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8140067Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8146939Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-08-26T20:11:44.8153059Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-08-26T20:11:44.8155985Z copying torch\include\ATen\quantized\QTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-08-26T20:11:44.8182488Z copying torch\include\ATen\quantized\Quantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-08-26T20:11:44.8187917Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-08-26T20:11:44.8190734Z copying torch\include\ATen\xpu\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-08-26T20:11:44.8197072Z copying torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-08-26T20:11:44.8207666Z copying torch\include\ATen\xpu\XPUContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-08-26T20:11:44.8213526Z copying torch\include\ATen\xpu\XPUDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-08-26T20:11:44.8226044Z copying torch\include\ATen\xpu\XPUEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-08-26T20:11:44.8232684Z copying torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-08-26T20:11:44.8243113Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-08-26T20:11:44.8246023Z copying torch\include\ATen\xpu\detail\XPUHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-08-26T20:11:44.8251719Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8255575Z copying torch\include\c10\core\alignment.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8261482Z copying torch\include\c10\core\Allocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8267937Z copying torch\include\c10\core\AllocatorConfig.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8274199Z copying torch\include\c10\core\AutogradState.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8293145Z copying torch\include\c10\core\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8299451Z copying torch\include\c10\core\CachingDeviceAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8305578Z copying torch\include\c10\core\CompileTimeFunctionPointer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8312043Z copying torch\include\c10\core\ConstantSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8318303Z copying torch\include\c10\core\Contiguity.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8326542Z copying torch\include\c10\core\CopyBytes.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8333960Z copying torch\include\c10\core\CPUAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8340295Z copying torch\include\c10\core\DefaultDtype.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8346635Z copying torch\include\c10\core\DefaultTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8353564Z copying torch\include\c10\core\Device.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8360076Z copying torch\include\c10\core\DeviceArray.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8366031Z copying torch\include\c10\core\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8372556Z copying torch\include\c10\core\DeviceType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8379095Z copying torch\include\c10\core\DispatchKey.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8386140Z copying torch\include\c10\core\DispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8393364Z copying torch\include\c10\core\DynamicCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8412112Z copying torch\include\c10\core\Event.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8418384Z copying torch\include\c10\core\GeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8424724Z copying torch\include\c10\core\GradMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8432478Z copying torch\include\c10\core\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8438140Z copying torch\include\c10\core\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8443944Z copying torch\include\c10\core\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8450463Z copying torch\include\c10\core\OptionalRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8456683Z copying torch\include\c10\core\PyHandleCache.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8463063Z copying torch\include\c10\core\QEngine.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8469210Z copying torch\include\c10\core\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8475678Z copying torch\include\c10\core\RefcountedDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8481800Z copying torch\include\c10\core\SafePyObject.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8499790Z copying torch\include\c10\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8506036Z copying torch\include\c10\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8513404Z copying torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8519835Z copying torch\include\c10\core\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8526199Z copying torch\include\c10\core\StorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8533156Z copying torch\include\c10\core\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8539601Z copying torch\include\c10\core\StreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8546023Z copying torch\include\c10\core\SymbolicShapeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8552745Z copying torch\include\c10\core\SymBool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8558922Z copying torch\include\c10\core\SymFloat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8565219Z copying torch\include\c10\core\SymInt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8571799Z copying torch\include\c10\core\SymIntArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8601047Z copying torch\include\c10\core\SymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8601779Z copying torch\include\c10\core\TensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8607086Z copying torch\include\c10\core\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8619144Z copying torch\include\c10\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8629221Z copying torch\include\c10\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8636503Z copying torch\include\c10\core\WrapDimMinimal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-08-26T20:11:44.8641341Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8644173Z copying torch\include\c10\core\impl\alloc_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8650468Z copying torch\include\c10\core\impl\COW.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8657028Z copying torch\include\c10\core\impl\COWDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8663388Z copying torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8681940Z copying torch\include\c10\core\impl\FakeGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8688566Z copying torch\include\c10\core\impl\GPUTrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8694629Z copying torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8701194Z copying torch\include\c10\core\impl\InlineDeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8707339Z copying torch\include\c10\core\impl\InlineEvent.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8713756Z copying torch\include\c10\core\impl\InlineStreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8720178Z copying torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8726828Z copying torch\include\c10\core\impl\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8733341Z copying torch\include\c10\core\impl\PyInterpreterHooks.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8739691Z copying torch\include\c10\core\impl\PyObjectSlot.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8746085Z copying torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8752371Z copying torch\include\c10\core\impl\SizesAndStrides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8758748Z copying torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8765262Z copying torch\include\c10\core\impl\VirtualGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-08-26T20:11:44.8770700Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8773694Z copying torch\include\c10\cuda\CUDAAlgorithm.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8780021Z copying torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8786381Z copying torch\include\c10\cuda\CUDACachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8793135Z copying torch\include\c10\cuda\CUDADeviceAssertion.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8811523Z copying torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8817763Z copying torch\include\c10\cuda\CUDAException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8824075Z copying torch\include\c10\cuda\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8830693Z copying torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8837104Z copying torch\include\c10\cuda\CUDAGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8843479Z copying torch\include\c10\cuda\CUDAMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8849912Z copying torch\include\c10\cuda\CUDAMathCompat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8856055Z copying torch\include\c10\cuda\CUDAMiscFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8861893Z copying torch\include\c10\cuda\CUDAStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8868024Z copying torch\include\c10\cuda\driver_api.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-08-26T20:11:44.8873375Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-08-26T20:11:44.8876173Z copying torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-08-26T20:11:44.8882233Z copying torch\include\c10\cuda\impl\CUDATest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-08-26T20:11:44.8888283Z copying torch\include\c10\cuda\impl\cuda_cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-08-26T20:11:44.8893450Z creating build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-08-26T20:11:44.8896139Z copying torch\include\c10\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-08-26T20:11:44.8901991Z copying torch\include\c10\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-08-26T20:11:44.8907823Z copying torch\include\c10\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-08-26T20:11:44.8912885Z creating build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-08-26T20:11:44.8915623Z copying torch\include\c10\metal\atomic.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-08-26T20:11:44.8921687Z copying torch\include\c10\metal\common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-08-26T20:11:44.8927829Z copying torch\include\c10\metal\expm1f.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-08-26T20:11:44.8933928Z copying torch\include\c10\metal\indexing.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-08-26T20:11:44.8940216Z copying torch\include\c10\metal\random.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-08-26T20:11:44.8946138Z copying torch\include\c10\metal\reduction_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-08-26T20:11:44.8964830Z copying torch\include\c10\metal\special_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-08-26T20:11:44.8976043Z copying torch\include\c10\metal\utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-08-26T20:11:44.8981395Z creating build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-08-26T20:11:44.8984243Z copying torch\include\c10\mobile\CPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-08-26T20:11:44.8991042Z copying torch\include\c10\mobile\CPUProfilingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-08-26T20:11:44.8996562Z creating build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-08-26T20:11:44.9000640Z copying torch\include\c10\test\util\complex_math_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-08-26T20:11:44.9007608Z copying torch\include\c10\test\util\complex_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-08-26T20:11:44.9014338Z copying torch\include\c10\test\util\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-08-26T20:11:44.9019796Z creating build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9022765Z copying torch\include\c10\util\AbortHandler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9029076Z copying torch\include\c10\util\accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9035411Z copying torch\include\c10\util\AlignOf.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9041779Z copying torch\include\c10\util\ApproximateClock.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9059765Z copying torch\include\c10\util\Array.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9065797Z copying torch\include\c10\util\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9073259Z copying torch\include\c10\util\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9109544Z copying torch\include\c10\util\BFloat16-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9110305Z copying torch\include\c10\util\BFloat16-math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9111018Z copying torch\include\c10\util\BFloat16.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9111690Z copying torch\include\c10\util\bits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9112451Z copying torch\include\c10\util\Bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9115598Z copying torch\include\c10\util\bit_cast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9125192Z copying torch\include\c10\util\C++17.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9132277Z copying torch\include\c10\util\CallOnce.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9138561Z copying torch\include\c10\util\complex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9144855Z copying torch\include\c10\util\complex_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9151434Z copying torch\include\c10\util\complex_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9157735Z copying torch\include\c10\util\ConstexprCrc.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9164490Z copying torch\include\c10\util\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9170852Z copying torch\include\c10\util\DeadlockDetection.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9177251Z copying torch\include\c10\util\Deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9183798Z copying torch\include\c10\util\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9189894Z copying torch\include\c10\util\DynamicCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9208169Z copying torch\include\c10\util\Enumerate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9214204Z copying torch\include\c10\util\env.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9220325Z copying torch\include\c10\util\error.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9226243Z copying torch\include\c10\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9233615Z copying torch\include\c10\util\ExclusivelyOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9240206Z copying torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9246570Z copying torch\include\c10\util\FbcodeMaps.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9252787Z copying torch\include\c10\util\Flags.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9259013Z copying torch\include\c10\util\flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9271042Z copying torch\include\c10\util\Float4_e2m1fn_x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9277180Z copying torch\include\c10\util\Float8_e4m3fn-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9294190Z copying torch\include\c10\util\Float8_e4m3fn.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9300278Z copying torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9306635Z copying torch\include\c10\util\Float8_e4m3fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9312804Z copying torch\include\c10\util\Float8_e5m2-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9318992Z copying torch\include\c10\util\Float8_e5m2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9325312Z copying torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9331527Z copying torch\include\c10\util\Float8_e5m2fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9337860Z copying torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9344294Z copying torch\include\c10\util\Float8_e8m0fnu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9362101Z copying torch\include\c10\util\floating_point_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9368381Z copying torch\include\c10\util\FunctionRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9374622Z copying torch\include\c10\util\Gauge.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9380925Z copying torch\include\c10\util\generic_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9387211Z copying torch\include\c10\util\Half-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9393106Z copying torch\include\c10\util\Half.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9399264Z copying torch\include\c10\util\hash.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9405372Z copying torch\include\c10\util\IdWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9411789Z copying torch\include\c10\util\int128.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9418073Z copying torch\include\c10\util\IntrusiveList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9424528Z copying torch\include\c10\util\intrusive_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9432187Z copying torch\include\c10\util\irange.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9438318Z copying torch\include\c10\util\Lazy.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9444660Z copying torch\include\c10\util\LeftRight.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9462238Z copying torch\include\c10\util\llvmMathExtras.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9468878Z copying torch\include\c10\util\Load.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9475039Z copying torch\include\c10\util\Logging.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9481425Z copying torch\include\c10\util\logging_is_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9488175Z copying torch\include\c10\util\logging_is_not_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9494617Z copying torch\include\c10\util\MathConstants.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9501520Z copying torch\include\c10\util\MaybeOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9507914Z copying torch\include\c10\util\Metaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9514356Z copying torch\include\c10\util\NetworkFlow.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9520993Z copying torch\include\c10\util\numa.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9531619Z copying torch\include\c10\util\Optional.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9558988Z copying torch\include\c10\util\OptionalArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9565770Z copying torch\include\c10\util\order_preserving_flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9573111Z copying torch\include\c10\util\overflows.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9603875Z copying torch\include\c10\util\overloaded.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9604740Z copying torch\include\c10\util\ParallelGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9605548Z copying torch\include\c10\util\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9606235Z copying torch\include\c10\util\qint32.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9607524Z copying torch\include\c10\util\qint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9613419Z copying torch\include\c10\util\quint2x4.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9619409Z copying torch\include\c10\util\quint4x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9625482Z copying torch\include\c10\util\quint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9631492Z copying torch\include\c10\util\Registry.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9667841Z copying torch\include\c10\util\safe_numerics.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9684587Z copying torch\include\c10\util\ScopeExit.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9691190Z copying torch\include\c10\util\Semaphore.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9697877Z copying torch\include\c10\util\signal_handler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9704466Z copying torch\include\c10\util\SmallBuffer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9710683Z copying torch\include\c10\util\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9718120Z copying torch\include\c10\util\sparse_bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9724891Z copying torch\include\c10\util\ssize.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9731644Z copying torch\include\c10\util\static_tracepoint.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9737900Z copying torch\include\c10\util\static_tracepoint_elfx86.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9744470Z copying torch\include\c10\util\strides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9750536Z copying torch\include\c10\util\StringUtil.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9771841Z copying torch\include\c10\util\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9778314Z copying torch\include\c10\util\string_view.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9784988Z copying torch\include\c10\util\strong_type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9791973Z copying torch\include\c10\util\Synchronized.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9798228Z copying torch\include\c10\util\tempfile.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9804462Z copying torch\include\c10\util\ThreadLocal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9811054Z copying torch\include\c10\util\ThreadLocalDebugInfo.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9817581Z copying torch\include\c10\util\thread_name.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9823741Z copying torch\include\c10\util\Type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9829786Z copying torch\include\c10\util\TypeCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9835955Z copying torch\include\c10\util\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9842910Z copying torch\include\c10\util\TypeIndex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9849383Z copying torch\include\c10\util\TypeList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9855892Z copying torch\include\c10\util\TypeSafeSignMath.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9861904Z copying torch\include\c10\util\TypeTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9868201Z copying torch\include\c10\util\Unicode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9874294Z copying torch\include\c10\util\UniqueVoidPtr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9880804Z copying torch\include\c10\util\Unroll.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9887404Z copying torch\include\c10\util\WaitCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9893873Z copying torch\include\c10\util\WaitCounterDynamicBackend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9900361Z copying torch\include\c10\util\win32-headers.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-08-26T20:11:44.9940175Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-08-26T20:11:44.9947142Z copying torch\include\c10\xpu\XPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-08-26T20:11:44.9953554Z copying torch\include\c10\xpu\XPUDeviceProp.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-08-26T20:11:44.9959996Z copying torch\include\c10\xpu\XPUException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-08-26T20:11:44.9966252Z copying torch\include\c10\xpu\XPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-08-26T20:11:44.9983293Z copying torch\include\c10\xpu\XPUMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-08-26T20:11:44.9994066Z copying torch\include\c10\xpu\XPUStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-08-26T20:11:44.9999575Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-08-26T20:11:45.0002616Z copying torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-08-26T20:11:45.0008521Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-08-26T20:11:45.0012461Z copying torch\include\c10\xpu\test\impl\XPUTest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-08-26T20:11:45.0017738Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-08-26T20:11:45.0021647Z copying torch\include\caffe2\core\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-08-26T20:11:45.0027843Z copying torch\include\caffe2\core\macros.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-08-26T20:11:45.0034110Z copying torch\include\caffe2\core\timer.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-08-26T20:11:45.0039576Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-08-26T20:11:45.0042682Z copying torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-08-26T20:11:45.0049252Z copying torch\include\caffe2\perfkernels\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-08-26T20:11:45.0055433Z copying torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-08-26T20:11:45.0060961Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-08-26T20:11:45.0063898Z copying torch\include\caffe2\serialize\crc_alt.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-08-26T20:11:45.0079872Z copying torch\include\caffe2\serialize\file_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-08-26T20:11:45.0084052Z copying torch\include\caffe2\serialize\inline_container.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-08-26T20:11:45.0091604Z copying torch\include\caffe2\serialize\in_memory_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-08-26T20:11:45.0109616Z copying torch\include\caffe2\serialize\istream_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-08-26T20:11:45.0115944Z copying torch\include\caffe2\serialize\read_adapter_interface.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-08-26T20:11:45.0123641Z copying torch\include\caffe2\serialize\versions.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-08-26T20:11:45.0134951Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-08-26T20:11:45.0137759Z copying torch\include\caffe2\utils\fixed_divisor.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-08-26T20:11:45.0143965Z copying torch\include\caffe2\utils\proto_wrap.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-08-26T20:11:45.0150688Z copying torch\include\caffe2\utils\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-08-26T20:11:45.0155793Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-08-26T20:11:45.0170028Z copying torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-08-26T20:11:45.0175956Z copying torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-08-26T20:11:45.0182414Z copying torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-08-26T20:11:45.0199134Z copying torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-08-26T20:11:45.0205579Z copying torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-08-26T20:11:45.0215761Z copying torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-08-26T20:11:45.0221088Z creating build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0223802Z copying torch\include\fmt\args.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0229762Z copying torch\include\fmt\base.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0237459Z copying torch\include\fmt\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0244603Z copying torch\include\fmt\color.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0251429Z copying torch\include\fmt\compile.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0257762Z copying torch\include\fmt\core.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0263458Z copying torch\include\fmt\format-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0281777Z copying torch\include\fmt\format.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0292990Z copying torch\include\fmt\os.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0298964Z copying torch\include\fmt\ostream.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0304956Z copying torch\include\fmt\printf.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0311703Z copying torch\include\fmt\ranges.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0319077Z copying torch\include\fmt\std.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0325673Z copying torch\include\fmt\xchar.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-08-26T20:11:45.0331234Z creating build\lib.win-amd64-cpython-39\torch\include\fp16 2025-08-26T20:11:45.0333947Z copying torch\include\fp16\bitcasts.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-08-26T20:11:45.0341570Z copying torch\include\fp16\fp16.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-08-26T20:11:45.0347916Z copying torch\include\fp16\psimd.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-08-26T20:11:45.0353568Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0357414Z copying torch\include\google\protobuf\any.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0363693Z copying torch\include\google\protobuf\any.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0369929Z copying torch\include\google\protobuf\api.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0376895Z copying torch\include\google\protobuf\arena.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0383691Z copying torch\include\google\protobuf\arenastring.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0404993Z copying torch\include\google\protobuf\arena_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0411410Z copying torch\include\google\protobuf\descriptor.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0418891Z copying torch\include\google\protobuf\descriptor.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0430725Z copying torch\include\google\protobuf\descriptor_database.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0437677Z copying torch\include\google\protobuf\duration.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0446963Z copying torch\include\google\protobuf\dynamic_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0454817Z copying torch\include\google\protobuf\empty.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0462741Z copying torch\include\google\protobuf\extension_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0472803Z copying torch\include\google\protobuf\extension_set_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0481914Z copying torch\include\google\protobuf\field_mask.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0494295Z copying torch\include\google\protobuf\generated_enum_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0502142Z copying torch\include\google\protobuf\generated_enum_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0510213Z copying torch\include\google\protobuf\generated_message_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0519452Z copying torch\include\google\protobuf\generated_message_table_driven.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0527573Z copying torch\include\google\protobuf\generated_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0548139Z copying torch\include\google\protobuf\has_bits.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0555865Z copying torch\include\google\protobuf\implicit_weak_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0563512Z copying torch\include\google\protobuf\inlined_string_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0572786Z copying torch\include\google\protobuf\map.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0580854Z copying torch\include\google\protobuf\map_entry.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0611765Z copying torch\include\google\protobuf\map_entry_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0624879Z copying torch\include\google\protobuf\map_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0635320Z copying torch\include\google\protobuf\map_field_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0643606Z copying torch\include\google\protobuf\map_field_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0651940Z copying torch\include\google\protobuf\map_type_handler.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0674143Z copying torch\include\google\protobuf\message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0681320Z copying torch\include\google\protobuf\message_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0688222Z copying torch\include\google\protobuf\metadata.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0694589Z copying torch\include\google\protobuf\metadata_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0701215Z copying torch\include\google\protobuf\parse_context.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0708179Z copying torch\include\google\protobuf\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0714424Z copying torch\include\google\protobuf\reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0721387Z copying torch\include\google\protobuf\reflection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0727864Z copying torch\include\google\protobuf\repeated_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0735458Z copying torch\include\google\protobuf\service.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0746691Z copying torch\include\google\protobuf\source_context.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0753034Z copying torch\include\google\protobuf\struct.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0770716Z copying torch\include\google\protobuf\text_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0777824Z copying torch\include\google\protobuf\timestamp.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0784596Z copying torch\include\google\protobuf\type.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0792431Z copying torch\include\google\protobuf\unknown_field_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0798825Z copying torch\include\google\protobuf\wire_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0805758Z copying torch\include\google\protobuf\wire_format_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0813399Z copying torch\include\google\protobuf\wrappers.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-08-26T20:11:45.0819735Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-08-26T20:11:45.0822755Z copying torch\include\google\protobuf\compiler\code_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-08-26T20:11:45.0829211Z copying torch\include\google\protobuf\compiler\command_line_interface.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-08-26T20:11:45.0835847Z copying torch\include\google\protobuf\compiler\importer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-08-26T20:11:45.0842300Z copying torch\include\google\protobuf\compiler\parser.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-08-26T20:11:45.0849091Z copying torch\include\google\protobuf\compiler\plugin.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-08-26T20:11:45.0865436Z copying torch\include\google\protobuf\compiler\plugin.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-08-26T20:11:45.0871716Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-08-26T20:11:45.0874775Z copying torch\include\google\protobuf\compiler\cpp\cpp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-08-26T20:11:45.0880294Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-08-26T20:11:45.0883328Z copying torch\include\google\protobuf\compiler\csharp\csharp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-08-26T20:11:45.0890105Z copying torch\include\google\protobuf\compiler\csharp\csharp_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-08-26T20:11:45.0895742Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-08-26T20:11:45.0898779Z copying torch\include\google\protobuf\compiler\java\java_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-08-26T20:11:45.0905326Z copying torch\include\google\protobuf\compiler\java\java_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-08-26T20:11:45.0910960Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-08-26T20:11:45.0914073Z copying torch\include\google\protobuf\compiler\js\js_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-08-26T20:11:45.0920875Z 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-08-26T20:11:45.0926556Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-08-26T20:11:45.0929746Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-08-26T20:11:45.0936281Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-08-26T20:11:45.0941787Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-08-26T20:11:45.0944847Z copying torch\include\google\protobuf\compiler\php\php_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-08-26T20:11:45.0950345Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-08-26T20:11:45.0953498Z copying torch\include\google\protobuf\compiler\python\python_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-08-26T20:11:45.0959012Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-08-26T20:11:45.0962007Z copying torch\include\google\protobuf\compiler\ruby\ruby_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-08-26T20:11:45.0967781Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-08-26T20:11:45.0970797Z copying torch\include\google\protobuf\io\coded_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-08-26T20:11:45.0978643Z copying torch\include\google\protobuf\io\gzip_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-08-26T20:11:45.0984708Z copying torch\include\google\protobuf\io\io_win32.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-08-26T20:11:45.0990756Z copying torch\include\google\protobuf\io\printer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-08-26T20:11:45.0996879Z copying torch\include\google\protobuf\io\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-08-26T20:11:45.1013865Z copying torch\include\google\protobuf\io\tokenizer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-08-26T20:11:45.1021401Z copying torch\include\google\protobuf\io\zero_copy_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-08-26T20:11:45.1028041Z copying torch\include\google\protobuf\io\zero_copy_stream_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-08-26T20:11:45.1034671Z copying torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-08-26T20:11:45.1040868Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1043964Z copying torch\include\google\protobuf\stubs\bytestream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1050452Z copying torch\include\google\protobuf\stubs\callback.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1057198Z copying torch\include\google\protobuf\stubs\casts.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1063929Z copying torch\include\google\protobuf\stubs\common.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1070314Z copying torch\include\google\protobuf\stubs\fastmem.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1076687Z copying torch\include\google\protobuf\stubs\hash.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1097959Z copying torch\include\google\protobuf\stubs\logging.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1104785Z copying torch\include\google\protobuf\stubs\macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1111817Z copying torch\include\google\protobuf\stubs\map_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1119805Z copying torch\include\google\protobuf\stubs\mutex.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1127113Z copying torch\include\google\protobuf\stubs\once.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1134446Z copying torch\include\google\protobuf\stubs\platform_macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1141231Z copying torch\include\google\protobuf\stubs\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1147657Z copying torch\include\google\protobuf\stubs\status.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1154109Z copying torch\include\google\protobuf\stubs\stl_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1160588Z copying torch\include\google\protobuf\stubs\stringpiece.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1167614Z copying torch\include\google\protobuf\stubs\strutil.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1174689Z copying torch\include\google\protobuf\stubs\template_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-08-26T20:11:45.1180339Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-08-26T20:11:45.1183511Z copying torch\include\google\protobuf\util\delimited_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-08-26T20:11:45.1190014Z copying torch\include\google\protobuf\util\field_comparator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-08-26T20:11:45.1196701Z copying torch\include\google\protobuf\util\field_mask_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-08-26T20:11:45.1213204Z copying torch\include\google\protobuf\util\json_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-08-26T20:11:45.1219633Z copying torch\include\google\protobuf\util\message_differencer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-08-26T20:11:45.1226587Z copying torch\include\google\protobuf\util\time_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-08-26T20:11:45.1233004Z copying torch\include\google\protobuf\util\type_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-08-26T20:11:45.1239464Z copying torch\include\google\protobuf\util\type_resolver_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-08-26T20:11:45.1244968Z creating build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1248125Z copying torch\include\kineto\AbstractConfig.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1254579Z copying torch\include\kineto\ActivityProfilerInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1260789Z copying torch\include\kineto\ActivityTraceInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1276808Z copying torch\include\kineto\ActivityType.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1283130Z copying torch\include\kineto\ClientInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1289474Z copying torch\include\kineto\Config.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1295777Z copying torch\include\kineto\GenericTraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1302045Z copying torch\include\kineto\IActivityProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1316874Z copying torch\include\kineto\ILoggerObserver.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1323130Z copying torch\include\kineto\ITraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1351845Z copying torch\include\kineto\libkineto.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1358087Z copying torch\include\kineto\LoggingAPI.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1364251Z copying torch\include\kineto\output_base.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1374876Z copying torch\include\kineto\ThreadUtil.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1381165Z copying torch\include\kineto\time_since_epoch.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1387254Z copying torch\include\kineto\TraceSpan.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-08-26T20:11:45.1392718Z creating build\lib.win-amd64-cpython-39\torch\include\legacy 2025-08-26T20:11:45.1395548Z copying torch\include\legacy\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include\legacy 2025-08-26T20:11:45.1402722Z creating build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-08-26T20:11:45.1405914Z copying torch\include\mimalloc-2.2\mimalloc-new-delete.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-08-26T20:11:45.1412482Z copying torch\include\mimalloc-2.2\mimalloc-override.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-08-26T20:11:45.1418744Z copying torch\include\mimalloc-2.2\mimalloc-stats.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-08-26T20:11:45.1435399Z copying torch\include\mimalloc-2.2\mimalloc.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-08-26T20:11:45.1441613Z creating build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1445689Z copying torch\include\oneapi\dnnl\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1453981Z copying torch\include\oneapi\dnnl\dnnl_common.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1460589Z copying torch\include\oneapi\dnnl\dnnl_common_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1468005Z copying torch\include\oneapi\dnnl\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1485215Z copying torch\include\oneapi\dnnl\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1491780Z copying torch\include\oneapi\dnnl\dnnl_graph.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1498715Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1505241Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1511700Z copying torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1518544Z copying torch\include\oneapi\dnnl\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1525365Z copying torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1531817Z copying torch\include\oneapi\dnnl\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1538303Z copying torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1545119Z copying torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1551709Z copying torch\include\oneapi\dnnl\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1559880Z copying torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1566078Z copying torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1572677Z copying torch\include\oneapi\dnnl\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1579293Z copying torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:45.1584891Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1587614Z copying torch\include\pybind11\attr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1605412Z copying torch\include\pybind11\buffer_info.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1606111Z copying torch\include\pybind11\cast.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1611373Z copying torch\include\pybind11\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1617419Z copying torch\include\pybind11\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1623456Z copying torch\include\pybind11\complex.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1639013Z copying torch\include\pybind11\critical_section.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1645444Z copying torch\include\pybind11\eigen.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1651120Z copying torch\include\pybind11\embed.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1657482Z copying torch\include\pybind11\eval.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1663627Z copying torch\include\pybind11\functional.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1669839Z copying torch\include\pybind11\gil.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1676064Z copying torch\include\pybind11\gil_safe_call_once.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1682467Z copying torch\include\pybind11\gil_simple.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1688975Z copying torch\include\pybind11\iostream.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1695547Z copying torch\include\pybind11\native_enum.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1701767Z copying torch\include\pybind11\numpy.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1709058Z copying torch\include\pybind11\operators.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1715430Z copying torch\include\pybind11\options.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1721616Z copying torch\include\pybind11\pybind11.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1734146Z copying torch\include\pybind11\pytypes.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1741393Z copying torch\include\pybind11\stl.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1748357Z copying torch\include\pybind11\stl_bind.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1755128Z copying torch\include\pybind11\subinterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1761546Z copying torch\include\pybind11\trampoline_self_life_support.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1768024Z copying torch\include\pybind11\type_caster_pyobject_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1774231Z copying torch\include\pybind11\typing.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1780421Z copying torch\include\pybind11\warnings.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-08-26T20:11:45.1796329Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit 2025-08-26T20:11:45.1799264Z copying torch\include\pybind11\conduit\pybind11_conduit_v1.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit 2025-08-26T20:11:45.1805816Z copying torch\include\pybind11\conduit\pybind11_platform_abi_id.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit 2025-08-26T20:11:45.1816581Z copying torch\include\pybind11\conduit\wrap_include_python_h.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit 2025-08-26T20:11:45.1831949Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1834738Z copying torch\include\pybind11\detail\class.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1841621Z copying torch\include\pybind11\detail\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1882442Z copying torch\include\pybind11\detail\cpp_conduit.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1892540Z copying torch\include\pybind11\detail\descr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1899008Z copying torch\include\pybind11\detail\dynamic_raw_ptr_cast_if_possible.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1908959Z copying torch\include\pybind11\detail\exception_translation.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1915142Z copying torch\include\pybind11\detail\function_record_pyobject.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1921546Z copying torch\include\pybind11\detail\init.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1928314Z copying torch\include\pybind11\detail\internals.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1935259Z copying torch\include\pybind11\detail\native_enum_data.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1941873Z copying torch\include\pybind11\detail\pybind11_namespace_macros.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1948351Z copying torch\include\pybind11\detail\struct_smart_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1954882Z copying torch\include\pybind11\detail\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1961312Z copying torch\include\pybind11\detail\type_caster_base.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1969261Z copying torch\include\pybind11\detail\using_smart_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1975931Z copying torch\include\pybind11\detail\value_and_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-08-26T20:11:45.1981481Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-08-26T20:11:45.1984521Z copying torch\include\pybind11\eigen\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-08-26T20:11:45.1990411Z copying torch\include\pybind11\eigen\matrix.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-08-26T20:11:45.1997122Z copying torch\include\pybind11\eigen\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-08-26T20:11:45.2002795Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-08-26T20:11:45.2005684Z copying torch\include\pybind11\stl\filesystem.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-08-26T20:11:45.2011336Z creating build\lib.win-amd64-cpython-39\torch\include\torch 2025-08-26T20:11:45.2014260Z copying torch\include\torch\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-08-26T20:11:45.2020945Z copying torch\include\torch\custom_class_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-08-26T20:11:45.2027521Z copying torch\include\torch\extension.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-08-26T20:11:45.2033498Z copying torch\include\torch\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-08-26T20:11:45.2119839Z copying torch\include\torch\script.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-08-26T20:11:45.2125237Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2128138Z copying torch\include\torch\csrc\copy_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2134651Z copying torch\include\torch\csrc\CudaIPCTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2177998Z copying torch\include\torch\csrc\DataLoader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2178308Z copying torch\include\torch\csrc\Device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2178665Z copying torch\include\torch\csrc\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2178966Z copying torch\include\torch\csrc\Dtype.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2180380Z copying torch\include\torch\csrc\DynamicTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2186839Z copying torch\include\torch\csrc\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2193208Z copying torch\include\torch\csrc\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2199747Z copying torch\include\torch\csrc\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2205925Z copying torch\include\torch\csrc\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2213131Z copying torch\include\torch\csrc\itt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2218485Z copying torch\include\torch\csrc\itt_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2224921Z copying torch\include\torch\csrc\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2231112Z copying torch\include\torch\csrc\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2237367Z copying torch\include\torch\csrc\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2243452Z copying torch\include\torch\csrc\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2250033Z copying torch\include\torch\csrc\PyInterpreterHooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2256166Z copying torch\include\torch\csrc\python_dimname.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2267725Z copying torch\include\torch\csrc\python_headers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2274482Z copying torch\include\torch\csrc\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2280765Z copying torch\include\torch\csrc\serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2287254Z copying torch\include\torch\csrc\Size.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2293532Z copying torch\include\torch\csrc\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2310117Z copying torch\include\torch\csrc\StorageMethods.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2316352Z copying torch\include\torch\csrc\StorageSharing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2322703Z copying torch\include\torch\csrc\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2328561Z copying torch\include\torch\csrc\THConcat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2334630Z copying torch\include\torch\csrc\THP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2340775Z copying torch\include\torch\csrc\TypeInfo.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2351279Z copying torch\include\torch\csrc\Types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2357005Z copying torch\include\torch\csrc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-08-26T20:11:45.2368032Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2369883Z copying torch\include\torch\csrc\api\include\torch\all.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2375588Z copying torch\include\torch\csrc\api\include\torch\arg.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2381957Z copying torch\include\torch\csrc\api\include\torch\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2388413Z copying torch\include\torch\csrc\api\include\torch\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2394583Z copying torch\include\torch\csrc\api\include\torch\data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2400769Z copying torch\include\torch\csrc\api\include\torch\enum.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2407453Z 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-08-26T20:11:45.2424052Z copying torch\include\torch\csrc\api\include\torch\fft.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2431058Z copying torch\include\torch\csrc\api\include\torch\imethod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2437392Z copying torch\include\torch\csrc\api\include\torch\jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2443566Z copying torch\include\torch\csrc\api\include\torch\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2449964Z copying torch\include\torch\csrc\api\include\torch\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2456437Z copying torch\include\torch\csrc\api\include\torch\nn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2462570Z copying torch\include\torch\csrc\api\include\torch\optim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2469084Z 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-08-26T20:11:45.2476294Z copying torch\include\torch\csrc\api\include\torch\python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2482863Z copying torch\include\torch\csrc\api\include\torch\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2489681Z copying torch\include\torch\csrc\api\include\torch\sparse.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2495814Z copying torch\include\torch\csrc\api\include\torch\special.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2502748Z copying torch\include\torch\csrc\api\include\torch\torch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2508831Z copying torch\include\torch\csrc\api\include\torch\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2515267Z copying torch\include\torch\csrc\api\include\torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2521870Z copying torch\include\torch\csrc\api\include\torch\version.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2528375Z copying torch\include\torch\csrc\api\include\torch\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-08-26T20:11:45.2534112Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-08-26T20:11:45.2537233Z 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-08-26T20:11:45.2543993Z 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-08-26T20:11:45.2551194Z 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-08-26T20:11:45.2557421Z 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-08-26T20:11:45.2564091Z 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-08-26T20:11:45.2582208Z 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-08-26T20:11:45.2587903Z 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-08-26T20:11:45.2606547Z 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-08-26T20:11:45.2606878Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-08-26T20:11:45.2607438Z 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-08-26T20:11:45.2612234Z 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-08-26T20:11:45.2618903Z 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-08-26T20:11:45.2625317Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-08-26T20:11:45.2628776Z 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-08-26T20:11:45.2640700Z 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-08-26T20:11:45.2648664Z 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-08-26T20:11:45.2655661Z 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-08-26T20:11:45.2662290Z 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-08-26T20:11:45.2668990Z 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-08-26T20:11:45.2675621Z 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-08-26T20:11:45.2691245Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-08-26T20:11:45.2694505Z 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-08-26T20:11:45.2701214Z 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-08-26T20:11:45.2707498Z 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-08-26T20:11:45.2712886Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-08-26T20:11:45.2716008Z 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-08-26T20:11:45.2722399Z 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-08-26T20:11:45.2728552Z 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-08-26T20:11:45.2735011Z 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-08-26T20:11:45.2741520Z 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-08-26T20:11:45.2758718Z 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-08-26T20:11:45.2765560Z 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-08-26T20:11:45.2771384Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-08-26T20:11:45.2774488Z 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-08-26T20:11:45.2781057Z 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-08-26T20:11:45.2791769Z 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-08-26T20:11:45.2798313Z 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-08-26T20:11:45.2804696Z 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-08-26T20:11:45.2810298Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-08-26T20:11:45.2813371Z 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-08-26T20:11:45.2819810Z 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-08-26T20:11:45.2825719Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nativert 2025-08-26T20:11:45.2828960Z copying torch\include\torch\csrc\api\include\torch\nativert\ModelRunnerHandle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nativert 2025-08-26T20:11:45.2834768Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-08-26T20:11:45.2837886Z 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-08-26T20:11:45.2844295Z 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-08-26T20:11:45.2850576Z 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-08-26T20:11:45.2857110Z 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-08-26T20:11:45.2864128Z 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-08-26T20:11:45.2880170Z 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-08-26T20:11:45.2886755Z 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-08-26T20:11:45.2893911Z 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-08-26T20:11:45.2900570Z 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-08-26T20:11:45.2906214Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-08-26T20:11:45.2909401Z 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-08-26T20:11:45.2916683Z 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-08-26T20:11:45.2923298Z 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-08-26T20:11:45.2929902Z 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-08-26T20:11:45.2946090Z 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-08-26T20:11:45.2952676Z 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-08-26T20:11:45.2959391Z 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-08-26T20:11:45.2965855Z 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-08-26T20:11:45.2972519Z 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-08-26T20:11:45.2978819Z 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-08-26T20:11:45.2986177Z 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-08-26T20:11:45.2993187Z 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-08-26T20:11:45.2999672Z 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-08-26T20:11:45.3010633Z 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-08-26T20:11:45.3017609Z 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-08-26T20:11:45.3024427Z 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-08-26T20:11:45.3030097Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-08-26T20:11:45.3033189Z 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-08-26T20:11:45.3040410Z 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-08-26T20:11:45.3047149Z 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-08-26T20:11:45.3054070Z 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-08-26T20:11:45.3060630Z 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-08-26T20:11:45.3078327Z 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-08-26T20:11:45.3084845Z 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-08-26T20:11:45.3091381Z 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-08-26T20:11:45.3098720Z 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-08-26T20:11:45.3106468Z 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-08-26T20:11:45.3113852Z 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-08-26T20:11:45.3120863Z 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-08-26T20:11:45.3128626Z 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-08-26T20:11:45.3135849Z 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-08-26T20:11:45.3142580Z 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-08-26T20:11:45.3149363Z 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-08-26T20:11:45.3156200Z 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-08-26T20:11:45.3163210Z 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-08-26T20:11:45.3169970Z 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-08-26T20:11:45.3176837Z 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-08-26T20:11:45.3183804Z 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-08-26T20:11:45.3190174Z 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-08-26T20:11:45.3196571Z 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-08-26T20:11:45.3202609Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-08-26T20:11:45.3205979Z 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-08-26T20:11:45.3212993Z 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-08-26T20:11:45.3219536Z 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-08-26T20:11:45.3226083Z 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-08-26T20:11:45.3243226Z 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-08-26T20:11:45.3249941Z 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-08-26T20:11:45.3256585Z 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-08-26T20:11:45.3263497Z 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-08-26T20:11:45.3270109Z 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-08-26T20:11:45.3276568Z 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-08-26T20:11:45.3282608Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-08-26T20:11:45.3285627Z 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-08-26T20:11:45.3292436Z 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-08-26T20:11:45.3298630Z 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-08-26T20:11:45.3308859Z 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-08-26T20:11:45.3315317Z 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-08-26T20:11:45.3331597Z 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-08-26T20:11:45.3338226Z 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-08-26T20:11:45.3344644Z 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-08-26T20:11:45.3351162Z 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-08-26T20:11:45.3357794Z 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-08-26T20:11:45.3364394Z 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-08-26T20:11:45.3375408Z 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-08-26T20:11:45.3382280Z 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-08-26T20:11:45.3388659Z 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-08-26T20:11:45.3395057Z 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-08-26T20:11:45.3401668Z 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-08-26T20:11:45.3408321Z 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-08-26T20:11:45.3414923Z 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-08-26T20:11:45.3421733Z 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-08-26T20:11:45.3428424Z 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-08-26T20:11:45.3435113Z 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-08-26T20:11:45.3440504Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-08-26T20:11:45.3443713Z 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-08-26T20:11:45.3449393Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-08-26T20:11:45.3452475Z 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-08-26T20:11:45.3459157Z 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-08-26T20:11:45.3465779Z 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-08-26T20:11:45.3471386Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-08-26T20:11:45.3474412Z 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-08-26T20:11:45.3481007Z 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-08-26T20:11:45.3487386Z 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-08-26T20:11:45.3493983Z 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-08-26T20:11:45.3500224Z 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-08-26T20:11:45.3526379Z 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-08-26T20:11:45.3542899Z 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-08-26T20:11:45.3549467Z 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-08-26T20:11:45.3554972Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-08-26T20:11:45.3558379Z 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-08-26T20:11:45.3564968Z 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-08-26T20:11:45.3571705Z 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-08-26T20:11:45.3586879Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-08-26T20:11:45.3589712Z 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-08-26T20:11:45.3594994Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-08-26T20:11:45.3614473Z 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-08-26T20:11:45.3615665Z 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-08-26T20:11:45.3617106Z 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-08-26T20:11:45.3623465Z 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-08-26T20:11:45.3638210Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3641106Z copying torch\include\torch\csrc\autograd\anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3647511Z copying torch\include\torch\csrc\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3654269Z copying torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3660406Z copying torch\include\torch\csrc\autograd\cpp_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3676521Z copying torch\include\torch\csrc\autograd\custom_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3683280Z copying torch\include\torch\csrc\autograd\edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3693660Z copying torch\include\torch\csrc\autograd\engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3700131Z copying torch\include\torch\csrc\autograd\forward_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3706601Z copying torch\include\torch\csrc\autograd\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3713282Z copying torch\include\torch\csrc\autograd\FunctionsManual.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3720523Z copying torch\include\torch\csrc\autograd\function_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3732354Z copying torch\include\torch\csrc\autograd\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3738458Z copying torch\include\torch\csrc\autograd\graph_task.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3744786Z copying torch\include\torch\csrc\autograd\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3751608Z copying torch\include\torch\csrc\autograd\input_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3791813Z copying torch\include\torch\csrc\autograd\input_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3798559Z copying torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3805349Z copying torch\include\torch\csrc\autograd\profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3811720Z copying torch\include\torch\csrc\autograd\profiler_kineto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3818457Z copying torch\include\torch\csrc\autograd\profiler_legacy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3825322Z copying torch\include\torch\csrc\autograd\profiler_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3831726Z copying torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3842257Z copying torch\include\torch\csrc\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3848691Z copying torch\include\torch\csrc\autograd\python_cpp_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3856002Z copying torch\include\torch\csrc\autograd\python_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3863036Z copying torch\include\torch\csrc\autograd\python_enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3869545Z copying torch\include\torch\csrc\autograd\python_fft_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3875968Z copying torch\include\torch\csrc\autograd\python_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3882788Z copying torch\include\torch\csrc\autograd\python_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3889606Z copying torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3896155Z copying torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3916499Z copying torch\include\torch\csrc\autograd\python_nested_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3922772Z copying torch\include\torch\csrc\autograd\python_nn_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3929638Z copying torch\include\torch\csrc\autograd\python_saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3935992Z copying torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3942336Z copying torch\include\torch\csrc\autograd\python_special_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3948884Z copying torch\include\torch\csrc\autograd\python_torch_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3956336Z copying torch\include\torch\csrc\autograd\python_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3963512Z copying torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3969921Z copying torch\include\torch\csrc\autograd\record_function_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3976384Z copying torch\include\torch\csrc\autograd\saved_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.3986363Z copying torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.4002464Z copying torch\include\torch\csrc\autograd\symbolic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.4009182Z copying torch\include\torch\csrc\autograd\variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.4016102Z copying torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.4022579Z copying torch\include\torch\csrc\autograd\variable_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-08-26T20:11:45.4028145Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-08-26T20:11:45.4031240Z copying torch\include\torch\csrc\autograd\functions\accumulate_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-08-26T20:11:45.4037862Z copying torch\include\torch\csrc\autograd\functions\basic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-08-26T20:11:45.4044067Z copying torch\include\torch\csrc\autograd\functions\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-08-26T20:11:45.4050528Z copying torch\include\torch\csrc\autograd\functions\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-08-26T20:11:45.4067225Z copying torch\include\torch\csrc\autograd\functions\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-08-26T20:11:45.4073615Z copying torch\include\torch\csrc\autograd\functions\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-08-26T20:11:45.4079001Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-08-26T20:11:45.4082264Z copying torch\include\torch\csrc\autograd\generated\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-08-26T20:11:45.4093541Z copying torch\include\torch\csrc\autograd\generated\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-08-26T20:11:45.4101208Z copying torch\include\torch\csrc\autograd\generated\python_return_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-08-26T20:11:45.4118336Z copying torch\include\torch\csrc\autograd\generated\VariableType.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-08-26T20:11:45.4162144Z copying torch\include\torch\csrc\autograd\generated\variable_factories.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-08-26T20:11:45.4163240Z copying torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-08-26T20:11:45.4164468Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-08-26T20:11:45.4165358Z copying torch\include\torch\csrc\autograd\utils\error_messages.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-08-26T20:11:45.4166500Z copying torch\include\torch\csrc\autograd\utils\grad_layout_contract.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-08-26T20:11:45.4167621Z copying torch\include\torch\csrc\autograd\utils\lambda_post_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-08-26T20:11:45.4168646Z copying torch\include\torch\csrc\autograd\utils\python_arg_parsing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-08-26T20:11:45.4180628Z copying torch\include\torch\csrc\autograd\utils\warnings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-08-26T20:11:45.4190925Z copying torch\include\torch\csrc\autograd\utils\wrap_outputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-08-26T20:11:45.4197221Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-08-26T20:11:45.4199370Z copying torch\include\torch\csrc\cpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-08-26T20:11:45.4204385Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4207294Z copying torch\include\torch\csrc\cuda\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4214400Z copying torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4220581Z copying torch\include\torch\csrc\cuda\device_set.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4226460Z copying torch\include\torch\csrc\cuda\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4232553Z copying torch\include\torch\csrc\cuda\GdsFile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4248774Z copying torch\include\torch\csrc\cuda\memory_snapshot.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4254982Z copying torch\include\torch\csrc\cuda\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4260849Z copying torch\include\torch\csrc\cuda\nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4266989Z copying torch\include\torch\csrc\cuda\python_comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4273062Z copying torch\include\torch\csrc\cuda\python_nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4279503Z copying torch\include\torch\csrc\cuda\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4285362Z copying torch\include\torch\csrc\cuda\THCP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4291306Z copying torch\include\torch\csrc\cuda\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-08-26T20:11:45.4296862Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-08-26T20:11:45.4301244Z copying torch\include\torch\csrc\distributed\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-08-26T20:11:45.4307525Z copying torch\include\torch\csrc\distributed\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-08-26T20:11:45.4313484Z copying torch\include\torch\csrc\distributed\autograd\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-08-26T20:11:45.4318763Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-08-26T20:11:45.4321759Z copying torch\include\torch\csrc\distributed\autograd\context\container.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-08-26T20:11:45.4328427Z copying torch\include\torch\csrc\distributed\autograd\context\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-08-26T20:11:45.4333738Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-08-26T20:11:45.4336745Z 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-08-26T20:11:45.4342544Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-08-26T20:11:45.4355991Z 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-08-26T20:11:45.4362625Z 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-08-26T20:11:45.4372695Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-08-26T20:11:45.4376115Z 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-08-26T20:11:45.4383544Z 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-08-26T20:11:45.4390071Z 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-08-26T20:11:45.4407450Z 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-08-26T20:11:45.4414449Z 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-08-26T20:11:45.4421019Z 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-08-26T20:11:45.4427980Z 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-08-26T20:11:45.4435278Z 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-08-26T20:11:45.4442260Z 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-08-26T20:11:45.4449163Z 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-08-26T20:11:45.4454792Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:45.4457647Z copying torch\include\torch\csrc\distributed\c10d\c10d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:45.4464125Z copying torch\include\torch\csrc\distributed\c10d\debug.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:45.4470499Z copying torch\include\torch\csrc\distributed\c10d\error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:45.4476947Z copying torch\include\torch\csrc\distributed\c10d\exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:45.4487937Z copying torch\include\torch\csrc\distributed\c10d\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:45.4494532Z copying torch\include\torch\csrc\distributed\c10d\python_comm_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:45.4512367Z copying torch\include\torch\csrc\distributed\c10d\socket.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:45.4518929Z copying torch\include\torch\csrc\distributed\c10d\socket_fmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:45.4531064Z copying torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:45.4536924Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-08-26T20:11:45.4540184Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-08-26T20:11:45.4546493Z 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-08-26T20:11:45.4552989Z 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-08-26T20:11:45.4569216Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-08-26T20:11:45.4572958Z 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-08-26T20:11:45.4578369Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4581426Z copying torch\include\torch\csrc\distributed\rpc\agent_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4587862Z copying torch\include\torch\csrc\distributed\rpc\message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4594278Z copying torch\include\torch\csrc\distributed\rpc\python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4600846Z copying torch\include\torch\csrc\distributed\rpc\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4678425Z copying torch\include\torch\csrc\distributed\rpc\python_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4684508Z copying torch\include\torch\csrc\distributed\rpc\python_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4691263Z copying torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4698104Z copying torch\include\torch\csrc\distributed\rpc\py_rref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4704787Z copying torch\include\torch\csrc\distributed\rpc\request_callback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4711693Z copying torch\include\torch\csrc\distributed\rpc\request_callback_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4719140Z 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-08-26T20:11:45.4726449Z copying torch\include\torch\csrc\distributed\rpc\rpc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4733797Z copying torch\include\torch\csrc\distributed\rpc\rpc_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4741368Z copying torch\include\torch\csrc\distributed\rpc\rpc_command_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4748446Z copying torch\include\torch\csrc\distributed\rpc\rref_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4754747Z copying torch\include\torch\csrc\distributed\rpc\rref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4762172Z copying torch\include\torch\csrc\distributed\rpc\rref_proto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4768617Z copying torch\include\torch\csrc\distributed\rpc\script_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4779599Z copying torch\include\torch\csrc\distributed\rpc\script_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4786099Z copying torch\include\torch\csrc\distributed\rpc\script_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4796691Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4803754Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4810608Z copying torch\include\torch\csrc\distributed\rpc\torchscript_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4821578Z copying torch\include\torch\csrc\distributed\rpc\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4840150Z copying torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4841337Z 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-08-26T20:11:45.4842393Z copying torch\include\torch\csrc\distributed\rpc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:11:45.4846647Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-08-26T20:11:45.4849760Z copying torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-08-26T20:11:45.4860415Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-08-26T20:11:45.4863505Z 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-08-26T20:11:45.4870169Z 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-08-26T20:11:45.4875737Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-08-26T20:11:45.4878938Z 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-08-26T20:11:45.4885327Z copying torch\include\torch\csrc\distributed\rpc\testing\testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-08-26T20:11:45.4890299Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4893112Z copying torch\include\torch\csrc\dynamo\cache_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4899888Z copying torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4907171Z copying torch\include\torch\csrc\dynamo\cpp_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4913317Z copying torch\include\torch\csrc\dynamo\cpython_defs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4924164Z copying torch\include\torch\csrc\dynamo\cpython_includes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4930648Z copying torch\include\torch\csrc\dynamo\debug_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4936979Z copying torch\include\torch\csrc\dynamo\eval_frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4943553Z copying torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4949807Z copying torch\include\torch\csrc\dynamo\extra_state.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4956482Z copying torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4968185Z copying torch\include\torch\csrc\dynamo\guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4974604Z copying torch\include\torch\csrc\dynamo\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4980912Z copying torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4987588Z copying torch\include\torch\csrc\dynamo\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-08-26T20:11:45.4992875Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-08-26T20:11:45.4995853Z copying torch\include\torch\csrc\export\example_upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-08-26T20:11:45.5002209Z copying torch\include\torch\csrc\export\pt2_archive_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-08-26T20:11:45.5008635Z copying torch\include\torch\csrc\export\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-08-26T20:11:45.5014706Z copying torch\include\torch\csrc\export\upgrader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-08-26T20:11:45.5020376Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-08-26T20:11:45.5023427Z copying torch\include\torch\csrc\functorch\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-08-26T20:11:45.5029196Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-08-26T20:11:45.5032071Z copying torch\include\torch\csrc\fx\node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-08-26T20:11:45.5041517Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-08-26T20:11:45.5044618Z copying torch\include\torch\csrc\inductor\array_ref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-08-26T20:11:45.5051173Z copying torch\include\torch\csrc\inductor\cpp_prefix.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-08-26T20:11:45.5058510Z copying torch\include\torch\csrc\inductor\inductor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-08-26T20:11:45.5064788Z copying torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-08-26T20:11:45.5075124Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-08-26T20:11:45.5078086Z 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-08-26T20:11:45.5084653Z 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-08-26T20:11:45.5090502Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-08-26T20:11:45.5093629Z 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-08-26T20:11:45.5099923Z copying torch\include\torch\csrc\inductor\aoti_include\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-08-26T20:11:45.5105918Z copying torch\include\torch\csrc\inductor\aoti_include\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-08-26T20:11:45.5112347Z copying torch\include\torch\csrc\inductor\aoti_include\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-08-26T20:11:45.5118734Z copying torch\include\torch\csrc\inductor\aoti_include\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-08-26T20:11:45.5129143Z copying torch\include\torch\csrc\inductor\aoti_include\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-08-26T20:11:45.5134424Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-08-26T20:11:45.5137572Z 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-08-26T20:11:45.5148835Z copying torch\include\torch\csrc\inductor\aoti_package\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-08-26T20:11:45.5150894Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-08-26T20:11:45.5154725Z 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-08-26T20:11:45.5162304Z 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-08-26T20:11:45.5169167Z 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-08-26T20:11:45.5180745Z 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-08-26T20:11:45.5187943Z 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-08-26T20:11:45.5194770Z copying torch\include\torch\csrc\inductor\aoti_runner\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-08-26T20:11:45.5200052Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-08-26T20:11:45.5203376Z 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-08-26T20:11:45.5210234Z 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-08-26T20:11:45.5216529Z 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-08-26T20:11:45.5226967Z copying torch\include\torch\csrc\inductor\aoti_runtime\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-08-26T20:11:45.5233433Z 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-08-26T20:11:45.5239759Z copying torch\include\torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-08-26T20:11:45.5246285Z 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-08-26T20:11:45.5253171Z 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-08-26T20:11:45.5260175Z 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-08-26T20:11:45.5266613Z 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-08-26T20:11:45.5273489Z 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-08-26T20:11:45.5279606Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-08-26T20:11:45.5286015Z 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-08-26T20:11:45.5292359Z 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-08-26T20:11:45.5297840Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-08-26T20:11:45.5300948Z 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-08-26T20:11:45.5307065Z 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-08-26T20:11:45.5313377Z 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-08-26T20:11:45.5324881Z 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-08-26T20:11:45.5330994Z copying torch\include\torch\csrc\inductor\aoti_torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-08-26T20:11:45.5336538Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-08-26T20:11:45.5339488Z copying torch\include\torch\csrc\inductor\aoti_torch\c\macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-08-26T20:11:45.5350337Z 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-08-26T20:11:45.5357107Z 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-08-26T20:11:45.5363431Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-08-26T20:11:45.5369800Z 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-08-26T20:11:45.5376005Z 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-08-26T20:11:45.5385054Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-08-26T20:11:45.5388052Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-08-26T20:11:45.5394413Z 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-08-26T20:11:45.5401324Z 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-08-26T20:11:45.5416752Z 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-08-26T20:11:45.5423472Z 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-08-26T20:11:45.5429148Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-08-26T20:11:45.5432334Z 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-08-26T20:11:45.5438547Z copying torch\include\torch\csrc\inductor\cpp_wrapper\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-08-26T20:11:45.5444848Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-08-26T20:11:45.5457945Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-08-26T20:11:45.5463973Z copying torch\include\torch\csrc\inductor\cpp_wrapper\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-08-26T20:11:45.5473796Z copying torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-08-26T20:11:45.5479117Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-08-26T20:11:45.5482199Z 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-08-26T20:11:45.5488791Z 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-08-26T20:11:45.5494835Z 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-08-26T20:11:45.5500867Z 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-08-26T20:11:45.5505954Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-08-26T20:11:45.5509038Z copying torch\include\torch\csrc\instruction_counter\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-08-26T20:11:45.5514317Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-08-26T20:11:45.5517239Z copying torch\include\torch\csrc\jit\jit_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-08-26T20:11:45.5527778Z copying torch\include\torch\csrc\jit\jit_opt_limit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-08-26T20:11:45.5534275Z copying torch\include\torch\csrc\jit\resource_guard.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-08-26T20:11:45.5539641Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-08-26T20:11:45.5542580Z copying torch\include\torch\csrc\jit\api\compilation_unit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-08-26T20:11:45.5550006Z copying torch\include\torch\csrc\jit\api\function_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-08-26T20:11:45.5556718Z copying torch\include\torch\csrc\jit\api\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-08-26T20:11:45.5563094Z copying torch\include\torch\csrc\jit\api\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-08-26T20:11:45.5570128Z copying torch\include\torch\csrc\jit\api\object.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-08-26T20:11:45.5579497Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-08-26T20:11:45.5586515Z copying torch\include\torch\csrc\jit\backends\backend.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-08-26T20:11:45.5593117Z copying torch\include\torch\csrc\jit\backends\backend_debug_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-08-26T20:11:45.5599609Z copying torch\include\torch\csrc\jit\backends\backend_debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-08-26T20:11:45.5606148Z copying torch\include\torch\csrc\jit\backends\backend_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-08-26T20:11:45.5633785Z copying torch\include\torch\csrc\jit\backends\backend_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-08-26T20:11:45.5645540Z copying torch\include\torch\csrc\jit\backends\backend_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-08-26T20:11:45.5651602Z copying torch\include\torch\csrc\jit\backends\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-08-26T20:11:45.5658089Z copying torch\include\torch\csrc\jit\backends\backend_preprocess.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-08-26T20:11:45.5664592Z copying torch\include\torch\csrc\jit\backends\backend_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-08-26T20:11:45.5670066Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-08-26T20:11:45.5674557Z 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-08-26T20:11:45.5684496Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-08-26T20:11:45.5687730Z 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-08-26T20:11:45.5693938Z 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-08-26T20:11:45.5700103Z 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-08-26T20:11:45.5711144Z 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-08-26T20:11:45.5717591Z 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-08-26T20:11:45.5723003Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-08-26T20:11:45.5726200Z 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-08-26T20:11:45.5731720Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-08-26T20:11:45.5734731Z 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-08-26T20:11:45.5740099Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-08-26T20:11:45.5743100Z 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-08-26T20:11:45.5748580Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-08-26T20:11:45.5751693Z 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-08-26T20:11:45.5757324Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-08-26T20:11:45.5761366Z copying torch\include\torch\csrc\jit\codegen\cuda\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-08-26T20:11:45.5767057Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-08-26T20:11:45.5770427Z 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-08-26T20:11:45.5776567Z copying torch\include\torch\csrc\jit\codegen\fuser\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-08-26T20:11:45.5782756Z copying torch\include\torch\csrc\jit\codegen\fuser\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-08-26T20:11:45.5788991Z copying torch\include\torch\csrc\jit\codegen\fuser\executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-08-26T20:11:45.5794967Z copying torch\include\torch\csrc\jit\codegen\fuser\fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-08-26T20:11:45.5801088Z 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-08-26T20:11:45.5811477Z copying torch\include\torch\csrc\jit\codegen\fuser\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-08-26T20:11:45.5817840Z 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-08-26T20:11:45.5824255Z 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-08-26T20:11:45.5830806Z 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-08-26T20:11:45.5837384Z 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-08-26T20:11:45.5843891Z 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-08-26T20:11:45.5849426Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-08-26T20:11:45.5852723Z 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-08-26T20:11:45.5859288Z 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-08-26T20:11:45.5865528Z 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-08-26T20:11:45.5871026Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-08-26T20:11:45.5874175Z 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-08-26T20:11:45.5880999Z 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-08-26T20:11:45.5886633Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-08-26T20:11:45.5889593Z 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-08-26T20:11:45.5928844Z 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-08-26T20:11:45.5935136Z 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-08-26T20:11:45.5941715Z 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-08-26T20:11:45.5952143Z 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-08-26T20:11:45.5958444Z copying torch\include\torch\csrc\jit\codegen\onednn\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-08-26T20:11:45.5965492Z copying torch\include\torch\csrc\jit\codegen\onednn\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-08-26T20:11:45.5972010Z 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-08-26T20:11:45.5979096Z copying torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-08-26T20:11:45.5985757Z copying torch\include\torch\csrc\jit\codegen\onednn\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-08-26T20:11:45.5997568Z 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-08-26T20:11:45.6002914Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-08-26T20:11:45.6005983Z copying torch\include\torch\csrc\jit\cuda\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-08-26T20:11:45.6011626Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6014653Z copying torch\include\torch\csrc\jit\frontend\builtin_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6021110Z copying torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6027352Z copying torch\include\torch\csrc\jit\frontend\concrete_module_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6037590Z copying torch\include\torch\csrc\jit\frontend\convert_to_ssa.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6044181Z copying torch\include\torch\csrc\jit\frontend\edit_distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6050430Z copying torch\include\torch\csrc\jit\frontend\error_report.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6057343Z copying torch\include\torch\csrc\jit\frontend\exit_transforms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6063291Z copying torch\include\torch\csrc\jit\frontend\function_schema_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6069807Z copying torch\include\torch\csrc\jit\frontend\inline_loop_condition.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6075997Z copying torch\include\torch\csrc\jit\frontend\ir_emitter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6082044Z copying torch\include\torch\csrc\jit\frontend\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6089002Z copying torch\include\torch\csrc\jit\frontend\mini_environment.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6095853Z copying torch\include\torch\csrc\jit\frontend\name_mangler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6102404Z copying torch\include\torch\csrc\jit\frontend\parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6108283Z copying torch\include\torch\csrc\jit\frontend\parser_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6114461Z copying torch\include\torch\csrc\jit\frontend\parse_string_literal.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6121014Z copying torch\include\torch\csrc\jit\frontend\resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6127261Z copying torch\include\torch\csrc\jit\frontend\schema_matching.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6133533Z copying torch\include\torch\csrc\jit\frontend\schema_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6139938Z copying torch\include\torch\csrc\jit\frontend\script_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6151071Z copying torch\include\torch\csrc\jit\frontend\source_range.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6195127Z copying torch\include\torch\csrc\jit\frontend\source_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6196095Z copying torch\include\torch\csrc\jit\frontend\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6197039Z copying torch\include\torch\csrc\jit\frontend\sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6197977Z copying torch\include\torch\csrc\jit\frontend\tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6198861Z copying torch\include\torch\csrc\jit\frontend\tree.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6201003Z copying torch\include\torch\csrc\jit\frontend\tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6207115Z copying torch\include\torch\csrc\jit\frontend\versioned_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-08-26T20:11:45.6212789Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6215700Z copying torch\include\torch\csrc\jit\ir\alias_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6222045Z copying torch\include\torch\csrc\jit\ir\attributes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6228563Z copying torch\include\torch\csrc\jit\ir\constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6234922Z copying torch\include\torch\csrc\jit\ir\graph_node_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6249884Z copying torch\include\torch\csrc\jit\ir\graph_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6255893Z copying torch\include\torch\csrc\jit\ir\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6263048Z copying torch\include\torch\csrc\jit\ir\irparser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6269263Z copying torch\include\torch\csrc\jit\ir\ir_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6275574Z copying torch\include\torch\csrc\jit\ir\named_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6281955Z copying torch\include\torch\csrc\jit\ir\node_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6288467Z copying torch\include\torch\csrc\jit\ir\scope.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6294981Z copying torch\include\torch\csrc\jit\ir\subgraph_matcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6301369Z copying torch\include\torch\csrc\jit\ir\type_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-08-26T20:11:45.6306592Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6309411Z copying torch\include\torch\csrc\jit\mobile\code.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6315619Z copying torch\include\torch\csrc\jit\mobile\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6321962Z copying torch\include\torch\csrc\jit\mobile\file_format.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6328374Z copying torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6338550Z copying torch\include\torch\csrc\jit\mobile\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6345163Z copying torch\include\torch\csrc\jit\mobile\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6351299Z copying torch\include\torch\csrc\jit\mobile\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6357659Z copying torch\include\torch\csrc\jit\mobile\import_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6363998Z copying torch\include\torch\csrc\jit\mobile\import_export_common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6374367Z copying torch\include\torch\csrc\jit\mobile\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6380609Z copying torch\include\torch\csrc\jit\mobile\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6386681Z copying torch\include\torch\csrc\jit\mobile\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6393002Z copying torch\include\torch\csrc\jit\mobile\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6399235Z copying torch\include\torch\csrc\jit\mobile\parse_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6409505Z copying torch\include\torch\csrc\jit\mobile\parse_operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6415971Z copying torch\include\torch\csrc\jit\mobile\prim_ops_registery.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6422772Z copying torch\include\torch\csrc\jit\mobile\profiler_edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6429232Z copying torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6435703Z copying torch\include\torch\csrc\jit\mobile\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6442272Z 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-08-26T20:11:45.6448674Z copying torch\include\torch\csrc\jit\mobile\type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6455247Z copying torch\include\torch\csrc\jit\mobile\upgrader_mobile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-08-26T20:11:45.6465049Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-08-26T20:11:45.6468092Z copying torch\include\torch\csrc\jit\mobile\compatibility\backport.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-08-26T20:11:45.6474074Z 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-08-26T20:11:45.6480909Z 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-08-26T20:11:45.6492465Z 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-08-26T20:11:45.6497988Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-08-26T20:11:45.6501014Z 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-08-26T20:11:45.6507584Z 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-08-26T20:11:45.6518986Z 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-08-26T20:11:45.6598453Z 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-08-26T20:11:45.6605120Z 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-08-26T20:11:45.6611660Z 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-08-26T20:11:45.6619571Z 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-08-26T20:11:45.6626276Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-08-26T20:11:45.6629048Z 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-08-26T20:11:45.6635544Z copying torch\include\torch\csrc\jit\mobile\nnc\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-08-26T20:11:45.6641862Z copying torch\include\torch\csrc\jit\mobile\nnc\registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-08-26T20:11:45.6650340Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-08-26T20:11:45.6653142Z 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-08-26T20:11:45.6659399Z copying torch\include\torch\csrc\jit\mobile\train\random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-08-26T20:11:45.6666388Z copying torch\include\torch\csrc\jit\mobile\train\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-08-26T20:11:45.6671976Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-08-26T20:11:45.6674667Z 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-08-26T20:11:45.6680415Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-08-26T20:11:45.6683551Z copying torch\include\torch\csrc\jit\operator_upgraders\upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-08-26T20:11:45.6690793Z 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-08-26T20:11:45.6696793Z copying torch\include\torch\csrc\jit\operator_upgraders\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-08-26T20:11:45.6703053Z 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-08-26T20:11:45.6889027Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.6891990Z 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-08-26T20:11:45.6898349Z copying torch\include\torch\csrc\jit\passes\annotate_warns.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.6904989Z copying torch\include\torch\csrc\jit\passes\autocast.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.6911026Z copying torch\include\torch\csrc\jit\passes\bailout_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.6982131Z copying torch\include\torch\csrc\jit\passes\batch_mm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.6988319Z copying torch\include\torch\csrc\jit\passes\canonicalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.6998940Z 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-08-26T20:11:45.7005108Z copying torch\include\torch\csrc\jit\passes\check_strict_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7011343Z copying torch\include\torch\csrc\jit\passes\clear_profiling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7017541Z copying torch\include\torch\csrc\jit\passes\clear_undefinedness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7024982Z copying torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7032984Z copying torch\include\torch\csrc\jit\passes\concat_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7039286Z copying torch\include\torch\csrc\jit\passes\constant_pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7046719Z copying torch\include\torch\csrc\jit\passes\constant_propagation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7053888Z copying torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7060242Z copying torch\include\torch\csrc\jit\passes\create_functional_graphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7066547Z copying torch\include\torch\csrc\jit\passes\dead_code_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7073038Z copying torch\include\torch\csrc\jit\passes\decompose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7079410Z copying torch\include\torch\csrc\jit\passes\device_type_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7475741Z copying torch\include\torch\csrc\jit\passes\dtype_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7482104Z copying torch\include\torch\csrc\jit\passes\eliminate_no_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7492536Z copying torch\include\torch\csrc\jit\passes\erase_number_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7499045Z 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-08-26T20:11:45.7505474Z copying torch\include\torch\csrc\jit\passes\fold_conv_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7511872Z copying torch\include\torch\csrc\jit\passes\fold_linear_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7518431Z copying torch\include\torch\csrc\jit\passes\freeze_module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7524945Z copying torch\include\torch\csrc\jit\passes\frozen_concat_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7531325Z 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-08-26T20:11:45.7549045Z copying torch\include\torch\csrc\jit\passes\frozen_conv_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7555537Z copying torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7561802Z copying torch\include\torch\csrc\jit\passes\frozen_linear_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7568618Z copying torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7574857Z 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-08-26T20:11:45.7581074Z copying torch\include\torch\csrc\jit\passes\fuse_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7587456Z copying torch\include\torch\csrc\jit\passes\fuse_relu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7593682Z copying torch\include\torch\csrc\jit\passes\graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7600351Z copying torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7618357Z copying torch\include\torch\csrc\jit\passes\guard_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7624655Z 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-08-26T20:11:45.7630842Z copying torch\include\torch\csrc\jit\passes\inliner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7638164Z copying torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7646412Z copying torch\include\torch\csrc\jit\passes\inline_forked_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7653852Z copying torch\include\torch\csrc\jit\passes\inline_fork_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7661132Z copying torch\include\torch\csrc\jit\passes\inplace_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7668429Z copying torch\include\torch\csrc\jit\passes\insert_guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7674948Z copying torch\include\torch\csrc\jit\passes\integer_value_refinement.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7692181Z copying torch\include\torch\csrc\jit\passes\lift_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7698396Z copying torch\include\torch\csrc\jit\passes\liveness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7704694Z copying torch\include\torch\csrc\jit\passes\loop_unrolling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7711106Z copying torch\include\torch\csrc\jit\passes\lower_grad_of.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7717345Z copying torch\include\torch\csrc\jit\passes\lower_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7724423Z copying torch\include\torch\csrc\jit\passes\lower_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7731007Z copying torch\include\torch\csrc\jit\passes\metal_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7737422Z copying torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7743933Z copying torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7750086Z copying torch\include\torch\csrc\jit\passes\normalize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7776429Z copying torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7782947Z copying torch\include\torch\csrc\jit\passes\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7789267Z copying torch\include\torch\csrc\jit\passes\pass_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7795606Z copying torch\include\torch\csrc\jit\passes\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7801762Z copying torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7808491Z copying torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7815134Z copying torch\include\torch\csrc\jit\passes\peephole_list_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7821579Z copying torch\include\torch\csrc\jit\passes\peephole_non_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7827792Z copying torch\include\torch\csrc\jit\passes\prepack_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7833984Z copying torch\include\torch\csrc\jit\passes\refine_tuple_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7840175Z copying torch\include\torch\csrc\jit\passes\remove_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7856545Z copying torch\include\torch\csrc\jit\passes\remove_exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7862923Z copying torch\include\torch\csrc\jit\passes\remove_expands.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7869307Z copying torch\include\torch\csrc\jit\passes\remove_inplace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7875618Z copying torch\include\torch\csrc\jit\passes\remove_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7882421Z copying torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7888801Z 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-08-26T20:11:45.7895013Z copying torch\include\torch\csrc\jit\passes\requires_grad_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7901609Z copying torch\include\torch\csrc\jit\passes\restore_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7908162Z copying torch\include\torch\csrc\jit\passes\shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7930523Z copying torch\include\torch\csrc\jit\passes\specialize_autogradzero.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7937404Z copying torch\include\torch\csrc\jit\passes\subgraph_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7944085Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7950618Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7957366Z 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-08-26T20:11:45.7963985Z copying torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7970954Z 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-08-26T20:11:45.7978074Z copying torch\include\torch\csrc\jit\passes\value_refinement_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7984937Z copying torch\include\torch\csrc\jit\passes\variadic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7991550Z copying torch\include\torch\csrc\jit\passes\vulkan_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.7998283Z copying torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-08-26T20:11:45.8004495Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-08-26T20:11:45.8007490Z 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-08-26T20:11:45.8027991Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-08-26T20:11:45.8031054Z 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-08-26T20:11:45.8038614Z 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-08-26T20:11:45.8045255Z 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-08-26T20:11:45.8052103Z 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-08-26T20:11:45.8068709Z 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-08-26T20:11:45.8075409Z 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-08-26T20:11:45.8081569Z 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-08-26T20:11:45.8092021Z 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-08-26T20:11:45.8098611Z 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-08-26T20:11:45.8105260Z copying torch\include\torch\csrc\jit\passes\onnx\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-08-26T20:11:45.8111745Z 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-08-26T20:11:45.8118156Z copying torch\include\torch\csrc\jit\passes\onnx\naming.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-08-26T20:11:45.8163111Z 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-08-26T20:11:45.8169479Z copying torch\include\torch\csrc\jit\passes\onnx\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-08-26T20:11:45.8175694Z 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-08-26T20:11:45.8182068Z 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-08-26T20:11:45.8188365Z 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-08-26T20:11:45.8194829Z 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-08-26T20:11:45.8201059Z 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-08-26T20:11:45.8207858Z 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-08-26T20:11:45.8217369Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-08-26T20:11:45.8220613Z 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-08-26T20:11:45.8226768Z 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-08-26T20:11:45.8233081Z 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-08-26T20:11:45.8250220Z 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-08-26T20:11:45.8255574Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-08-26T20:11:45.8258648Z 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-08-26T20:11:45.8265220Z copying torch\include\torch\csrc\jit\passes\quantization\finalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-08-26T20:11:45.8276377Z 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-08-26T20:11:45.8282985Z copying torch\include\torch\csrc\jit\passes\quantization\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-08-26T20:11:45.8300216Z 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-08-26T20:11:45.8306515Z 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-08-26T20:11:45.8313168Z 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-08-26T20:11:45.8320513Z 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-08-26T20:11:45.8326700Z 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-08-26T20:11:45.8332065Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-08-26T20:11:45.8335212Z 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-08-26T20:11:45.8341595Z 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-08-26T20:11:45.8348001Z 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-08-26T20:11:45.8364118Z 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-08-26T20:11:45.8370542Z 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-08-26T20:11:45.8376072Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8378832Z copying torch\include\torch\csrc\jit\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8385052Z copying torch\include\torch\csrc\jit\python\module_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8392000Z copying torch\include\torch\csrc\jit\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8398063Z copying torch\include\torch\csrc\jit\python\pybind_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8405196Z copying torch\include\torch\csrc\jit\python\python_arg_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8426404Z copying torch\include\torch\csrc\jit\python\python_custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8432269Z copying torch\include\torch\csrc\jit\python\python_dict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8438701Z copying torch\include\torch\csrc\jit\python\python_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8445503Z copying torch\include\torch\csrc\jit\python\python_ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8452005Z copying torch\include\torch\csrc\jit\python\python_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8458668Z copying torch\include\torch\csrc\jit\python\python_sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8465414Z copying torch\include\torch\csrc\jit\python\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8472580Z copying torch\include\torch\csrc\jit\python\python_tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8478835Z copying torch\include\torch\csrc\jit\python\script_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8485332Z 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-08-26T20:11:45.8491461Z copying torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-08-26T20:11:45.8496756Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8499812Z copying torch\include\torch\csrc\jit\runtime\argument_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8507024Z copying torch\include\torch\csrc\jit\runtime\autodiff.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8513242Z copying torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8519614Z copying torch\include\torch\csrc\jit\runtime\custom_operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8536883Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8543583Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8549753Z copying torch\include\torch\csrc\jit\runtime\exception_message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8559813Z copying torch\include\torch\csrc\jit\runtime\graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8566415Z copying torch\include\torch\csrc\jit\runtime\graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8573075Z copying torch\include\torch\csrc\jit\runtime\graph_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8579675Z copying torch\include\torch\csrc\jit\runtime\instruction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8586042Z copying torch\include\torch\csrc\jit\runtime\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8592692Z copying torch\include\torch\csrc\jit\runtime\jit_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8599417Z copying torch\include\torch\csrc\jit\runtime\jit_trace.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8605732Z copying torch\include\torch\csrc\jit\runtime\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8612104Z copying torch\include\torch\csrc\jit\runtime\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8618726Z copying torch\include\torch\csrc\jit\runtime\operator_options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8625383Z copying torch\include\torch\csrc\jit\runtime\print_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8632330Z 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-08-26T20:11:45.8639335Z copying torch\include\torch\csrc\jit\runtime\profiling_record.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8656808Z copying torch\include\torch\csrc\jit\runtime\register_ops_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8664132Z copying torch\include\torch\csrc\jit\runtime\script_profile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8670807Z 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-08-26T20:11:45.8677226Z copying torch\include\torch\csrc\jit\runtime\shape_function_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8683391Z 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-08-26T20:11:45.8690073Z copying torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8696584Z copying torch\include\torch\csrc\jit\runtime\symbolic_script.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8702912Z copying torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8714910Z 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-08-26T20:11:45.8731546Z copying torch\include\torch\csrc\jit\runtime\vararg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8738047Z copying torch\include\torch\csrc\jit\runtime\variable_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-08-26T20:11:45.8743453Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-08-26T20:11:45.8746687Z 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-08-26T20:11:45.8753057Z 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-08-26T20:11:45.8759888Z copying torch\include\torch\csrc\jit\runtime\interpreter\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-08-26T20:11:45.8766435Z 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-08-26T20:11:45.8782467Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-08-26T20:11:45.8785345Z copying torch\include\torch\csrc\jit\runtime\static\fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-08-26T20:11:45.8791613Z copying torch\include\torch\csrc\jit\runtime\static\impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-08-26T20:11:45.8798155Z copying torch\include\torch\csrc\jit\runtime\static\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-08-26T20:11:45.8803973Z 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-08-26T20:11:45.8810590Z copying torch\include\torch\csrc\jit\runtime\static\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-08-26T20:11:45.8816792Z copying torch\include\torch\csrc\jit\runtime\static\passes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-08-26T20:11:45.8837757Z copying torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-08-26T20:11:45.8844236Z 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-08-26T20:11:45.8850751Z 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-08-26T20:11:45.8857076Z 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-08-26T20:11:45.8862704Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8866376Z 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-08-26T20:11:45.8872575Z copying torch\include\torch\csrc\jit\serialization\export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8878876Z copying torch\include\torch\csrc\jit\serialization\export_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8895488Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8902185Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8908226Z copying torch\include\torch\csrc\jit\serialization\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8914857Z copying torch\include\torch\csrc\jit\serialization\import_export_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8921328Z copying torch\include\torch\csrc\jit\serialization\import_export_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8927981Z copying torch\include\torch\csrc\jit\serialization\import_export_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8934602Z copying torch\include\torch\csrc\jit\serialization\import_read.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8941019Z copying torch\include\torch\csrc\jit\serialization\import_source.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8947550Z copying torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8954906Z copying torch\include\torch\csrc\jit\serialization\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8961050Z copying torch\include\torch\csrc\jit\serialization\pickle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8967656Z copying torch\include\torch\csrc\jit\serialization\pickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8974076Z copying torch\include\torch\csrc\jit\serialization\pickler_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8980681Z copying torch\include\torch\csrc\jit\serialization\python_print.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8987614Z copying torch\include\torch\csrc\jit\serialization\source_range_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.8994298Z 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-08-26T20:11:45.9001957Z copying torch\include\torch\csrc\jit\serialization\storage_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.9018508Z copying torch\include\torch\csrc\jit\serialization\type_name_uniquer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.9024794Z copying torch\include\torch\csrc\jit\serialization\unpickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-08-26T20:11:45.9030409Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9033329Z copying torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9039665Z copying torch\include\torch\csrc\jit\tensorexpr\block_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9046591Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9053060Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9069460Z copying torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9076249Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9082466Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9088908Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9095399Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9101727Z copying torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9108097Z copying torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9114441Z copying torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9121273Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9128059Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9134751Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9141252Z copying torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9148090Z copying torch\include\torch\csrc\jit\tensorexpr\graph_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9155433Z copying torch\include\torch\csrc\jit\tensorexpr\half_support.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9162650Z copying torch\include\torch\csrc\jit\tensorexpr\hash_provider.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9169337Z copying torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9175851Z copying torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9193321Z copying torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9199818Z copying torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9206516Z copying torch\include\torch\csrc\jit\tensorexpr\ir_printer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9213044Z copying torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9219217Z copying torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9225562Z copying torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9231902Z copying torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9238495Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9245175Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9251677Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9258476Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9274639Z copying torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9281026Z copying torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9287719Z copying torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9294166Z copying torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9300700Z copying torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9307453Z copying torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9314029Z copying torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9320068Z copying torch\include\torch\csrc\jit\tensorexpr\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9326710Z copying torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9333186Z copying torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:11:45.9338645Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-08-26T20:11:45.9341841Z copying torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-08-26T20:11:45.9348070Z copying torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-08-26T20:11:45.9354281Z copying torch\include\torch\csrc\jit\tensorexpr\operators\misc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-08-26T20:11:45.9360451Z copying torch\include\torch\csrc\jit\tensorexpr\operators\norm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-08-26T20:11:45.9366540Z copying torch\include\torch\csrc\jit\tensorexpr\operators\operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-08-26T20:11:45.9382451Z copying torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-08-26T20:11:45.9389120Z copying torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-08-26T20:11:45.9395618Z copying torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-08-26T20:11:45.9402252Z copying torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-08-26T20:11:45.9407549Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-08-26T20:11:45.9410442Z copying torch\include\torch\csrc\jit\testing\file_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-08-26T20:11:45.9417106Z copying torch\include\torch\csrc\jit\testing\hooks_for_testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-08-26T20:11:45.9422705Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-08-26T20:11:45.9427183Z copying torch\include\torch\csrc\lazy\backend\backend_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-08-26T20:11:45.9433856Z copying torch\include\torch\csrc\lazy\backend\backend_device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-08-26T20:11:45.9440339Z copying torch\include\torch\csrc\lazy\backend\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-08-26T20:11:45.9447824Z copying torch\include\torch\csrc\lazy\backend\lowering_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-08-26T20:11:45.9463403Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9466359Z copying torch\include\torch\csrc\lazy\core\cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9472837Z copying torch\include\torch\csrc\lazy\core\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9479106Z copying torch\include\torch\csrc\lazy\core\debug_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9485600Z copying torch\include\torch\csrc\lazy\core\dynamic_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9492265Z copying torch\include\torch\csrc\lazy\core\hash.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9508659Z copying torch\include\torch\csrc\lazy\core\helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9514883Z copying torch\include\torch\csrc\lazy\core\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9521316Z copying torch\include\torch\csrc\lazy\core\ir_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9528334Z copying torch\include\torch\csrc\lazy\core\ir_dump_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9534685Z copying torch\include\torch\csrc\lazy\core\ir_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9541335Z copying torch\include\torch\csrc\lazy\core\ir_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9547890Z copying torch\include\torch\csrc\lazy\core\lazy_graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9554185Z copying torch\include\torch\csrc\lazy\core\metrics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9560578Z copying torch\include\torch\csrc\lazy\core\multi_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9567207Z copying torch\include\torch\csrc\lazy\core\permutation_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9573672Z copying torch\include\torch\csrc\lazy\core\shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9580081Z copying torch\include\torch\csrc\lazy\core\shape_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9586896Z copying torch\include\torch\csrc\lazy\core\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9593652Z copying torch\include\torch\csrc\lazy\core\tensor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9654099Z copying torch\include\torch\csrc\lazy\core\tensor_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9660749Z copying torch\include\torch\csrc\lazy\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9667527Z copying torch\include\torch\csrc\lazy\core\trie.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9674041Z copying torch\include\torch\csrc\lazy\core\unique.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9680469Z copying torch\include\torch\csrc\lazy\core\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-08-26T20:11:45.9686028Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-08-26T20:11:45.9699511Z 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-08-26T20:11:45.9704547Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-08-26T20:11:45.9707713Z 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-08-26T20:11:45.9714075Z copying torch\include\torch\csrc\lazy\core\ops\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-08-26T20:11:45.9719122Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-08-26T20:11:45.9721997Z copying torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-08-26T20:11:45.9731142Z copying torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-08-26T20:11:45.9737875Z copying torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-08-26T20:11:45.9743056Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-08-26T20:11:45.9745807Z copying torch\include\torch\csrc\lazy\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-08-26T20:11:45.9751519Z copying torch\include\torch\csrc\lazy\python\python_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-08-26T20:11:45.9756510Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-08-26T20:11:45.9769537Z copying torch\include\torch\csrc\lazy\ts_backend\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-08-26T20:11:45.9775239Z 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-08-26T20:11:45.9781404Z 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-08-26T20:11:45.9787840Z 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-08-26T20:11:45.9804996Z 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-08-26T20:11:45.9811409Z 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-08-26T20:11:45.9818029Z 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-08-26T20:11:45.9824317Z 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-08-26T20:11:45.9837954Z 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-08-26T20:11:45.9843674Z 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-08-26T20:11:45.9849220Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-08-26T20:11:45.9852026Z 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-08-26T20:11:45.9858394Z 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-08-26T20:11:45.9864620Z 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-08-26T20:11:45.9870143Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-08-26T20:11:45.9873136Z copying torch\include\torch\csrc\monitor\counters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-08-26T20:11:45.9879316Z copying torch\include\torch\csrc\monitor\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-08-26T20:11:45.9885480Z copying torch\include\torch\csrc\monitor\python_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-08-26T20:11:45.9890560Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-08-26T20:11:45.9893347Z copying torch\include\torch\csrc\mps\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-08-26T20:11:45.9898545Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-08-26T20:11:45.9901464Z copying torch\include\torch\csrc\mtia\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-08-26T20:11:45.9906814Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-08-26T20:11:45.9909829Z copying torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-08-26T20:11:45.9915320Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-08-26T20:11:45.9918476Z copying torch\include\torch\csrc\multiprocessing\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-08-26T20:11:45.9923533Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-08-26T20:11:45.9926458Z copying torch\include\torch\csrc\onnx\back_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-08-26T20:11:45.9932696Z copying torch\include\torch\csrc\onnx\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-08-26T20:11:45.9938388Z copying torch\include\torch\csrc\onnx\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-08-26T20:11:45.9943734Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:45.9947019Z copying torch\include\torch\csrc\profiler\api.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:45.9952838Z copying torch\include\torch\csrc\profiler\collection.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:45.9959900Z copying torch\include\torch\csrc\profiler\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:45.9966306Z copying torch\include\torch\csrc\profiler\containers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:45.9983063Z copying torch\include\torch\csrc\profiler\data_flow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:45.9989349Z copying torch\include\torch\csrc\profiler\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:45.9995849Z copying torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:46.0002037Z copying torch\include\torch\csrc\profiler\kineto_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:46.0042190Z copying torch\include\torch\csrc\profiler\perf-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:46.0048576Z copying torch\include\torch\csrc\profiler\perf.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:46.0055494Z copying torch\include\torch\csrc\profiler\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-08-26T20:11:46.0065147Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-08-26T20:11:46.0066978Z copying torch\include\torch\csrc\profiler\orchestration\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-08-26T20:11:46.0072977Z copying torch\include\torch\csrc\profiler\orchestration\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-08-26T20:11:46.0079559Z copying torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-08-26T20:11:46.0085258Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-08-26T20:11:46.0088319Z copying torch\include\torch\csrc\profiler\python\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-08-26T20:11:46.0094713Z copying torch\include\torch\csrc\profiler\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-08-26T20:11:46.0101150Z copying torch\include\torch\csrc\profiler\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-08-26T20:11:46.0106807Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-08-26T20:11:46.0110103Z copying torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-08-26T20:11:46.0116546Z copying torch\include\torch\csrc\profiler\standalone\itt_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-08-26T20:11:46.0122885Z copying torch\include\torch\csrc\profiler\standalone\nvtx_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-08-26T20:11:46.0133632Z copying torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-08-26T20:11:46.0139435Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-08-26T20:11:46.0142242Z copying torch\include\torch\csrc\profiler\stubs\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-08-26T20:11:46.0147786Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0150694Z copying torch\include\torch\csrc\profiler\unwind\action.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0157075Z copying torch\include\torch\csrc\profiler\unwind\communicate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0163362Z copying torch\include\torch\csrc\profiler\unwind\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0169779Z copying torch\include\torch\csrc\profiler\unwind\dwarf_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0187023Z copying torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0193544Z copying torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0199885Z copying torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0206150Z copying torch\include\torch\csrc\profiler\unwind\fde.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0212627Z copying torch\include\torch\csrc\profiler\unwind\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0218863Z copying torch\include\torch\csrc\profiler\unwind\line_number_program.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0225162Z copying torch\include\torch\csrc\profiler\unwind\mem_file.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0231789Z copying torch\include\torch\csrc\profiler\unwind\range_table.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0238065Z copying torch\include\torch\csrc\profiler\unwind\sections.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0244577Z copying torch\include\torch\csrc\profiler\unwind\unwind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0250771Z copying torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0257254Z copying torch\include\torch\csrc\profiler\unwind\unwind_error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:11:46.0262588Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-08-26T20:11:46.0275717Z copying torch\include\torch\csrc\stable\accelerator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-08-26T20:11:46.0282159Z copying torch\include\torch\csrc\stable\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-08-26T20:11:46.0288299Z copying torch\include\torch\csrc\stable\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-08-26T20:11:46.0294745Z copying torch\include\torch\csrc\stable\stableivalue_conversions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-08-26T20:11:46.0301161Z copying torch\include\torch\csrc\stable\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-08-26T20:11:46.0317663Z copying torch\include\torch\csrc\stable\tensor_inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-08-26T20:11:46.0324023Z copying torch\include\torch\csrc\stable\tensor_struct.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-08-26T20:11:46.0329591Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-08-26T20:11:46.0332520Z copying torch\include\torch\csrc\tensor\python_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-08-26T20:11:46.0342334Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0345215Z copying torch\include\torch\csrc\utils\byte_order.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0351547Z copying torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0357945Z copying torch\include\torch\csrc\utils\cuda_enabled.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0363874Z copying torch\include\torch\csrc\utils\device_lazy_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0380585Z copying torch\include\torch\csrc\utils\disable_torch_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0386923Z copying torch\include\torch\csrc\utils\generated_serialization_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0394843Z copying torch\include\torch\csrc\utils\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0400834Z copying torch\include\torch\csrc\utils\invalid_arguments.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0406947Z copying torch\include\torch\csrc\utils\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0413054Z copying torch\include\torch\csrc\utils\numpy_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0419253Z copying torch\include\torch\csrc\utils\object_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0425526Z copying torch\include\torch\csrc\utils\out_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0431637Z copying torch\include\torch\csrc\utils\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0437999Z copying torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0444229Z copying torch\include\torch\csrc\utils\pyobject_preservation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0450497Z copying torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0457730Z copying torch\include\torch\csrc\utils\python_arg_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0464973Z copying torch\include\torch\csrc\utils\python_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0471897Z copying torch\include\torch\csrc\utils\python_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0478242Z copying torch\include\torch\csrc\utils\python_numbers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0494923Z copying torch\include\torch\csrc\utils\python_raii.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0501472Z copying torch\include\torch\csrc\utils\python_scalars.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0508142Z copying torch\include\torch\csrc\utils\python_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0514787Z copying torch\include\torch\csrc\utils\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0521232Z copying torch\include\torch\csrc\utils\python_symnode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0528073Z copying torch\include\torch\csrc\utils\python_torch_function_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0534801Z copying torch\include\torch\csrc\utils\python_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0541521Z copying torch\include\torch\csrc\utils\schema_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0548189Z copying torch\include\torch\csrc\utils\six.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0554730Z copying torch\include\torch\csrc\utils\structseq.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0571190Z copying torch\include\torch\csrc\utils\tensor_apply.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0577593Z copying torch\include\torch\csrc\utils\tensor_dtypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0583868Z copying torch\include\torch\csrc\utils\tensor_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0590549Z copying torch\include\torch\csrc\utils\tensor_layouts.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0601552Z copying torch\include\torch\csrc\utils\tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0607991Z copying torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0614581Z copying torch\include\torch\csrc\utils\tensor_new.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0621200Z copying torch\include\torch\csrc\utils\tensor_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0627793Z copying torch\include\torch\csrc\utils\tensor_qschemes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0644491Z copying torch\include\torch\csrc\utils\tensor_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0651950Z copying torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0658662Z copying torch\include\torch\csrc\utils\throughput_benchmark.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0666301Z copying torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0672208Z copying torch\include\torch\csrc\utils\variadic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0678942Z copying torch\include\torch\csrc\utils\verbose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-08-26T20:11:46.0684210Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-08-26T20:11:46.0687648Z copying torch\include\torch\csrc\xpu\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-08-26T20:11:46.0693553Z copying torch\include\torch\csrc\xpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-08-26T20:11:46.0699254Z copying torch\include\torch\csrc\xpu\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-08-26T20:11:46.0704747Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\core 2025-08-26T20:11:46.0708757Z copying torch\include\torch\headeronly\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\core 2025-08-26T20:11:46.0719178Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec 2025-08-26T20:11:46.0723317Z copying torch\include\torch\headeronly\cpu\vec\intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec 2025-08-26T20:11:46.0729663Z copying torch\include\torch\headeronly\cpu\vec\vec_half.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec 2025-08-26T20:11:46.0734927Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec256 2025-08-26T20:11:46.0737893Z copying torch\include\torch\headeronly\cpu\vec\vec256\missing_vld1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec256 2025-08-26T20:11:46.0744723Z copying torch\include\torch\headeronly\cpu\vec\vec256\missing_vst1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec256 2025-08-26T20:11:46.0749883Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-08-26T20:11:46.0753164Z copying torch\include\torch\headeronly\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-08-26T20:11:46.0759261Z copying torch\include\torch\headeronly\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-08-26T20:11:46.0765488Z copying torch\include\torch\headeronly\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-08-26T20:11:46.0771278Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0774247Z copying torch\include\torch\headeronly\util\BFloat16.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0780491Z copying torch\include\torch\headeronly\util\bits.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0786580Z copying torch\include\torch\headeronly\util\bit_cast.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0793170Z copying torch\include\torch\headeronly\util\complex.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0800533Z copying torch\include\torch\headeronly\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0807349Z copying torch\include\torch\headeronly\util\Float4_e2m1fn_x2.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0823450Z copying torch\include\torch\headeronly\util\Float8_e4m3fn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0830283Z copying torch\include\torch\headeronly\util\Float8_e4m3fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0836782Z copying torch\include\torch\headeronly\util\Float8_e5m2.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0843059Z copying torch\include\torch\headeronly\util\Float8_e5m2fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0849781Z copying torch\include\torch\headeronly\util\Float8_e8m0fnu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0856246Z copying torch\include\torch\headeronly\util\Float8_fnuz_cvt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0862587Z copying torch\include\torch\headeronly\util\floating_point_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0869017Z copying torch\include\torch\headeronly\util\Half.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0876005Z copying torch\include\torch\headeronly\util\qint32.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0881841Z copying torch\include\torch\headeronly\util\qint8.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0887808Z copying torch\include\torch\headeronly\util\quint2x4.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0893770Z copying torch\include\torch\headeronly\util\quint4x2.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0899792Z copying torch\include\torch\headeronly\util\quint8.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0905623Z copying torch\include\torch\headeronly\util\shim_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0912299Z copying torch\include\torch\headeronly\util\TypeSafeSignMath.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-08-26T20:11:46.0918696Z copying torch\include\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:46.0924948Z copying torch\include\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:46.0931319Z copying torch\include\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:46.0937653Z copying torch\include\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:46.0944180Z copying torch\include\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-08-26T20:11:46.0950729Z copying torch\include\oneapi\dnnl\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:46.0973225Z copying torch\include\oneapi\dnnl\dnnl_common.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:46.0979739Z copying torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:46.0987376Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:46.0993912Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:46.1000640Z copying torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:46.1007781Z copying torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:46.1014343Z copying torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:46.1020874Z copying torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:46.1027314Z copying torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-08-26T20:11:46.1034586Z copying torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1041353Z copying torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1048081Z copying torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1054546Z copying torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1061132Z copying torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1096654Z copying torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1103882Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1110806Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1117743Z copying torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1124038Z copying torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1130808Z copying torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1136945Z copying torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1153601Z copying torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1159949Z copying torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1166217Z copying torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1173106Z copying torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1179774Z copying torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1186606Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1193626Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1200513Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1207443Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1214994Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1232191Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1238978Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1245475Z copying torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1251842Z copying torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1258548Z copying torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1265085Z copying torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1271558Z copying torch\include\torch\csrc\distributed\c10d\sequence_num.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1278305Z copying torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1284415Z copying torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1295816Z copying torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1302126Z copying torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1308428Z copying torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1315106Z copying torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1331389Z copying torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1337380Z copying torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1344265Z copying torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1350791Z copying torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:11:46.1356446Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-08-26T20:11:46.1359665Z 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-08-26T20:11:46.1366629Z 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-08-26T20:11:46.1372032Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-08-26T20:11:46.1375139Z 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-08-26T20:11:46.1381511Z 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-08-26T20:11:46.1391416Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-08-26T20:11:46.1394494Z copying torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-08-26T20:11:46.1401138Z copying torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-08-26T20:11:46.1407697Z copying torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-08-26T20:11:46.1414071Z 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-08-26T20:11:46.1420677Z 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-08-26T20:11:46.1436850Z 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-08-26T20:11:46.1443422Z 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-08-26T20:11:46.1450207Z 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-08-26T20:11:46.1456915Z 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-08-26T20:11:46.1463240Z copying torch\include\torch\csrc\jit\testing\catch_utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-08-26T20:11:46.1469763Z copying torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1476421Z copying torch\include\ATen\cuda\AsmUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1482793Z copying torch\include\ATen\cuda\Atomic.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1489852Z copying torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1496416Z copying torch\include\ATen\cuda\cub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1503350Z copying torch\include\ATen\cuda\cub_definitions.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1509788Z copying torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1516983Z copying torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1523418Z copying torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1529862Z copying torch\include\ATen\cuda\DeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1546211Z copying torch\include\ATen\cuda\NumericLimits.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1552665Z copying torch\include\ATen\cuda\PhiloxUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1558782Z copying torch\include\ATen\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-08-26T20:11:46.1565557Z copying torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-08-26T20:11:46.1572223Z copying torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-08-26T20:11:46.1578825Z copying torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-08-26T20:11:46.1585323Z copying torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-08-26T20:11:46.1591956Z copying torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-08-26T20:11:46.1598371Z copying torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-08-26T20:11:46.1605116Z copying torch\include\ATen\native\cuda\block_reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1611711Z copying torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1618924Z copying torch\include\ATen\native\cuda\CUDALoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1625983Z copying torch\include\ATen\native\cuda\cutlass_common.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1632504Z copying torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1639297Z copying torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1650563Z copying torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1658452Z copying torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1665315Z copying torch\include\ATen\native\cuda\fused_adagrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1681227Z copying torch\include\ATen\native\cuda\fused_adagrad_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1688159Z copying torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1694770Z copying torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1706173Z copying torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1713181Z copying torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1719885Z copying torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1726412Z copying torch\include\ATen\native\cuda\GridSampler.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1733137Z copying torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1739409Z copying torch\include\ATen\native\cuda\im2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1755297Z copying torch\include\ATen\native\cuda\JitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1761755Z copying torch\include\ATen\native\cuda\KernelUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1768274Z copying torch\include\ATen\native\cuda\Loops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1774886Z copying torch\include\ATen\native\cuda\Math.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1783020Z copying torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1789819Z copying torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1820101Z copying torch\include\ATen\native\cuda\Normalization.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1820959Z copying torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1821325Z copying torch\include\ATen\native\cuda\Pow.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1827400Z copying torch\include\ATen\native\cuda\Randperm.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1833594Z copying torch\include\ATen\native\cuda\Reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1840776Z copying torch\include\ATen\native\cuda\reduction_template.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1848004Z copying torch\include\ATen\native\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1855102Z copying torch\include\ATen\native\cuda\SortingCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1861536Z copying torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1867908Z copying torch\include\ATen\native\cuda\SortUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1874461Z copying torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1914498Z copying torch\include\ATen\native\cuda\UniqueCub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1925031Z copying torch\include\ATen\native\cuda\UpSample.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1931867Z copying torch\include\ATen\native\cuda\vol2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-08-26T20:11:46.1937547Z creating build\lib.win-amd64-cpython-39\torch\include\THC 2025-08-26T20:11:46.1940407Z copying torch\include\THC\THCAtomics.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-08-26T20:11:46.1946903Z copying torch\include\THC\THCDeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-08-26T20:11:46.1951961Z creating build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime 2025-08-26T20:11:46.1957186Z copying torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime 2025-08-26T20:11:46.1962695Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-08-26T20:11:46.1966155Z copying torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-08-26T20:11:46.1986917Z copying torch\_inductor\script.ld -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-08-26T20:11:46.1993044Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-08-26T20:11:46.1996766Z copying torch\_inductor\kernel\flex\templates\common.py.jinja -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-08-26T20:11:46.2009166Z copying torch\_inductor\kernel\flex\templates\flex_attention.py.jinja -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-08-26T20:11:46.2020756Z copying torch\_inductor\kernel\flex\templates\flex_backwards.py.jinja -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-08-26T20:11:46.2039486Z copying torch\_inductor\kernel\flex\templates\flex_decode.py.jinja -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-08-26T20:11:46.2050061Z copying torch\_inductor\kernel\flex\templates\utilities.py.jinja -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-08-26T20:11:46.2060606Z copying torch\_export\serde\schema.yaml -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-08-26T20:11:46.2074392Z copying torch\_export\serde\export_schema.thrift -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-08-26T20:11:46.2088629Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-08-26T20:11:46.2093555Z copying torch\share\cmake\ATen\ATenConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-08-26T20:11:46.2099016Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-08-26T20:11:46.2101869Z copying torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-08-26T20:11:46.2108381Z copying torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-08-26T20:11:46.2115071Z copying torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-08-26T20:11:46.2131860Z copying torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-08-26T20:11:46.2138966Z copying torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-08-26T20:11:46.2145536Z copying torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-08-26T20:11:46.2152062Z copying torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-08-26T20:11:46.2166045Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-08-26T20:11:46.2167389Z copying torch\share\cmake\Caffe2\public\cuda.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-08-26T20:11:46.2173827Z copying torch\share\cmake\Caffe2\public\gflags.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-08-26T20:11:46.2180360Z copying torch\share\cmake\Caffe2\public\glog.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-08-26T20:11:46.2187099Z copying torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-08-26T20:11:46.2203915Z copying torch\share\cmake\Caffe2\public\mkl.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-08-26T20:11:46.2210374Z copying torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-08-26T20:11:46.2217428Z copying torch\share\cmake\Caffe2\public\protobuf.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-08-26T20:11:46.2223169Z copying torch\share\cmake\Caffe2\public\utils.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-08-26T20:11:46.2230217Z copying torch\share\cmake\Caffe2\public\xpu.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-08-26T20:11:46.2235809Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-08-26T20:11:46.2238804Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-08-26T20:11:46.2249152Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-08-26T20:11:46.2257183Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-08-26T20:11:46.2270046Z 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-08-26T20:11:46.2276610Z 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-08-26T20:11:46.2284846Z 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-08-26T20:11:46.2300483Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-08-26T20:11:46.2303617Z 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-08-26T20:11:46.2310236Z 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-08-26T20:11:46.2316827Z 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-08-26T20:11:46.2333236Z 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-08-26T20:11:46.2338627Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-08-26T20:11:46.2341451Z copying torch\share\cmake\Torch\TorchConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-08-26T20:11:46.2348435Z copying torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-08-26T20:11:46.2359862Z copying torch\utils\benchmark\utils\timeit_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-08-26T20:11:46.2371470Z copying torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-08-26T20:11:46.2392111Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-08-26T20:11:46.2401763Z copying torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-08-26T20:11:46.2408312Z copying torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-08-26T20:11:46.2419002Z copying torch\utils\model_dump\skeleton.html -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-08-26T20:11:46.2425441Z copying torch\utils\model_dump\code.js -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-08-26T20:11:46.2440601Z copying torch\utils\model_dump\htm.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-08-26T20:11:46.2460787Z copying torch\utils\model_dump\preact.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-08-26T20:11:46.2471848Z copying torch\_dynamo\graph_break_registry.json -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-08-26T20:11:46.2510997Z copying torch\lib\aoti_custom_ops.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.2530192Z copying torch\lib\backend_with_compiler.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.2539215Z copying torch\lib\c10.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.2556496Z copying torch\lib\c10_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.2566931Z copying torch\lib\caffe2_nvrtc.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.2573930Z copying torch\lib\jitbackend_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.2582914Z copying torch\lib\torch.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.2589265Z copying torch\lib\torchbind_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.2601178Z copying torch\lib\torch_cpu.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.4820393Z copying torch\lib\torch_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.6965795Z copying torch\lib\torch_global_deps.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.6972898Z copying torch\lib\torch_python.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.7128827Z copying torch\lib\aoti_custom_ops.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.7136551Z copying torch\lib\backend_with_compiler.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.7143752Z copying torch\lib\c10.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.7157739Z copying torch\lib\c10_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.7165382Z copying torch\lib\caffe2_nvrtc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.7177845Z copying torch\lib\cpuinfo.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:46.7185918Z copying torch\lib\dnnl.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.3460759Z copying torch\lib\fmt.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.3481245Z copying torch\lib\jitbackend_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.3488607Z copying torch\lib\kineto.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.3834641Z copying torch\lib\libittnotify.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.3874499Z copying torch\lib\libprotobuf-lite.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.3927992Z copying torch\lib\libprotobuf.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.4342120Z copying torch\lib\libprotoc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.4695811Z copying torch\lib\microkernels-prod.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.4726573Z copying torch\lib\pthreadpool.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.4750551Z copying torch\lib\sleef.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.4819951Z copying torch\lib\torch.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.4826073Z copying torch\lib\torchbind_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:47.9944920Z copying torch\lib\torch_cpu.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:48.0197541Z copying torch\lib\torch_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:48.0223035Z copying torch\lib\torch_python.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:48.0232815Z copying torch\lib\XNNPACK.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-08-26T20:11:48.0263170Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-08-26T20:11:48.0268647Z copying torchgen\packaged\ATen\native\native_functions.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-08-26T20:11:49.0754264Z copying torchgen\packaged\ATen\native\tags.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-08-26T20:11:49.0766094Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0769378Z copying torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0781049Z copying torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0792245Z copying torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0813459Z copying torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0824745Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0841769Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0847844Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0854307Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0860962Z copying torchgen\packaged\ATen\templates\enum_tag.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0867341Z copying torchgen\packaged\ATen\templates\Function.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0874159Z copying torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0887545Z copying torchgen\packaged\ATen\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0897781Z copying torchgen\packaged\ATen\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0909587Z copying torchgen\packaged\ATen\templates\LazyIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0916042Z copying torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0922568Z copying torchgen\packaged\ATen\templates\MethodOperators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0933068Z copying torchgen\packaged\ATen\templates\NativeFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0939369Z copying torchgen\packaged\ATen\templates\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0950537Z copying torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0967747Z copying torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0974133Z copying torchgen\packaged\ATen\templates\Operator.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0980664Z copying torchgen\packaged\ATen\templates\Operators.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.0987152Z copying torchgen\packaged\ATen\templates\Operators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.1990257Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.1996479Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.2007627Z copying torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.2018555Z copying torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.2028447Z copying torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.2035049Z copying torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.3096606Z copying torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.3126663Z copying torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.3133274Z copying torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.3139751Z copying torchgen\packaged\ATen\templates\TensorBody.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.3156428Z copying torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.3166576Z copying torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.3173360Z copying torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.3180011Z copying torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.3186776Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.3211334Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-08-26T20:11:49.3220749Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3223789Z copying torchgen\packaged\autograd\BUILD.bazel -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3230281Z copying torchgen\packaged\autograd\build.bzl -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3236453Z copying torchgen\packaged\autograd\context.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3247967Z copying torchgen\packaged\autograd\deprecated.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3260728Z copying torchgen\packaged\autograd\derivatives.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3338073Z copying torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3350410Z copying torchgen\packaged\autograd\gen_autograd.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3362353Z copying torchgen\packaged\autograd\gen_autograd_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3381962Z copying torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3398485Z copying torchgen\packaged\autograd\gen_python_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3417914Z copying torchgen\packaged\autograd\gen_trace_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3438992Z copying torchgen\packaged\autograd\gen_variable_factories.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3450457Z copying torchgen\packaged\autograd\gen_variable_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3792431Z copying torchgen\packaged\autograd\gen_view_funcs.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3803753Z copying torchgen\packaged\autograd\load_derivatives.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3823911Z copying torchgen\packaged\autograd\README.md -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3829911Z copying torchgen\packaged\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-08-26T20:11:49.3834840Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.3837968Z copying torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.3850363Z copying torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4697720Z copying torchgen\packaged\autograd\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4720318Z copying torchgen\packaged\autograd\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4730793Z copying torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4737231Z copying torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4748921Z copying torchgen\packaged\autograd\templates\python_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4759640Z copying torchgen\packaged\autograd\templates\python_functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4766479Z copying torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4779123Z copying torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4790902Z copying torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4802887Z copying torchgen\packaged\autograd\templates\python_return_types.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4816804Z copying torchgen\packaged\autograd\templates\python_return_types.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4823463Z copying torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4835332Z copying torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4846535Z copying torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4858899Z copying torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4893394Z copying torchgen\packaged\autograd\templates\TraceType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4904182Z copying torchgen\packaged\autograd\templates\VariableType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4914104Z copying torchgen\packaged\autograd\templates\VariableType.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4924235Z copying torchgen\packaged\autograd\templates\variable_factories.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4935033Z copying torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4941606Z copying torchgen\packaged\autograd\templates\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-08-26T20:11:49.4948119Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-08-26T20:11:49.4955903Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:49.4964203Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-08-26T20:11:49.4972284Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-08-26T20:11:49.4980318Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-08-26T20:11:49.4988684Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-08-26T20:11:49.4995599Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-08-26T20:11:49.6573961Z running build_ext 2025-08-26T20:11:49.6634732Z -- Building with NumPy bindings 2025-08-26T20:11:49.6635210Z -- Detected cuDNN at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64, 2025-08-26T20:11:49.6635797Z -- Detected CUDA at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-08-26T20:11:49.6636189Z -- Not using XPU 2025-08-26T20:11:49.6636424Z -- Using MKLDNN 2025-08-26T20:11:49.6636725Z -- Not using Compute Library for the Arm architecture with MKLDNN 2025-08-26T20:11:49.6637137Z -- Not using CBLAS in MKLDNN 2025-08-26T20:11:49.6637375Z -- Not using NCCL 2025-08-26T20:11:49.6637665Z -- Building without distributed package 2025-08-26T20:11:49.6637947Z -- Using ITT 2025-08-26T20:11:54.5357430Z 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-08-26T20:11:54.5360091Z copying functorch\functorch.pyd -> C:\actions-runner\_work\pytorch\pytorch\build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd 2025-08-26T20:11:54.5379879Z building 'torch._C' extension 2025-08-26T20:11:54.5398394Z creating build\temp.win-amd64-cpython-39\Release\torch\csrc 2025-08-26T20:11:54.5410448Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /Tctorch/csrc/stub.c /Fobuild\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /MD /FS /EHsc 2025-08-26T20:11:54.5693604Z stub.c 2025-08-26T20:11:54.8561296Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" torch_python.lib /EXPORT:PyInit__C build\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /OUT:build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.lib /NODEFAULTLIB:LIBCMT.LIB 2025-08-26T20:11:54.8903885Z 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-08-26T20:11:54.9018041Z Generating code 2025-08-26T20:11:54.9466711Z Finished generating code 2025-08-26T20:11:54.9830880Z 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-08-26T20:11:55.0239572Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-26T20:11:55.0240238Z !! 2025-08-26T20:11:55.0240348Z 2025-08-26T20:11:55.0240460Z ******************************************************************************** 2025-08-26T20:11:55.0240797Z Please avoid running ``setup.py`` directly. 2025-08-26T20:11:55.0241269Z Instead, use pypa/build, pypa/installer or other 2025-08-26T20:11:55.0241605Z standards-based tools. 2025-08-26T20:11:55.0241770Z 2025-08-26T20:11:55.0242050Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-26T20:11:55.0242538Z ******************************************************************************** 2025-08-26T20:11:55.0242758Z 2025-08-26T20:11:55.0242824Z !! 2025-08-26T20:11:55.0243014Z self.initialize_options() 2025-08-26T20:11:55.0318681Z installing to build\bdist.win-amd64\wheel 2025-08-26T20:11:55.0319083Z running install 2025-08-26T20:11:55.0340843Z running install_lib 2025-08-26T20:11:55.0421154Z creating build\bdist.win-amd64\wheel 2025-08-26T20:11:55.0426394Z creating build\bdist.win-amd64\wheel\functorch 2025-08-26T20:11:55.0429987Z creating build\bdist.win-amd64\wheel\functorch\compile 2025-08-26T20:11:55.0433232Z copying build\lib.win-amd64-cpython-39\functorch\compile\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\compile 2025-08-26T20:11:55.0438758Z creating build\bdist.win-amd64\wheel\functorch\dim 2025-08-26T20:11:55.0442238Z copying build\lib.win-amd64-cpython-39\functorch\dim\magic_trace.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-08-26T20:11:55.0448066Z copying build\lib.win-amd64-cpython-39\functorch\dim\op_properties.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-08-26T20:11:55.0453304Z copying build\lib.win-amd64-cpython-39\functorch\dim\tree_map.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-08-26T20:11:55.0458292Z copying build\lib.win-amd64-cpython-39\functorch\dim\wrap_type.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-08-26T20:11:55.0476318Z copying build\lib.win-amd64-cpython-39\functorch\dim\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-08-26T20:11:55.0482068Z creating build\bdist.win-amd64\wheel\functorch\einops 2025-08-26T20:11:55.0485351Z copying build\lib.win-amd64-cpython-39\functorch\einops\rearrange.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-08-26T20:11:55.0490922Z copying build\lib.win-amd64-cpython-39\functorch\einops\_parsing.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-08-26T20:11:55.0496312Z copying build\lib.win-amd64-cpython-39\functorch\einops\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-08-26T20:11:55.0501553Z creating build\bdist.win-amd64\wheel\functorch\experimental 2025-08-26T20:11:55.0505024Z copying build\lib.win-amd64-cpython-39\functorch\experimental\control_flow.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-08-26T20:11:55.0510099Z copying build\lib.win-amd64-cpython-39\functorch\experimental\ops.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-08-26T20:11:55.0515097Z copying build\lib.win-amd64-cpython-39\functorch\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-08-26T20:11:55.0520162Z copying build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\functorch 2025-08-26T20:11:55.0541104Z creating build\bdist.win-amd64\wheel\functorch\_src 2025-08-26T20:11:55.0544583Z creating build\bdist.win-amd64\wheel\functorch\_src\aot_autograd 2025-08-26T20:11:55.0547970Z copying build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\aot_autograd 2025-08-26T20:11:55.0553245Z creating build\bdist.win-amd64\wheel\functorch\_src\eager_transforms 2025-08-26T20:11:55.0556515Z copying build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\eager_transforms 2025-08-26T20:11:55.0561799Z creating build\bdist.win-amd64\wheel\functorch\_src\make_functional 2025-08-26T20:11:55.0565112Z copying build\lib.win-amd64-cpython-39\functorch\_src\make_functional\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\make_functional 2025-08-26T20:11:55.0570353Z creating build\bdist.win-amd64\wheel\functorch\_src\vmap 2025-08-26T20:11:55.0585512Z copying build\lib.win-amd64-cpython-39\functorch\_src\vmap\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\vmap 2025-08-26T20:11:55.0590711Z copying build\lib.win-amd64-cpython-39\functorch\_src\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src 2025-08-26T20:11:55.0595197Z copying build\lib.win-amd64-cpython-39\functorch\__init__.py -> build\bdist.win-amd64\wheel\.\functorch 2025-08-26T20:11:55.0601545Z creating build\bdist.win-amd64\wheel\torch 2025-08-26T20:11:55.0604750Z creating build\bdist.win-amd64\wheel\torch\accelerator 2025-08-26T20:11:55.0608119Z copying build\lib.win-amd64-cpython-39\torch\accelerator\memory.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-08-26T20:11:55.0613919Z copying build\lib.win-amd64-cpython-39\torch\accelerator\_utils.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-08-26T20:11:55.0619352Z copying build\lib.win-amd64-cpython-39\torch\accelerator\__init__.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-08-26T20:11:55.0624808Z creating build\bdist.win-amd64\wheel\torch\amp 2025-08-26T20:11:55.0628058Z copying build\lib.win-amd64-cpython-39\torch\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-08-26T20:11:55.0633955Z copying build\lib.win-amd64-cpython-39\torch\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-08-26T20:11:55.0639958Z copying build\lib.win-amd64-cpython-39\torch\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-08-26T20:11:55.0645527Z creating build\bdist.win-amd64\wheel\torch\ao 2025-08-26T20:11:55.0648798Z creating build\bdist.win-amd64\wheel\torch\ao\nn 2025-08-26T20:11:55.0652134Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic 2025-08-26T20:11:55.0655466Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\modules 2025-08-26T20:11:55.0658737Z 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-08-26T20:11:55.0664269Z 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-08-26T20:11:55.0669595Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat 2025-08-26T20:11:55.0673010Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat\modules 2025-08-26T20:11:55.0676296Z 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-08-26T20:11:55.0683082Z 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-08-26T20:11:55.0689389Z 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-08-26T20:11:55.0696642Z 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-08-26T20:11:55.0712397Z 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-08-26T20:11:55.0717716Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized 2025-08-26T20:11:55.0721251Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic 2025-08-26T20:11:55.0764762Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-08-26T20:11:55.0768008Z 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-08-26T20:11:55.0773279Z 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-08-26T20:11:55.0778912Z 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-08-26T20:11:55.0783708Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\modules 2025-08-26T20:11:55.0787181Z 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-08-26T20:11:55.0792603Z 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-08-26T20:11:55.0797869Z 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-08-26T20:11:55.0803625Z 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-08-26T20:11:55.0808938Z 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-08-26T20:11:55.0818864Z 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-08-26T20:11:55.0823858Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic 2025-08-26T20:11:55.0829075Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat 2025-08-26T20:11:55.0832306Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic 2025-08-26T20:11:55.0835711Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic\modules 2025-08-26T20:11:55.0838912Z 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-08-26T20:11:55.0844386Z 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-08-26T20:11:55.0849738Z 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-08-26T20:11:55.0855042Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\modules 2025-08-26T20:11:55.0858908Z 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-08-26T20:11:55.0864098Z 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-08-26T20:11:55.0872168Z 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-08-26T20:11:55.0879305Z 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-08-26T20:11:55.0884948Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat 2025-08-26T20:11:55.0890509Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable 2025-08-26T20:11:55.0893315Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable\modules 2025-08-26T20:11:55.0896525Z 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-08-26T20:11:55.0902542Z 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-08-26T20:11:55.0908712Z 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-08-26T20:11:55.0913801Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable 2025-08-26T20:11:55.0919290Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized 2025-08-26T20:11:55.0934618Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic 2025-08-26T20:11:55.0938036Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic\modules 2025-08-26T20:11:55.0942336Z 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-08-26T20:11:55.0948074Z 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-08-26T20:11:55.0953825Z 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-08-26T20:11:55.0959596Z 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-08-26T20:11:55.0965011Z 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-08-26T20:11:55.0969407Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-08-26T20:11:55.0975717Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\modules 2025-08-26T20:11:55.0978982Z 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-08-26T20:11:55.0984512Z 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-08-26T20:11:55.0989846Z 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-08-26T20:11:55.0995813Z 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-08-26T20:11:55.1001192Z 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-08-26T20:11:55.1018170Z 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-08-26T20:11:55.1023653Z 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-08-26T20:11:55.1029256Z 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-08-26T20:11:55.1034696Z 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-08-26T20:11:55.1040217Z 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-08-26T20:11:55.1045633Z 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-08-26T20:11:55.1051521Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference 2025-08-26T20:11:55.1066045Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference\modules 2025-08-26T20:11:55.1069426Z 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-08-26T20:11:55.1074944Z 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-08-26T20:11:55.1080290Z 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-08-26T20:11:55.1086407Z 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-08-26T20:11:55.1091981Z 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-08-26T20:11:55.1097285Z 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-08-26T20:11:55.1102278Z 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-08-26T20:11:55.1107277Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-08-26T20:11:55.1112822Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse 2025-08-26T20:11:55.1116202Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized 2025-08-26T20:11:55.1119496Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized\dynamic 2025-08-26T20:11:55.1123279Z 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-08-26T20:11:55.1128560Z 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-08-26T20:11:55.1134030Z 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-08-26T20:11:55.1139622Z 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-08-26T20:11:55.1144578Z 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-08-26T20:11:55.1148973Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse 2025-08-26T20:11:55.1154054Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn 2025-08-26T20:11:55.1159623Z creating build\bdist.win-amd64\wheel\torch\ao\ns 2025-08-26T20:11:55.1163021Z creating build\bdist.win-amd64\wheel\torch\ao\ns\fx 2025-08-26T20:11:55.1166528Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_matcher.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-08-26T20:11:55.1172455Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_passes.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-08-26T20:11:55.1183413Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-08-26T20:11:55.1188995Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\ns_types.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-08-26T20:11:55.1195113Z 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-08-26T20:11:55.1211921Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-08-26T20:11:55.1217102Z 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-08-26T20:11:55.1222364Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-08-26T20:11:55.1227990Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\weight_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-08-26T20:11:55.1233425Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-08-26T20:11:55.1238002Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-08-26T20:11:55.1243652Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-08-26T20:11:55.1249787Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-08-26T20:11:55.1254414Z creating build\bdist.win-amd64\wheel\torch\ao\pruning 2025-08-26T20:11:55.1257663Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\scheduler 2025-08-26T20:11:55.1261315Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\base_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-08-26T20:11:55.1266438Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\cubic_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-08-26T20:11:55.1276228Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\lambda_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-08-26T20:11:55.1292861Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-08-26T20:11:55.1297367Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\sparsifier 2025-08-26T20:11:55.1300765Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\base_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-08-26T20:11:55.1306171Z 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-08-26T20:11:55.1311360Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-08-26T20:11:55.1328181Z 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-08-26T20:11:55.1333626Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-08-26T20:11:55.1338147Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental 2025-08-26T20:11:55.1341615Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\activation_sparsifier 2025-08-26T20:11:55.1345315Z 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-08-26T20:11:55.1351182Z 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-08-26T20:11:55.1355571Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_scheduler 2025-08-26T20:11:55.1359209Z 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-08-26T20:11:55.1364557Z 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-08-26T20:11:55.1369890Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier 2025-08-26T20:11:55.1384260Z 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-08-26T20:11:55.1390330Z 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-08-26T20:11:55.1396146Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-08-26T20:11:55.1410616Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-08-26T20:11:55.1414280Z 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-08-26T20:11:55.1420070Z 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-08-26T20:11:55.1425690Z 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-08-26T20:11:55.1441110Z 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-08-26T20:11:55.1445996Z 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-08-26T20:11:55.1451540Z 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-08-26T20:11:55.1456980Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\pruner 2025-08-26T20:11:55.1460494Z 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-08-26T20:11:55.1466058Z 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-08-26T20:11:55.1471832Z 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-08-26T20:11:55.1487690Z 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-08-26T20:11:55.1493229Z 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-08-26T20:11:55.1499424Z 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-08-26T20:11:55.1505640Z 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-08-26T20:11:55.1511086Z 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-08-26T20:11:55.1516326Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental 2025-08-26T20:11:55.1520657Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-08-26T20:11:55.1537134Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-08-26T20:11:55.1542650Z creating build\bdist.win-amd64\wheel\torch\ao\quantization 2025-08-26T20:11:55.1546145Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\backend_config 2025-08-26T20:11:55.1549557Z 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-08-26T20:11:55.1556056Z 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-08-26T20:11:55.1562278Z 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-08-26T20:11:55.1568481Z 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-08-26T20:11:55.1584522Z 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-08-26T20:11:55.1590334Z 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-08-26T20:11:55.1595799Z 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-08-26T20:11:55.1601030Z 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-08-26T20:11:55.1606379Z 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-08-26T20:11:55.1611872Z 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-08-26T20:11:55.1622702Z 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-08-26T20:11:55.1628780Z 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-08-26T20:11:55.1634108Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.1639897Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.1656652Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.1666964Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx 2025-08-26T20:11:55.1670244Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1676388Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\custom_config.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1682347Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1687691Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1692978Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1709512Z 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-08-26T20:11:55.1715528Z 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-08-26T20:11:55.1721166Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lstm_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1727404Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1733244Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1739140Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1750554Z 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-08-26T20:11:55.1756418Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\quantize_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1762006Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\tracer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1767701Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1773777Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_decomposed.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1779818Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1786414Z 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-08-26T20:11:55.1793063Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx\_model_report 2025-08-26T20:11:55.1796407Z 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-08-26T20:11:55.1802729Z 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-08-26T20:11:55.1808815Z 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-08-26T20:11:55.1825275Z 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-08-26T20:11:55.1831532Z 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-08-26T20:11:55.1835825Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-08-26T20:11:55.1841123Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.1847864Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e 2025-08-26T20:11:55.1851157Z 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-08-26T20:11:55.1856515Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\export_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-08-26T20:11:55.1861841Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-08-26T20:11:55.1867106Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\lowering.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-08-26T20:11:55.1882593Z 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-08-26T20:11:55.1888045Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-08-26T20:11:55.1894297Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\qat_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-08-26T20:11:55.1901116Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e\representation 2025-08-26T20:11:55.1904790Z 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-08-26T20:11:55.1911167Z 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-08-26T20:11:55.1916509Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-08-26T20:11:55.1922929Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_affine_quantization.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-08-26T20:11:55.1929606Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_numeric_debugger.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-08-26T20:11:55.1942664Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-08-26T20:11:55.1943691Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.1947145Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.1952934Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.1963139Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.1969471Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\quantizer 2025-08-26T20:11:55.1972942Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\composable_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-08-26T20:11:55.1978639Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\embedding_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-08-26T20:11:55.1984075Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-08-26T20:11:55.2000387Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-08-26T20:11:55.2005682Z 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-08-26T20:11:55.2012617Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-08-26T20:11:55.2018807Z 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-08-26T20:11:55.2025204Z 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-08-26T20:11:55.2030529Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-08-26T20:11:55.2035637Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.2046019Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.2051576Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.2057522Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.2062683Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.2068050Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.2073881Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_correct_bias.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.2079398Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.2084989Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_learnable_fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.2094597Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-08-26T20:11:55.2099900Z copying build\lib.win-amd64-cpython-39\torch\ao\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao 2025-08-26T20:11:55.2105493Z creating build\bdist.win-amd64\wheel\torch\autograd 2025-08-26T20:11:55.2108765Z copying build\lib.win-amd64-cpython-39\torch\autograd\anomaly_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2114192Z copying build\lib.win-amd64-cpython-39\torch\autograd\forward_ad.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2119812Z copying build\lib.win-amd64-cpython-39\torch\autograd\function.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2125819Z copying build\lib.win-amd64-cpython-39\torch\autograd\functional.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2142082Z copying build\lib.win-amd64-cpython-39\torch\autograd\gradcheck.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2148674Z copying build\lib.win-amd64-cpython-39\torch\autograd\grad_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2154636Z copying build\lib.win-amd64-cpython-39\torch\autograd\graph.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2160498Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2167144Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_legacy.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2172707Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_util.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2178775Z copying build\lib.win-amd64-cpython-39\torch\autograd\variable.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2184193Z creating build\bdist.win-amd64\wheel\torch\autograd\_functions 2025-08-26T20:11:55.2187682Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\tensor.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-08-26T20:11:55.2193295Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\utils.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-08-26T20:11:55.2203743Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-08-26T20:11:55.2209347Z copying build\lib.win-amd64-cpython-39\torch\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-08-26T20:11:55.2216149Z creating build\bdist.win-amd64\wheel\torch\backends 2025-08-26T20:11:55.2219735Z creating build\bdist.win-amd64\wheel\torch\backends\cpu 2025-08-26T20:11:55.2223145Z copying build\lib.win-amd64-cpython-39\torch\backends\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cpu 2025-08-26T20:11:55.2228553Z creating build\bdist.win-amd64\wheel\torch\backends\cuda 2025-08-26T20:11:55.2231862Z copying build\lib.win-amd64-cpython-39\torch\backends\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cuda 2025-08-26T20:11:55.2237989Z creating build\bdist.win-amd64\wheel\torch\backends\cudnn 2025-08-26T20:11:55.2241450Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\rnn.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-08-26T20:11:55.2246868Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-08-26T20:11:55.2253004Z creating build\bdist.win-amd64\wheel\torch\backends\cusparselt 2025-08-26T20:11:55.2256035Z copying build\lib.win-amd64-cpython-39\torch\backends\cusparselt\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cusparselt 2025-08-26T20:11:55.2261655Z creating build\bdist.win-amd64\wheel\torch\backends\kleidiai 2025-08-26T20:11:55.2264852Z copying build\lib.win-amd64-cpython-39\torch\backends\kleidiai\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\kleidiai 2025-08-26T20:11:55.2270079Z creating build\bdist.win-amd64\wheel\torch\backends\mha 2025-08-26T20:11:55.2283061Z copying build\lib.win-amd64-cpython-39\torch\backends\mha\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mha 2025-08-26T20:11:55.2288575Z creating build\bdist.win-amd64\wheel\torch\backends\miopen 2025-08-26T20:11:55.2291772Z copying build\lib.win-amd64-cpython-39\torch\backends\miopen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\miopen 2025-08-26T20:11:55.2297218Z creating build\bdist.win-amd64\wheel\torch\backends\mkl 2025-08-26T20:11:55.2300362Z copying build\lib.win-amd64-cpython-39\torch\backends\mkl\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkl 2025-08-26T20:11:55.2310368Z creating build\bdist.win-amd64\wheel\torch\backends\mkldnn 2025-08-26T20:11:55.2313536Z copying build\lib.win-amd64-cpython-39\torch\backends\mkldnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkldnn 2025-08-26T20:11:55.2318949Z creating build\bdist.win-amd64\wheel\torch\backends\mps 2025-08-26T20:11:55.2322269Z copying build\lib.win-amd64-cpython-39\torch\backends\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mps 2025-08-26T20:11:55.2327827Z creating build\bdist.win-amd64\wheel\torch\backends\nnpack 2025-08-26T20:11:55.2331010Z copying build\lib.win-amd64-cpython-39\torch\backends\nnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\nnpack 2025-08-26T20:11:55.2336396Z creating build\bdist.win-amd64\wheel\torch\backends\openmp 2025-08-26T20:11:55.2339613Z copying build\lib.win-amd64-cpython-39\torch\backends\openmp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\openmp 2025-08-26T20:11:55.2344684Z creating build\bdist.win-amd64\wheel\torch\backends\opt_einsum 2025-08-26T20:11:55.2381816Z copying build\lib.win-amd64-cpython-39\torch\backends\opt_einsum\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\opt_einsum 2025-08-26T20:11:55.2387170Z creating build\bdist.win-amd64\wheel\torch\backends\quantized 2025-08-26T20:11:55.2390437Z copying build\lib.win-amd64-cpython-39\torch\backends\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\quantized 2025-08-26T20:11:55.2400205Z creating build\bdist.win-amd64\wheel\torch\backends\xeon 2025-08-26T20:11:55.2403434Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\run_cpu.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-08-26T20:11:55.2409603Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-08-26T20:11:55.2414122Z creating build\bdist.win-amd64\wheel\torch\backends\xnnpack 2025-08-26T20:11:55.2417407Z copying build\lib.win-amd64-cpython-39\torch\backends\xnnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xnnpack 2025-08-26T20:11:55.2423130Z creating build\bdist.win-amd64\wheel\torch\backends\_coreml 2025-08-26T20:11:55.2426914Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\preprocess.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-08-26T20:11:55.2432168Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-08-26T20:11:55.2436708Z creating build\bdist.win-amd64\wheel\torch\backends\_nnapi 2025-08-26T20:11:55.2439876Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\prepare.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-08-26T20:11:55.2445179Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\serializer.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-08-26T20:11:55.2451908Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-08-26T20:11:55.2456212Z copying build\lib.win-amd64-cpython-39\torch\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends 2025-08-26T20:11:55.2461724Z creating build\bdist.win-amd64\wheel\torch\bin 2025-08-26T20:11:55.2464952Z copying build\lib.win-amd64-cpython-39\torch\bin\FileStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-08-26T20:11:55.2474057Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooAsyncTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-08-26T20:11:55.2482817Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-08-26T20:11:55.2497171Z copying build\lib.win-amd64-cpython-39\torch\bin\protoc.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-08-26T20:11:55.2527183Z copying build\lib.win-amd64-cpython-39\torch\bin\TCPStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-08-26T20:11:55.2540836Z copying build\lib.win-amd64-cpython-39\torch\bin\test_api.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-08-26T20:11:55.2622649Z copying build\lib.win-amd64-cpython-39\torch\bin\test_jit.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-08-26T20:11:55.2672122Z copying build\lib.win-amd64-cpython-39\torch\bin\test_lazy.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-08-26T20:11:55.2697898Z copying build\lib.win-amd64-cpython-39\torch\bin\test_nativert.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-08-26T20:11:55.2723821Z creating build\bdist.win-amd64\wheel\torch\compiler 2025-08-26T20:11:55.2738176Z copying build\lib.win-amd64-cpython-39\torch\compiler\config.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-08-26T20:11:55.2748601Z copying build\lib.win-amd64-cpython-39\torch\compiler\_cache.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-08-26T20:11:55.2754680Z copying build\lib.win-amd64-cpython-39\torch\compiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-08-26T20:11:55.2760977Z creating build\bdist.win-amd64\wheel\torch\contrib 2025-08-26T20:11:55.2764179Z copying build\lib.win-amd64-cpython-39\torch\contrib\_tensorboard_vis.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-08-26T20:11:55.2770041Z copying build\lib.win-amd64-cpython-39\torch\contrib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-08-26T20:11:55.2774780Z creating build\bdist.win-amd64\wheel\torch\cpu 2025-08-26T20:11:55.2777978Z creating build\bdist.win-amd64\wheel\torch\cpu\amp 2025-08-26T20:11:55.2781246Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-08-26T20:11:55.2786625Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-08-26T20:11:55.2791992Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-08-26T20:11:55.2797010Z copying build\lib.win-amd64-cpython-39\torch\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu 2025-08-26T20:11:55.2802585Z creating build\bdist.win-amd64\wheel\torch\csrc 2025-08-26T20:11:55.2806162Z creating build\bdist.win-amd64\wheel\torch\csrc\inductor 2025-08-26T20:11:55.2809470Z creating build\bdist.win-amd64\wheel\torch\csrc\inductor\aoti_runtime 2025-08-26T20:11:55.2812661Z 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-08-26T20:11:55.2818325Z creating build\bdist.win-amd64\wheel\torch\cuda 2025-08-26T20:11:55.2821718Z creating build\bdist.win-amd64\wheel\torch\cuda\amp 2025-08-26T20:11:55.2824856Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-08-26T20:11:55.2830463Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\common.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-08-26T20:11:55.2835417Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-08-26T20:11:55.2840782Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-08-26T20:11:55.2845836Z copying build\lib.win-amd64-cpython-39\torch\cuda\comm.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2850809Z copying build\lib.win-amd64-cpython-39\torch\cuda\gds.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2855992Z copying build\lib.win-amd64-cpython-39\torch\cuda\graphs.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2861562Z copying build\lib.win-amd64-cpython-39\torch\cuda\jiterator.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2866862Z copying build\lib.win-amd64-cpython-39\torch\cuda\memory.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2883181Z copying build\lib.win-amd64-cpython-39\torch\cuda\nccl.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2888438Z copying build\lib.win-amd64-cpython-39\torch\cuda\nvtx.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2893662Z copying build\lib.win-amd64-cpython-39\torch\cuda\profiler.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2898798Z copying build\lib.win-amd64-cpython-39\torch\cuda\random.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2903925Z copying build\lib.win-amd64-cpython-39\torch\cuda\sparse.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2908768Z copying build\lib.win-amd64-cpython-39\torch\cuda\streams.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2914059Z copying build\lib.win-amd64-cpython-39\torch\cuda\tunable.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2919803Z copying build\lib.win-amd64-cpython-39\torch\cuda\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2925127Z copying build\lib.win-amd64-cpython-39\torch\cuda\_memory_viz.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2931249Z copying build\lib.win-amd64-cpython-39\torch\cuda\_pin_memory_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2936553Z copying build\lib.win-amd64-cpython-39\torch\cuda\_sanitizer.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2942268Z copying build\lib.win-amd64-cpython-39\torch\cuda\_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2957489Z copying build\lib.win-amd64-cpython-39\torch\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-08-26T20:11:55.2964241Z creating build\bdist.win-amd64\wheel\torch\distributed 2025-08-26T20:11:55.2967757Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms 2025-08-26T20:11:55.2971055Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\ddp_comm_hooks 2025-08-26T20:11:55.2974505Z 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-08-26T20:11:55.2980440Z 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-08-26T20:11:55.2986056Z 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-08-26T20:11:55.3001949Z 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-08-26T20:11:55.3007790Z 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-08-26T20:11:55.3013559Z 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-08-26T20:11:55.3018872Z 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-08-26T20:11:55.3031313Z 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-08-26T20:11:55.3036739Z 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-08-26T20:11:55.3041791Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\join.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-08-26T20:11:55.3047469Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\model_averaging 2025-08-26T20:11:55.3050812Z 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-08-26T20:11:55.3056418Z 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-08-26T20:11:55.3061909Z 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-08-26T20:11:55.3078461Z 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-08-26T20:11:55.3082874Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_checkpoint 2025-08-26T20:11:55.3096566Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-08-26T20:11:55.3102254Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-08-26T20:11:55.3106781Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_comm_hooks 2025-08-26T20:11:55.3110282Z 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-08-26T20:11:55.3115693Z 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-08-26T20:11:55.3120863Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_optimizer_overlap 2025-08-26T20:11:55.3124387Z 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-08-26T20:11:55.3129899Z 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-08-26T20:11:55.3135178Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_quantization 2025-08-26T20:11:55.3138582Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\quantization.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-08-26T20:11:55.3144083Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-08-26T20:11:55.3148345Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-08-26T20:11:55.3153357Z copying build\lib.win-amd64-cpython-39\torch\distributed\argparse_util.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.3158773Z creating build\bdist.win-amd64\wheel\torch\distributed\autograd 2025-08-26T20:11:55.3162047Z copying build\lib.win-amd64-cpython-39\torch\distributed\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\autograd 2025-08-26T20:11:55.3167370Z copying build\lib.win-amd64-cpython-39\torch\distributed\c10d_logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.3183331Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint 2025-08-26T20:11:55.3186617Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3192141Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\default_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3198200Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3204035Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\format_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3219753Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\hf_storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3226033Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3231976Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3241933Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3248193Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3254382Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3260438Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner_helpers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3266510Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\resharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3271878Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3281715Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\stateful.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3287106Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3293669Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_loader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3299184Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_saver.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3304993Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3310435Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3316276Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3322017Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_process_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3327649Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_thread_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3332963Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3348795Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_consolidate_hf_safetensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3354894Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_save_plans.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3360627Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_tensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3366314Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3369746Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\barriers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3380770Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\builder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3386099Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3391548Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_process.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3407656Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_reader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3413185Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_writer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3418426Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\config.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3423678Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3428978Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3434276Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3443557Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-08-26T20:11:55.3449005Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_extension.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3454578Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_fsspec_filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3460056Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3465537Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_nested_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3470920Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_pg_transport.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3489694Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3495259Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_state_dict_stager.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3500924Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_storage_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3506626Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_traverse.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3512221Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_version.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3517299Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-08-26T20:11:55.3522472Z copying build\lib.win-amd64-cpython-39\torch\distributed\collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.3528452Z copying build\lib.win-amd64-cpython-39\torch\distributed\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.3533957Z copying build\lib.win-amd64-cpython-39\torch\distributed\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.3540426Z copying build\lib.win-amd64-cpython-39\torch\distributed\distributed_c10d.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.3548493Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic 2025-08-26T20:11:55.3551713Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent 2025-08-26T20:11:55.3555114Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent\server 2025-08-26T20:11:55.3559628Z 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-08-26T20:11:55.3565878Z 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-08-26T20:11:55.3576069Z 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-08-26T20:11:55.3581996Z 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-08-26T20:11:55.3588083Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent 2025-08-26T20:11:55.3592239Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\control_plane.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-08-26T20:11:55.3597799Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\events 2025-08-26T20:11:55.3601348Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-08-26T20:11:55.3606566Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-08-26T20:11:55.3611730Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-08-26T20:11:55.3617402Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\metrics 2025-08-26T20:11:55.3620694Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-08-26T20:11:55.3626243Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-08-26T20:11:55.3631732Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing 2025-08-26T20:11:55.3645548Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-08-26T20:11:55.3652152Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\errors 2025-08-26T20:11:55.3655472Z 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-08-26T20:11:55.3661043Z 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-08-26T20:11:55.3670835Z 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-08-26T20:11:55.3676273Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\redirects.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-08-26T20:11:55.3681874Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-08-26T20:11:55.3695589Z 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-08-26T20:11:55.3701852Z 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-08-26T20:11:55.3707442Z 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-08-26T20:11:55.3716922Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\tail_log.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-08-26T20:11:55.3722450Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-08-26T20:11:55.3728825Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\rendezvous 2025-08-26T20:11:55.3732549Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-08-26T20:11:55.3738525Z 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-08-26T20:11:55.3744499Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-08-26T20:11:55.3764948Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-08-26T20:11:55.3771377Z 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-08-26T20:11:55.3777031Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_server.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-08-26T20:11:55.3782626Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-08-26T20:11:55.3788121Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-08-26T20:11:55.3793403Z 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-08-26T20:11:55.3803193Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-08-26T20:11:55.3808703Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-08-26T20:11:55.3814071Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-08-26T20:11:55.3819610Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\timer 2025-08-26T20:11:55.3822843Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-08-26T20:11:55.3828704Z 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-08-26T20:11:55.3834106Z 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-08-26T20:11:55.3839832Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\local_timer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-08-26T20:11:55.3855490Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-08-26T20:11:55.3861333Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils 2025-08-26T20:11:55.3864411Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-08-26T20:11:55.3869734Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils\data 2025-08-26T20:11:55.3873015Z 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-08-26T20:11:55.3878535Z 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-08-26T20:11:55.3883934Z 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-08-26T20:11:55.3889336Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\distributed.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-08-26T20:11:55.3894604Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\logging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-08-26T20:11:55.3900042Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\log_level.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-08-26T20:11:55.3915492Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-08-26T20:11:55.3920793Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-08-26T20:11:55.3925916Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-08-26T20:11:55.3941583Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp 2025-08-26T20:11:55.3942430Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.3943464Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.3949399Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\sharded_grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.3955064Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\wrap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.3960775Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.3976722Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.3983669Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_dynamo_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.3989254Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_exec_order_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.3994940Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_flat_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4001865Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fsdp_extensions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4013806Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp\_fully_shard 2025-08-26T20:11:55.4017142Z 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-08-26T20:11:55.4022786Z 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-08-26T20:11:55.4028805Z 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-08-26T20:11:55.4044260Z 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-08-26T20:11:55.4057708Z 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-08-26T20:11:55.4064511Z 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-08-26T20:11:55.4070736Z 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-08-26T20:11:55.4076743Z 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-08-26T20:11:55.4083130Z 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-08-26T20:11:55.4088391Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_init_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4095013Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_limiter_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4100535Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_optim_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4107321Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4114008Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_shard_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4119676Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4126015Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_trace_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4136228Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_traversal_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4141922Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_unshard_param_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4157636Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_wrap_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4163211Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-08-26T20:11:55.4168843Z copying build\lib.win-amd64-cpython-39\torch\distributed\launch.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.4174484Z creating build\bdist.win-amd64\wheel\torch\distributed\launcher 2025-08-26T20:11:55.4177641Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-08-26T20:11:55.4183211Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-08-26T20:11:55.4188376Z copying build\lib.win-amd64-cpython-39\torch\distributed\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.4193823Z creating build\bdist.win-amd64\wheel\torch\distributed\nn 2025-08-26T20:11:55.4197168Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\api 2025-08-26T20:11:55.4200383Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\remote_module.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-08-26T20:11:55.4240910Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-08-26T20:11:55.4245705Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-08-26T20:11:55.4251545Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit 2025-08-26T20:11:55.4255200Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\instantiator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-08-26T20:11:55.4271480Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit\templates 2025-08-26T20:11:55.4272546Z 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-08-26T20:11:55.4273746Z 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-08-26T20:11:55.4275635Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-08-26T20:11:55.4279889Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-08-26T20:11:55.4285491Z creating build\bdist.win-amd64\wheel\torch\distributed\optim 2025-08-26T20:11:55.4289060Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\apply_optimizer_in_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4294599Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adadelta.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4300225Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adagrad.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4310985Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adam.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4320796Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamax.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4326303Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamw.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4331927Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4337371Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4342797Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_sgd.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4348216Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\named_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4353934Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4359604Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\post_localSGD_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4364971Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4370456Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4377126Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4382572Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\_deprecation_warning.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4387778Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-08-26T20:11:55.4393308Z creating build\bdist.win-amd64\wheel\torch\distributed\pipelining 2025-08-26T20:11:55.4396865Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\microbatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-08-26T20:11:55.4402635Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\schedules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-08-26T20:11:55.4409753Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\stage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-08-26T20:11:55.4416114Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-08-26T20:11:55.4431558Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_debug.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-08-26T20:11:55.4436507Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_IR.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-08-26T20:11:55.4443192Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_schedule_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-08-26T20:11:55.4448837Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_unflatten.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-08-26T20:11:55.4454153Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-08-26T20:11:55.4459423Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-08-26T20:11:55.4469176Z copying build\lib.win-amd64-cpython-39\torch\distributed\remote_device.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.4474624Z copying build\lib.win-amd64-cpython-39\torch\distributed\rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.4480805Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc 2025-08-26T20:11:55.4483758Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-08-26T20:11:55.4490045Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-08-26T20:11:55.4495906Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-08-26T20:11:55.4501127Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\functions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-08-26T20:11:55.4516789Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\internal.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-08-26T20:11:55.4522196Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\options.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-08-26T20:11:55.4527570Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\rref_proxy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-08-26T20:11:55.4533333Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\server_process_global_profiler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-08-26T20:11:55.4538827Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc\_testing 2025-08-26T20:11:55.4542221Z 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-08-26T20:11:55.4547678Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc\_testing 2025-08-26T20:11:55.4552598Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-08-26T20:11:55.4557848Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-08-26T20:11:55.4563246Z copying build\lib.win-amd64-cpython-39\torch\distributed\run.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.4574585Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor 2025-08-26T20:11:55.4578006Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\debug 2025-08-26T20:11:55.4581231Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_comm_mode.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-08-26T20:11:55.4587223Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_op_coverage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-08-26T20:11:55.4592700Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_visualize_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-08-26T20:11:55.4597965Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-08-26T20:11:55.4613295Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4618502Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\experimental 2025-08-26T20:11:55.4621961Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_attention.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-08-26T20:11:55.4628155Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_func_map.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-08-26T20:11:55.4633680Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_register_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-08-26T20:11:55.4649401Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_tp_transform.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-08-26T20:11:55.4655401Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-08-26T20:11:55.4660848Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\parallel 2025-08-26T20:11:55.4664074Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-08-26T20:11:55.4669231Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\ddp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-08-26T20:11:55.4681912Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-08-26T20:11:55.4687390Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\input_reshard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-08-26T20:11:55.4692728Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\loss.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-08-26T20:11:55.4698467Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\style.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-08-26T20:11:55.4714203Z 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-08-26T20:11:55.4720306Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-08-26T20:11:55.4726295Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4742783Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4750085Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4755906Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4766517Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dtensor_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4772338Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4775612Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4781206Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_common_rules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4786778Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_conv_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4792563Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_einsum_strategy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4808361Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4814384Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_math_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4820565Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_matrix_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4832890Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_pointwise_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4838845Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_random_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4844388Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4856158Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_view_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4862443Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-08-26T20:11:55.4867791Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_op_schema.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4873790Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_random.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4879400Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_redistribute.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4885204Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_sharding_prop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4891243Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_shards_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4896702Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_tp_conv.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4902021Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4907706Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-08-26T20:11:55.4913079Z copying build\lib.win-amd64-cpython-39\torch\distributed\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.4918595Z copying build\lib.win-amd64-cpython-39\torch\distributed\_checkpointable.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.4924255Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable 2025-08-26T20:11:55.4937673Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\checkpoint_activation.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-08-26T20:11:55.4943061Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\contract.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-08-26T20:11:55.4948885Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable\fsdp 2025-08-26T20:11:55.4952022Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\fully_shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-08-26T20:11:55.4957274Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-08-26T20:11:55.4962122Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\replicate.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-08-26T20:11:55.4977338Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\replicate_with_fsdp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-08-26T20:11:55.4983143Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-08-26T20:11:55.4988413Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.4994047Z copying build\lib.win-amd64-cpython-39\torch\distributed\_dist2.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.4999384Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.5005588Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives_impl.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.5011043Z copying build\lib.win-amd64-cpython-39\torch\distributed\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.5016683Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard 2025-08-26T20:11:55.5020252Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-08-26T20:11:55.5026506Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\checkpoint 2025-08-26T20:11:55.5029729Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\checkpoint 2025-08-26T20:11:55.5035621Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\common_op_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-08-26T20:11:55.5047081Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-08-26T20:11:55.5052690Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\op_registry_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-08-26T20:11:55.5068193Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_optim 2025-08-26T20:11:55.5071488Z 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-08-26T20:11:55.5076944Z 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-08-26T20:11:55.5082604Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor 2025-08-26T20:11:55.5085963Z 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-08-26T20:11:55.5092420Z 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-08-26T20:11:55.5097850Z 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-08-26T20:11:55.5102962Z 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-08-26T20:11:55.5113244Z 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-08-26T20:11:55.5128350Z 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-08-26T20:11:55.5137205Z 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-08-26T20:11:55.5147332Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor\_ops 2025-08-26T20:11:55.5150785Z 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-08-26T20:11:55.5156272Z 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-08-26T20:11:55.5162166Z 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-08-26T20:11:55.5167453Z 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-08-26T20:11:55.5172881Z 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-08-26T20:11:55.5194557Z 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-08-26T20:11:55.5199897Z 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-08-26T20:11:55.5205772Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-08-26T20:11:55.5211391Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_plan 2025-08-26T20:11:55.5214938Z 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-08-26T20:11:55.5220441Z 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-08-26T20:11:55.5225721Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec 2025-08-26T20:11:55.5229329Z 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-08-26T20:11:55.5235105Z 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-08-26T20:11:55.5240766Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-08-26T20:11:55.5254793Z 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-08-26T20:11:55.5260284Z 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-08-26T20:11:55.5266307Z 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-08-26T20:11:55.5281407Z 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-08-26T20:11:55.5285963Z 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-08-26T20:11:55.5291414Z 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-08-26T20:11:55.5296359Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-08-26T20:11:55.5301635Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-08-26T20:11:55.5306857Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharded_tensor 2025-08-26T20:11:55.5310212Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharded_tensor 2025-08-26T20:11:55.5315354Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharding_spec 2025-08-26T20:11:55.5318652Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharding_spec 2025-08-26T20:11:55.5323825Z copying build\lib.win-amd64-cpython-39\torch\distributed\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.5330220Z creating build\bdist.win-amd64\wheel\torch\distributed\_symmetric_memory 2025-08-26T20:11:55.5343399Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\_nvshmem_triton.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-08-26T20:11:55.5349443Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-08-26T20:11:55.5355731Z creating build\bdist.win-amd64\wheel\torch\distributed\_tensor 2025-08-26T20:11:55.5359075Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-08-26T20:11:55.5364322Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-08-26T20:11:55.5369365Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-08-26T20:11:55.5379305Z creating build\bdist.win-amd64\wheel\torch\distributed\_tools 2025-08-26T20:11:55.5382562Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-08-26T20:11:55.5388089Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fake_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-08-26T20:11:55.5393425Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fsdp2_mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-08-26T20:11:55.5399144Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\ilp_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-08-26T20:11:55.5414079Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\memory_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-08-26T20:11:55.5419527Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-08-26T20:11:55.5425511Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mod_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-08-26T20:11:55.5431007Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\runtime_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-08-26T20:11:55.5436777Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-08-26T20:11:55.5442991Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_ilp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-08-26T20:11:55.5453516Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-08-26T20:11:55.5458628Z copying build\lib.win-amd64-cpython-39\torch\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-08-26T20:11:55.5464817Z creating build\bdist.win-amd64\wheel\torch\distributions 2025-08-26T20:11:55.5468146Z copying build\lib.win-amd64-cpython-39\torch\distributions\bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5473435Z copying build\lib.win-amd64-cpython-39\torch\distributions\beta.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5478766Z copying build\lib.win-amd64-cpython-39\torch\distributions\binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5483994Z copying build\lib.win-amd64-cpython-39\torch\distributions\categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5498980Z copying build\lib.win-amd64-cpython-39\torch\distributions\cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5504141Z copying build\lib.win-amd64-cpython-39\torch\distributions\chi2.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5509540Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraints.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5515418Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraint_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5521026Z copying build\lib.win-amd64-cpython-39\torch\distributions\continuous_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5526423Z copying build\lib.win-amd64-cpython-39\torch\distributions\dirichlet.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5535995Z copying build\lib.win-amd64-cpython-39\torch\distributions\distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5541992Z copying build\lib.win-amd64-cpython-39\torch\distributions\exponential.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5547523Z copying build\lib.win-amd64-cpython-39\torch\distributions\exp_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5553036Z copying build\lib.win-amd64-cpython-39\torch\distributions\fishersnedecor.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5558395Z copying build\lib.win-amd64-cpython-39\torch\distributions\gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5563837Z copying build\lib.win-amd64-cpython-39\torch\distributions\generalized_pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5574075Z copying build\lib.win-amd64-cpython-39\torch\distributions\geometric.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5579817Z copying build\lib.win-amd64-cpython-39\torch\distributions\gumbel.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5585191Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5590766Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5596344Z copying build\lib.win-amd64-cpython-39\torch\distributions\independent.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5601845Z copying build\lib.win-amd64-cpython-39\torch\distributions\inverse_gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5621841Z copying build\lib.win-amd64-cpython-39\torch\distributions\kl.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5633251Z copying build\lib.win-amd64-cpython-39\torch\distributions\kumaraswamy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5638830Z copying build\lib.win-amd64-cpython-39\torch\distributions\laplace.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5644288Z copying build\lib.win-amd64-cpython-39\torch\distributions\lkj_cholesky.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5650147Z copying build\lib.win-amd64-cpython-39\torch\distributions\logistic_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5655607Z copying build\lib.win-amd64-cpython-39\torch\distributions\log_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5661349Z copying build\lib.win-amd64-cpython-39\torch\distributions\lowrank_multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5666954Z copying build\lib.win-amd64-cpython-39\torch\distributions\mixture_same_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5672527Z copying build\lib.win-amd64-cpython-39\torch\distributions\multinomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5678099Z copying build\lib.win-amd64-cpython-39\torch\distributions\multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5693133Z copying build\lib.win-amd64-cpython-39\torch\distributions\negative_binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5698535Z copying build\lib.win-amd64-cpython-39\torch\distributions\normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5704082Z copying build\lib.win-amd64-cpython-39\torch\distributions\one_hot_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5709918Z copying build\lib.win-amd64-cpython-39\torch\distributions\pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5715437Z copying build\lib.win-amd64-cpython-39\torch\distributions\poisson.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5721223Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5727274Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5733246Z copying build\lib.win-amd64-cpython-39\torch\distributions\studentT.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5738838Z copying build\lib.win-amd64-cpython-39\torch\distributions\transformed_distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5744501Z copying build\lib.win-amd64-cpython-39\torch\distributions\transforms.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5751708Z copying build\lib.win-amd64-cpython-39\torch\distributions\uniform.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5758770Z copying build\lib.win-amd64-cpython-39\torch\distributions\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.5764736Z copying build\lib.win-amd64-cpython-39\torch\distributions\von_mises.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.7702408Z copying build\lib.win-amd64-cpython-39\torch\distributions\weibull.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.7708488Z copying build\lib.win-amd64-cpython-39\torch\distributions\wishart.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.7713786Z copying build\lib.win-amd64-cpython-39\torch\distributions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-08-26T20:11:55.7720894Z creating build\bdist.win-amd64\wheel\torch\export 2025-08-26T20:11:55.7724957Z copying build\lib.win-amd64-cpython-39\torch\export\custom_obj.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7731112Z copying build\lib.win-amd64-cpython-39\torch\export\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7736895Z copying build\lib.win-amd64-cpython-39\torch\export\decomp_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7742967Z copying build\lib.win-amd64-cpython-39\torch\export\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7766844Z creating build\bdist.win-amd64\wheel\torch\export\experimental 2025-08-26T20:11:55.7770299Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\_utils.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-08-26T20:11:55.7775877Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-08-26T20:11:55.7781648Z copying build\lib.win-amd64-cpython-39\torch\export\exported_program.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7788296Z copying build\lib.win-amd64-cpython-39\torch\export\graph_signature.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7794356Z creating build\bdist.win-amd64\wheel\torch\export\passes 2025-08-26T20:11:55.7797560Z copying build\lib.win-amd64-cpython-39\torch\export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\passes 2025-08-26T20:11:55.7803334Z creating build\bdist.win-amd64\wheel\torch\export\pt2_archive 2025-08-26T20:11:55.7806725Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\constants.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-08-26T20:11:55.7812114Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-08-26T20:11:55.7818119Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package_weights.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-08-26T20:11:55.7823675Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-08-26T20:11:55.7840462Z copying build\lib.win-amd64-cpython-39\torch\export\unflatten.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7846979Z copying build\lib.win-amd64-cpython-39\torch\export\_draft_export.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7853044Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_auto_functionalized_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7894862Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_effect_tokens_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7900501Z copying build\lib.win-amd64-cpython-39\torch\export\_safeguard.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7905653Z copying build\lib.win-amd64-cpython-39\torch\export\_swap.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7918967Z copying build\lib.win-amd64-cpython-39\torch\export\_trace.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7930461Z copying build\lib.win-amd64-cpython-39\torch\export\_tree_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7935872Z copying build\lib.win-amd64-cpython-39\torch\export\_unlift.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7941635Z copying build\lib.win-amd64-cpython-39\torch\export\_wrapper_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7946834Z copying build\lib.win-amd64-cpython-39\torch\export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-08-26T20:11:55.7952838Z creating build\bdist.win-amd64\wheel\torch\fft 2025-08-26T20:11:55.7956002Z copying build\lib.win-amd64-cpython-39\torch\fft\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fft 2025-08-26T20:11:55.7962362Z creating build\bdist.win-amd64\wheel\torch\func 2025-08-26T20:11:55.7965529Z copying build\lib.win-amd64-cpython-39\torch\func\__init__.py -> build\bdist.win-amd64\wheel\.\torch\func 2025-08-26T20:11:55.7970838Z copying build\lib.win-amd64-cpython-39\torch\functional.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:11:55.7978024Z creating build\bdist.win-amd64\wheel\torch\futures 2025-08-26T20:11:55.7981146Z copying build\lib.win-amd64-cpython-39\torch\futures\__init__.py -> build\bdist.win-amd64\wheel\.\torch\futures 2025-08-26T20:11:55.7987015Z creating build\bdist.win-amd64\wheel\torch\fx 2025-08-26T20:11:55.7990176Z copying build\lib.win-amd64-cpython-39\torch\fx\annotate.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.7995409Z copying build\lib.win-amd64-cpython-39\torch\fx\config.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8000905Z creating build\bdist.win-amd64\wheel\torch\fx\experimental 2025-08-26T20:11:55.8004205Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\accelerator_partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8010223Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\const_fold.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8015618Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\debug.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8025245Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\graph_gradual_typechecker.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8031356Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\merge_matmul.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8036952Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\meta_tracer.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8042996Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\migrate_gradual_types 2025-08-26T20:11:55.8046512Z 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-08-26T20:11:55.8056663Z 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-08-26T20:11:55.8063158Z 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-08-26T20:11:55.8081370Z 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-08-26T20:11:55.8087035Z 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-08-26T20:11:55.8092926Z 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-08-26T20:11:55.8098600Z 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-08-26T20:11:55.8104233Z 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-08-26T20:11:55.8108659Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\normalize.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8114296Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\optimization.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8120682Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\partitioner_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8126530Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\proxy_tensor.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8133169Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\recording.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8139678Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\refinement_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8144840Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8150325Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\schema_type_annotation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8155997Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\symbolic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8164892Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\sym_node.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8171555Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification 2025-08-26T20:11:55.8174993Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\core.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-08-26T20:11:55.8180556Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\dispatch.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-08-26T20:11:55.8185732Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\match.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-08-26T20:11:55.8191462Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\more.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-08-26T20:11:55.8196949Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification\multipledispatch 2025-08-26T20:11:55.8211803Z 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-08-26T20:11:55.8217289Z 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-08-26T20:11:55.8250981Z 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-08-26T20:11:55.8253134Z 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-08-26T20:11:55.8254915Z 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-08-26T20:11:55.8257836Z 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-08-26T20:11:55.8263799Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\unification_tools.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-08-26T20:11:55.8273645Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-08-26T20:11:55.8279204Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\variable.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-08-26T20:11:55.8289143Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-08-26T20:11:55.8294284Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unify_refinements.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8299647Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\validator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8316949Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_backward_state.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8329503Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_config.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8335092Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_constant_symnode.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8343667Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_dynamism.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8349261Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-08-26T20:11:55.8353581Z copying build\lib.win-amd64-cpython-39\torch\fx\graph.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8363369Z copying build\lib.win-amd64-cpython-39\torch\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8380648Z copying build\lib.win-amd64-cpython-39\torch\fx\immutable_collections.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8389800Z copying build\lib.win-amd64-cpython-39\torch\fx\interpreter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8395513Z copying build\lib.win-amd64-cpython-39\torch\fx\node.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8401681Z copying build\lib.win-amd64-cpython-39\torch\fx\operator_schemas.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8407953Z creating build\bdist.win-amd64\wheel\torch\fx\passes 2025-08-26T20:11:55.8411330Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\annotate_getitem_nodes.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8416851Z creating build\bdist.win-amd64\wheel\torch\fx\passes\backends 2025-08-26T20:11:55.8420122Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-08-26T20:11:55.8425648Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-08-26T20:11:55.8430173Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect 2025-08-26T20:11:55.8433464Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect\common 2025-08-26T20:11:55.8436733Z 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-08-26T20:11:55.8442114Z 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-08-26T20:11:55.8446727Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect 2025-08-26T20:11:55.8451072Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\fake_tensor_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8456638Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_drawer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8474137Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_manipulation.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8479590Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_transform_observer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8485228Z creating build\bdist.win-amd64\wheel\torch\fx\passes\infra 2025-08-26T20:11:55.8488628Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-08-26T20:11:55.8494617Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-08-26T20:11:55.8500322Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-08-26T20:11:55.8505852Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-08-26T20:11:55.8523128Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\net_min_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8529699Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\operator_support.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8535262Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\param_fetch.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8541176Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8546433Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8556689Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\runtime_assert.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8562594Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\shape_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8573233Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\splitter_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8579349Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_module.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8585494Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8591283Z creating build\bdist.win-amd64\wheel\torch\fx\passes\tests 2025-08-26T20:11:55.8594730Z 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-08-26T20:11:55.8600621Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\tests 2025-08-26T20:11:55.8605101Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tools_common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8611043Z creating build\bdist.win-amd64\wheel\torch\fx\passes\utils 2025-08-26T20:11:55.8625072Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-08-26T20:11:55.8630573Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\fuser_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-08-26T20:11:55.8636203Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\matcher_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-08-26T20:11:55.8642285Z 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-08-26T20:11:55.8659354Z 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-08-26T20:11:55.8664785Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-08-26T20:11:55.8675111Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\_tensorify_python_scalars.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8681007Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-08-26T20:11:55.8686370Z copying build\lib.win-amd64-cpython-39\torch\fx\proxy.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8692769Z copying build\lib.win-amd64-cpython-39\torch\fx\subgraph_rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8698639Z copying build\lib.win-amd64-cpython-39\torch\fx\tensor_type.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8704051Z copying build\lib.win-amd64-cpython-39\torch\fx\traceback.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8709623Z copying build\lib.win-amd64-cpython-39\torch\fx\_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8715335Z copying build\lib.win-amd64-cpython-39\torch\fx\_graph_pickler.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8721371Z copying build\lib.win-amd64-cpython-39\torch\fx\_lazy_graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8730011Z copying build\lib.win-amd64-cpython-39\torch\fx\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8732873Z copying build\lib.win-amd64-cpython-39\torch\fx\_symbolic_trace.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8739602Z copying build\lib.win-amd64-cpython-39\torch\fx\_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8748660Z copying build\lib.win-amd64-cpython-39\torch\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-08-26T20:11:55.8754248Z copying build\lib.win-amd64-cpython-39\torch\hub.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:11:55.8762301Z creating build\bdist.win-amd64\wheel\torch\include 2025-08-26T20:11:55.8764618Z copying build\lib.win-amd64-cpython-39\torch\include\advisor-annotate.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:11:55.8773365Z creating build\bdist.win-amd64\wheel\torch\include\ATen 2025-08-26T20:11:55.8775963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\AccumulateType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8787873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8792948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ATen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8798218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\autocast_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8804119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8820723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8825192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\BlasBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8830438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CachedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8835695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ceil_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8841009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\code_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8846480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CollapseDims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8852369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8857790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8864038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8869891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8876662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8882281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8888533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8894411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8910368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8915638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.8922832Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core 2025-08-26T20:11:55.8926241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\alias_info.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.8931855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.8943293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.8948296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenOpList.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.8964439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_fwd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.8969937Z 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-08-26T20:11:55.8976248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_pch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.8981706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.8987037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.8992767Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing 2025-08-26T20:11:55.8996101Z 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-08-26T20:11:55.9002029Z 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-08-26T20:11:55.9007886Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing\impl 2025-08-26T20:11:55.9011127Z 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-08-26T20:11:55.9016980Z 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-08-26T20:11:55.9022896Z 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-08-26T20:11:55.9029474Z 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-08-26T20:11:55.9046079Z 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-08-26T20:11:55.9051599Z 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-08-26T20:11:55.9068066Z 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-08-26T20:11:55.9073786Z 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-08-26T20:11:55.9079284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\builtin_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9084900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9091013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CheckMemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9096524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\class_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9102136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9107748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9113447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9119022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9124550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9130036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9135477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9141089Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\dispatch 2025-08-26T20:11:55.9144676Z 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-08-26T20:11:55.9150131Z 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-08-26T20:11:55.9156381Z 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-08-26T20:11:55.9162393Z 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-08-26T20:11:55.9178365Z 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-08-26T20:11:55.9184064Z 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-08-26T20:11:55.9189855Z 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-08-26T20:11:55.9195461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DistributionsHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9211620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dynamic_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9217089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_tag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9222256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9227886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9236631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9240108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9245497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function_schema.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9251649Z 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-08-26T20:11:55.9257321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9263085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9268380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\grad_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9284524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9290511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9296634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\interned_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9302186Z 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-08-26T20:11:55.9307641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9313904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9324632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9330199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\jit_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9336533Z 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-08-26T20:11:55.9342547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\LegacyTypeDispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9358983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9365661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9370939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\MT19937RNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9377625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9383041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9387915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\operator_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9394219Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\op_registration 2025-08-26T20:11:55.9397342Z 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-08-26T20:11:55.9402609Z 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-08-26T20:11:55.9408201Z 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-08-26T20:11:55.9413702Z 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-08-26T20:11:55.9430656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PhiloxRNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9436377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonFallbackKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9442067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9447694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\qualified_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9463885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\QuantizerBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9469396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9474753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9479863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\rref_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9485625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9490735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9495999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9501442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\symbol.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9506897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9512307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9518197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9529108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBody.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9558225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TorchDispatchUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9564295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TransformationHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9569569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9574793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_factory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9580256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9594179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9599539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UnsafeFromTH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9605321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\VariableHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9610903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Variadic.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9616301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Vitals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-08-26T20:11:55.9622066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpp_custom_type_hack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:55.9627942Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu 2025-08-26T20:11:55.9631334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\FlushDenormal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-08-26T20:11:55.9636535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-08-26T20:11:55.9642180Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec 2025-08-26T20:11:55.9679355Z 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-08-26T20:11:55.9684881Z 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-08-26T20:11:55.9690588Z 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-08-26T20:11:55.9696504Z 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-08-26T20:11:55.9706907Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\sve 2025-08-26T20:11:55.9710152Z 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-08-26T20:11:55.9715926Z 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-08-26T20:11:55.9721748Z 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-08-26T20:11:55.9728276Z 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-08-26T20:11:55.9744720Z 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-08-26T20:11:55.9750542Z 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-08-26T20:11:55.9756459Z 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-08-26T20:11:55.9762345Z 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-08-26T20:11:55.9767934Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec128 2025-08-26T20:11:55.9771189Z 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-08-26T20:11:55.9776298Z 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-08-26T20:11:55.9786572Z 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-08-26T20:11:55.9792315Z 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-08-26T20:11:55.9808821Z 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-08-26T20:11:55.9814959Z 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-08-26T20:11:55.9820735Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256 2025-08-26T20:11:55.9824094Z 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-08-26T20:11:55.9832606Z 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-08-26T20:11:55.9838084Z 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-08-26T20:11:55.9843800Z 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-08-26T20:11:55.9954720Z 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-08-26T20:11:55.9960050Z 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-08-26T20:11:55.9966211Z 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-08-26T20:11:55.9972181Z 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-08-26T20:11:55.9977746Z 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-08-26T20:11:55.9983339Z 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-08-26T20:11:55.9989180Z 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-08-26T20:11:55.9994738Z 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-08-26T20:11:56.0001535Z 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-08-26T20:11:56.0007755Z 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-08-26T20:11:56.0014545Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\vsx 2025-08-26T20:11:56.0017993Z 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-08-26T20:11:56.0023478Z 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-08-26T20:11:56.0028996Z 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-08-26T20:11:56.0049265Z 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-08-26T20:11:56.0060131Z 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-08-26T20:11:56.0066090Z 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-08-26T20:11:56.0072252Z 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-08-26T20:11:56.0077828Z 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-08-26T20:11:56.0083341Z 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-08-26T20:11:56.0089378Z 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-08-26T20:11:56.0100710Z 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-08-26T20:11:56.0106533Z 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-08-26T20:11:56.0112590Z 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-08-26T20:11:56.0118802Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\zarch 2025-08-26T20:11:56.0122158Z 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-08-26T20:11:56.0129532Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec512 2025-08-26T20:11:56.0132841Z 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-08-26T20:11:56.0138456Z 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-08-26T20:11:56.0145091Z 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-08-26T20:11:56.0151173Z 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-08-26T20:11:56.0168251Z 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-08-26T20:11:56.0173903Z 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-08-26T20:11:56.0179955Z 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-08-26T20:11:56.0186089Z 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-08-26T20:11:56.0193013Z 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-08-26T20:11:56.0200832Z 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-08-26T20:11:56.0207099Z 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-08-26T20:11:56.0214231Z 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-08-26T20:11:56.0221218Z 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-08-26T20:11:56.0227219Z 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-08-26T20:11:56.0233213Z 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-08-26T20:11:56.0238681Z 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-08-26T20:11:56.0244340Z 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-08-26T20:11:56.0250307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vml.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-08-26T20:11:56.0256030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUApplyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0261570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFixedAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0267306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0272540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0278512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0284879Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda 2025-08-26T20:11:56.0288309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0293728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\AsmUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0299017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0304193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Atomic.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0310026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0326883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0336866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0342922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0348147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub_definitions.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0353777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0359571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDABlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0383356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0384333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0385325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContextLight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0386344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADataType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0389304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0394653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0400288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0406533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraph.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0411980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0417690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0433815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0439699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0445208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0454867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0460758Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\detail 2025-08-26T20:11:56.0464071Z 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-08-26T20:11:56.0469716Z 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-08-26T20:11:56.0475092Z 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-08-26T20:11:56.0480590Z 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-08-26T20:11:56.0496952Z 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-08-26T20:11:56.0502073Z 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-08-26T20:11:56.0507110Z 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-08-26T20:11:56.0512764Z 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-08-26T20:11:56.0518549Z 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-08-26T20:11:56.0524062Z 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-08-26T20:11:56.0529868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\DeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0535485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0541178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0546752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0552191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0568051Z 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-08-26T20:11:56.0573391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\NumericLimits.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0579014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PeerToPeerAccess.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0588786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxCudaState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0594132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0600175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0605723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ScanUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0611390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Sleep.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0616880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ThrustAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-08-26T20:11:56.0622359Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\tunable 2025-08-26T20:11:56.0635734Z 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-08-26T20:11:56.0641819Z 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-08-26T20:11:56.0651433Z 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-08-26T20:11:56.0657001Z 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-08-26T20:11:56.0672621Z 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-08-26T20:11:56.0678300Z 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-08-26T20:11:56.0690162Z 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-08-26T20:11:56.0696862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0712216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0722925Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cudnn 2025-08-26T20:11:56.0726435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\cudnn-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-08-26T20:11:56.0731597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-08-26T20:11:56.0736968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-08-26T20:11:56.0742191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handles.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-08-26T20:11:56.0747131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-08-26T20:11:56.0762267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-08-26T20:11:56.0767705Z creating build\bdist.win-amd64\wheel\torch\include\ATen\detail 2025-08-26T20:11:56.0772361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-08-26T20:11:56.0776712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\CUDAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-08-26T20:11:56.0782049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\FunctionTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-08-26T20:11:56.0797818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HIPHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-08-26T20:11:56.0807477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-08-26T20:11:56.0813302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\IPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-08-26T20:11:56.0818780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MAIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-08-26T20:11:56.0824140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MPSHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-08-26T20:11:56.0829617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MTIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-08-26T20:11:56.0835239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-08-26T20:11:56.0840654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\XPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-08-26T20:11:56.0846199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0851247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0856686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0862080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0867533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0877538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0883440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch_v2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0889878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\div_rtn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0894953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DLConvertor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0900510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\dlpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0915850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DynamicLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0921246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0926849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0932414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0938595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0944154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalStorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0949509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalTensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0955958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.0962860Z creating build\bdist.win-amd64\wheel\torch\include\ATen\functorch 2025-08-26T20:11:56.0966359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\ADInterpreters.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.0972001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.0977436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.0993484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.0999215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchRulesHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.1005142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\DynamicLayer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.1010849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.1016415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.1022043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.1027451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.1032848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\PlumbingHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.1038456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\TensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.1044180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\VmapInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-08-26T20:11:56.1049812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FuncTorchTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1065312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1070674Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip 2025-08-26T20:11:56.1074085Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip\impl 2025-08-26T20:11:56.1077536Z 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-08-26T20:11:56.1083259Z 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-08-26T20:11:56.1088989Z 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-08-26T20:11:56.1104944Z 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-08-26T20:11:56.1110640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InferSize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1116189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InitialTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1122032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jiterator_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1127154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jit_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1132350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1137635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1143279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1148790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1175103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1187990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LinalgBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1193541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MapAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1199108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MatrixRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1204579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MemoryOverlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1210198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1216135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1221935Z creating build\bdist.win-amd64\wheel\torch\include\ATen\metal 2025-08-26T20:11:56.1225214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\metal\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\metal 2025-08-26T20:11:56.1230640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1236539Z creating build\bdist.win-amd64\wheel\torch\include\ATen\miopen 2025-08-26T20:11:56.1249839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-08-26T20:11:56.1255352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-08-26T20:11:56.1260690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-08-26T20:11:56.1265932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\miopen-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-08-26T20:11:56.1280900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-08-26T20:11:56.1285876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-08-26T20:11:56.1291316Z creating build\bdist.win-amd64\wheel\torch\include\ATen\mps 2025-08-26T20:11:56.1294693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-08-26T20:11:56.1299987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\IndexKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-08-26T20:11:56.1310238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-08-26T20:11:56.1316167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocatorInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-08-26T20:11:56.1331307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-08-26T20:11:56.1336605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-08-26T20:11:56.1342126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-08-26T20:11:56.1351507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-08-26T20:11:56.1362674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-08-26T20:11:56.1368001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-08-26T20:11:56.1386208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSStream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-08-26T20:11:56.1391602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1397775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.1404848Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native 2025-08-26T20:11:56.1408273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1413994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AdaptivePooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1419285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AmpKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1424762Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse 2025-08-26T20:11:56.1438465Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized 2025-08-26T20:11:56.1441758Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-08-26T20:11:56.1445169Z 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-08-26T20:11:56.1450724Z 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-08-26T20:11:56.1456297Z 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-08-26T20:11:56.1461661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BatchLinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1467147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1472468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1482301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BucketizationUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1488059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CanUse32BitIndexMath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1499541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ComplexHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1505231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1516445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1522136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvolutionMM3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1527326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1534029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1545264Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cpu 2025-08-26T20:11:56.1547818Z 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-08-26T20:11:56.1586182Z 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-08-26T20:11:56.1592232Z 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-08-26T20:11:56.1597542Z 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-08-26T20:11:56.1608165Z 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-08-26T20:11:56.1620079Z 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-08-26T20:11:56.1625782Z 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-08-26T20:11:56.1631357Z 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-08-26T20:11:56.1637133Z 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-08-26T20:11:56.1642897Z 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-08-26T20:11:56.1648820Z 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-08-26T20:11:56.1654271Z 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-08-26T20:11:56.1659923Z 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-08-26T20:11:56.1665458Z 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-08-26T20:11:56.1671205Z 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-08-26T20:11:56.1676384Z 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-08-26T20:11:56.1681337Z 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-08-26T20:11:56.1687164Z 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-08-26T20:11:56.1692422Z 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-08-26T20:11:56.1697954Z 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-08-26T20:11:56.1713713Z 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-08-26T20:11:56.1719256Z 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-08-26T20:11:56.1725208Z 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-08-26T20:11:56.1730753Z 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-08-26T20:11:56.1736369Z 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-08-26T20:11:56.1741778Z 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-08-26T20:11:56.1747318Z 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-08-26T20:11:56.1752971Z 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-08-26T20:11:56.1764527Z 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-08-26T20:11:56.1768393Z 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-08-26T20:11:56.1784769Z 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-08-26T20:11:56.1790440Z 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-08-26T20:11:56.1795631Z 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-08-26T20:11:56.1801249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1806677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1812068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.1818527Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cuda 2025-08-26T20:11:56.1821898Z 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-08-26T20:11:56.1827125Z 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-08-26T20:11:56.1832571Z 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-08-26T20:11:56.1838197Z 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-08-26T20:11:56.1857902Z 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-08-26T20:11:56.1862907Z 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-08-26T20:11:56.1880322Z 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-08-26T20:11:56.1881449Z 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-08-26T20:11:56.1882650Z 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-08-26T20:11:56.1885849Z 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-08-26T20:11:56.1901225Z 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-08-26T20:11:56.1907527Z 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-08-26T20:11:56.1912678Z 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-08-26T20:11:56.1918746Z 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-08-26T20:11:56.1923975Z 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-08-26T20:11:56.1930023Z 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-08-26T20:11:56.1935287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adagrad_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-08-26T20:11:56.1940745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adagrad_utils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-08-26T20:11:56.1946330Z 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-08-26T20:11:56.1962165Z 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-08-26T20:11:56.1967898Z 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-08-26T20:11:56.1973374Z 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-08-26T20:11:56.1988923Z 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-08-26T20:11:56.1994226Z 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-08-26T20:11:56.1999654Z 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-08-26T20:11:56.2005134Z 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-08-26T20:11:56.2010661Z 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-08-26T20:11:56.2016271Z 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-08-26T20:11:56.2031443Z 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-08-26T20:11:56.2036802Z 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-08-26T20:11:56.2042460Z 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-08-26T20:11:56.2048171Z 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-08-26T20:11:56.2053749Z 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-08-26T20:11:56.2059320Z 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-08-26T20:11:56.2064656Z 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-08-26T20:11:56.2070082Z 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-08-26T20:11:56.2077681Z 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-08-26T20:11:56.2083739Z 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-08-26T20:11:56.2089384Z 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-08-26T20:11:56.2105409Z 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-08-26T20:11:56.2113106Z 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-08-26T20:11:56.2118607Z 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-08-26T20:11:56.2123940Z 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-08-26T20:11:56.2129705Z 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-08-26T20:11:56.2135782Z 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-08-26T20:11:56.2141579Z 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-08-26T20:11:56.2147318Z 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-08-26T20:11:56.2152982Z 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-08-26T20:11:56.2158299Z 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-08-26T20:11:56.2163397Z 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-08-26T20:11:56.2168979Z 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-08-26T20:11:56.2185035Z 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-08-26T20:11:56.2190335Z 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-08-26T20:11:56.2195616Z 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-08-26T20:11:56.2201492Z 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-08-26T20:11:56.2207296Z 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-08-26T20:11:56.2212649Z 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-08-26T20:11:56.2218409Z 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-08-26T20:11:56.2224033Z 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-08-26T20:11:56.2229350Z 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-08-26T20:11:56.2234723Z 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-08-26T20:11:56.2264097Z 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-08-26T20:11:56.2266991Z 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-08-26T20:11:56.2272675Z 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-08-26T20:11:56.2278426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DilatedConvolutionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2294049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DispatchStub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2300145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2305417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distributions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2311348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2317333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\EmbeddingBag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2322821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2327948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ForeachUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2333769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FractionalMaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2339203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2344303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2349644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2365353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedSGD.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2370382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2375596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2381507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSamplerUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2387217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2392822Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip 2025-08-26T20:11:56.2396191Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip\bgemm_kernels 2025-08-26T20:11:56.2399691Z 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-08-26T20:11:56.2405450Z 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-08-26T20:11:56.2410739Z 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-08-26T20:11:56.2416030Z 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-08-26T20:11:56.2421062Z 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-08-26T20:11:56.2426481Z 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-08-26T20:11:56.2441179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2446680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2452236Z 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-08-26T20:11:56.2457751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2463181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2468824Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\kleidiai 2025-08-26T20:11:56.2482656Z 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-08-26T20:11:56.2488174Z 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-08-26T20:11:56.2493609Z 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-08-26T20:11:56.2498810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2504386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2509979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2515537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebraUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2522118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LossMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2527777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Math.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2535082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitFallThroughLists.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2540859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitsFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2546403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2552258Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn 2025-08-26T20:11:56.2555698Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu 2025-08-26T20:11:56.2558927Z 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-08-26T20:11:56.2564616Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu\detail 2025-08-26T20:11:56.2568159Z 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-08-26T20:11:56.2574410Z 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-08-26T20:11:56.2580332Z 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-08-26T20:11:56.2585900Z 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-08-26T20:11:56.2591405Z 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-08-26T20:11:56.2596754Z 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-08-26T20:11:56.2616216Z 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-08-26T20:11:56.2621982Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps 2025-08-26T20:11:56.2625323Z 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-08-26T20:11:56.2630809Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\kernels 2025-08-26T20:11:56.2634199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\kernels 2025-08-26T20:11:56.2639644Z 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-08-26T20:11:56.2645236Z 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-08-26T20:11:56.2650613Z 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-08-26T20:11:56.2656079Z 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-08-26T20:11:56.2661556Z 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-08-26T20:11:56.2677038Z 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-08-26T20:11:56.2682899Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\operations 2025-08-26T20:11:56.2686551Z 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-08-26T20:11:56.2692297Z 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-08-26T20:11:56.2697396Z 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-08-26T20:11:56.2712986Z 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-08-26T20:11:56.2718554Z 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-08-26T20:11:56.2732297Z 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-08-26T20:11:56.2738729Z 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-08-26T20:11:56.2744752Z 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-08-26T20:11:56.2751203Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mtia 2025-08-26T20:11:56.2792236Z 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-08-26T20:11:56.2793046Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\nested 2025-08-26T20:11:56.2793914Z 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-08-26T20:11:56.2795104Z 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-08-26T20:11:56.2797712Z 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-08-26T20:11:56.2804439Z 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-08-26T20:11:56.2810556Z 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-08-26T20:11:56.2816440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonEmptyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2821612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonSymbolicBC.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2827489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2832263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Padding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2837765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PixelShuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2843587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PointwiseOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2849115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2854262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.2859716Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized 2025-08-26T20:11:56.2863135Z 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-08-26T20:11:56.2874110Z 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-08-26T20:11:56.2879482Z 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-08-26T20:11:56.2894900Z 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-08-26T20:11:56.2901899Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cpu 2025-08-26T20:11:56.2905342Z 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-08-26T20:11:56.2910867Z 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-08-26T20:11:56.2920645Z 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-08-26T20:11:56.2926339Z 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-08-26T20:11:56.2941462Z 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-08-26T20:11:56.2946850Z 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-08-26T20:11:56.2951913Z 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-08-26T20:11:56.2957632Z 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-08-26T20:11:56.2963017Z 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-08-26T20:11:56.2973883Z 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-08-26T20:11:56.2978968Z 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-08-26T20:11:56.2984326Z 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-08-26T20:11:56.2990163Z 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-08-26T20:11:56.2999821Z 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-08-26T20:11:56.3005310Z 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-08-26T20:11:56.3010523Z 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-08-26T20:11:56.3016080Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cudnn 2025-08-26T20:11:56.3019378Z 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-08-26T20:11:56.3024870Z 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-08-26T20:11:56.3030544Z 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-08-26T20:11:56.3043967Z 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-08-26T20:11:56.3049194Z 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-08-26T20:11:56.3054810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3060340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3083969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceAllOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3089396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3095036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3101178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReductionType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3106938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3112431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3118025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ResizeCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3123638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RNN.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3129456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ScatterGatherChecks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3135107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SegmentReduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3140778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SharedReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3155857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SobolEngineOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3161410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Sorting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3166977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SortingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3172593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SparseTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3178249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SpectralOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3183839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\StridedRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3189562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3195283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3201589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorCompare.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3217730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorConversions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3223621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorDimApply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3229360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3235014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3240545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3246304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3251841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorShape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3257673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorTransformations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3270654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TopKImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3271418Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers 2025-08-26T20:11:56.3273792Z 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-08-26T20:11:56.3279751Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda 2025-08-26T20:11:56.3283157Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\flash_attn 2025-08-26T20:11:56.3286706Z 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-08-26T20:11:56.3292369Z 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-08-26T20:11:56.3298384Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-08-26T20:11:56.3301923Z 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-08-26T20:11:56.3341263Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-08-26T20:11:56.3344895Z 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-08-26T20:11:56.3350966Z 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-08-26T20:11:56.3356919Z 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-08-26T20:11:56.3367954Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-08-26T20:11:56.3371419Z 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-08-26T20:11:56.3376996Z 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-08-26T20:11:56.3382527Z 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-08-26T20:11:56.3388539Z 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-08-26T20:11:56.3403650Z 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-08-26T20:11:56.3409635Z 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-08-26T20:11:56.3415135Z 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-08-26T20:11:56.3422265Z 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-08-26T20:11:56.3437612Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-08-26T20:11:56.3441333Z 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-08-26T20:11:56.3447136Z 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-08-26T20:11:56.3453104Z 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-08-26T20:11:56.3469175Z 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-08-26T20:11:56.3475952Z 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-08-26T20:11:56.3482684Z 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-08-26T20:11:56.3488468Z 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-08-26T20:11:56.3494019Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-08-26T20:11:56.3497533Z 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-08-26T20:11:56.3511000Z 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-08-26T20:11:56.3517000Z 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-08-26T20:11:56.3524224Z 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-08-26T20:11:56.3530769Z 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-08-26T20:11:56.3536370Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-08-26T20:11:56.3540009Z 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-08-26T20:11:56.3545460Z 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-08-26T20:11:56.3551119Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip 2025-08-26T20:11:56.3554411Z 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-08-26T20:11:56.3559968Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn 2025-08-26T20:11:56.3563312Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-08-26T20:11:56.3566799Z 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-08-26T20:11:56.3572332Z 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-08-26T20:11:56.3578324Z 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-08-26T20:11:56.3593475Z 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-08-26T20:11:56.3599352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TransposeType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3604657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TriangularOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3610475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3615851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3621121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3626377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3631768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnfoldBackward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3637234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3643248Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\utils 2025-08-26T20:11:56.3646637Z 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-08-26T20:11:56.3657874Z 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-08-26T20:11:56.3663298Z 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-08-26T20:11:56.3668904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\verbose_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3674216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\vol2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-08-26T20:11:56.3680355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.3687545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.3694624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NestedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.3699821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NumericUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.3705385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpaqueTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.3710840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Operators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.3717358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpMathType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:11:56.3870066Z creating build\bdist.win-amd64\wheel\torch\include\ATen\ops 2025-08-26T20:11:56.3873380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.3878782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.3884587Z 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-08-26T20:11:56.3889985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.3905405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.3911072Z 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-08-26T20:11:56.3916530Z 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-08-26T20:11:56.3922096Z 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-08-26T20:11:56.3927540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.3932918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.3938160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.3943452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.3949119Z 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-08-26T20:11:56.3954371Z 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-08-26T20:11:56.3959684Z 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-08-26T20:11:56.3965425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.3970855Z 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-08-26T20:11:56.3976305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.3981938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.3988141Z 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-08-26T20:11:56.4003604Z 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-08-26T20:11:56.4009116Z 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-08-26T20:11:56.4014488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4019975Z 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-08-26T20:11:56.4025503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4030880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4036130Z 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-08-26T20:11:56.4041966Z 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-08-26T20:11:56.4047721Z 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-08-26T20:11:56.4062250Z 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-08-26T20:11:56.4067950Z 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-08-26T20:11:56.4073676Z 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-08-26T20:11:56.4079881Z 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-08-26T20:11:56.4085602Z 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-08-26T20:11:56.4091526Z 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-08-26T20:11:56.4101556Z 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-08-26T20:11:56.4107744Z 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-08-26T20:11:56.4123430Z 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-08-26T20:11:56.4129260Z 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-08-26T20:11:56.4135086Z 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-08-26T20:11:56.4140925Z 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-08-26T20:11:56.4146675Z 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-08-26T20:11:56.4152905Z 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-08-26T20:11:56.4158806Z 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-08-26T20:11:56.4164459Z 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-08-26T20:11:56.4170357Z 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-08-26T20:11:56.4176154Z 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-08-26T20:11:56.4181867Z 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-08-26T20:11:56.4206685Z 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-08-26T20:11:56.4212826Z 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-08-26T20:11:56.4218490Z 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-08-26T20:11:56.4223937Z 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-08-26T20:11:56.4229686Z 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-08-26T20:11:56.4235509Z 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-08-26T20:11:56.4241758Z 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-08-26T20:11:56.4252866Z 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-08-26T20:11:56.4258794Z 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-08-26T20:11:56.4264676Z 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-08-26T20:11:56.4270654Z 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-08-26T20:11:56.4288565Z 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-08-26T20:11:56.4294576Z 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-08-26T20:11:56.4300806Z 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-08-26T20:11:56.4306663Z 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-08-26T20:11:56.4312678Z 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-08-26T20:11:56.4317222Z 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-08-26T20:11:56.4323733Z 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-08-26T20:11:56.4339788Z 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-08-26T20:11:56.4344310Z 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-08-26T20:11:56.4349971Z 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-08-26T20:11:56.4355727Z 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-08-26T20:11:56.4362335Z 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-08-26T20:11:56.4377957Z 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-08-26T20:11:56.4383690Z 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-08-26T20:11:56.4389304Z 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-08-26T20:11:56.4395037Z 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-08-26T20:11:56.4400687Z 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-08-26T20:11:56.4406483Z 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-08-26T20:11:56.4412862Z 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-08-26T20:11:56.4418433Z 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-08-26T20:11:56.4431061Z 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-08-26T20:11:56.4436737Z 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-08-26T20:11:56.4442526Z 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-08-26T20:11:56.4448445Z 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-08-26T20:11:56.4454267Z 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-08-26T20:11:56.4459758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4465062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4470506Z 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-08-26T20:11:56.4475962Z 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-08-26T20:11:56.4481497Z 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-08-26T20:11:56.4487099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4492781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4498640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4504333Z 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-08-26T20:11:56.4509795Z 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-08-26T20:11:56.4515373Z 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-08-26T20:11:56.4531197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4536755Z 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-08-26T20:11:56.4542348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4548028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4559376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4565000Z 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-08-26T20:11:56.4570570Z 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-08-26T20:11:56.4576098Z 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-08-26T20:11:56.4581597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4587230Z 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-08-26T20:11:56.4592936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4598812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4604325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4610141Z 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-08-26T20:11:56.4615556Z 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-08-26T20:11:56.4621115Z 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-08-26T20:11:56.4626707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4632468Z 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-08-26T20:11:56.4638076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4643919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4649629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4655307Z 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-08-26T20:11:56.4671414Z 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-08-26T20:11:56.4677021Z 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-08-26T20:11:56.4682485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4688179Z 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-08-26T20:11:56.4693712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4699412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4712297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4717865Z 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-08-26T20:11:56.4723888Z 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-08-26T20:11:56.4729725Z 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-08-26T20:11:56.4735985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4741765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4747746Z 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-08-26T20:11:56.4753627Z 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-08-26T20:11:56.4759293Z 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-08-26T20:11:56.4764981Z 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-08-26T20:11:56.4770693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4777894Z 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-08-26T20:11:56.4782070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4821529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4822452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4823521Z 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-08-26T20:11:56.4824681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4825632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4826772Z 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-08-26T20:11:56.4827841Z 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-08-26T20:11:56.4832316Z 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-08-26T20:11:56.4838205Z 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-08-26T20:11:56.4844054Z 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-08-26T20:11:56.4850219Z 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-08-26T20:11:56.4872840Z 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-08-26T20:11:56.4877867Z 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-08-26T20:11:56.4883493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4889238Z 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-08-26T20:11:56.4894671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4900628Z 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-08-26T20:11:56.4906520Z 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-08-26T20:11:56.4912054Z 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-08-26T20:11:56.4917449Z 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-08-26T20:11:56.4923318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4929156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4934385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4939771Z 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-08-26T20:11:56.4945207Z 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-08-26T20:11:56.4950453Z 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-08-26T20:11:56.4956210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4962215Z 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-08-26T20:11:56.4968418Z 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-08-26T20:11:56.4980140Z 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-08-26T20:11:56.4985352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.4990698Z 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-08-26T20:11:56.4996146Z 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-08-26T20:11:56.5001700Z 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-08-26T20:11:56.5007215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5012564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5018326Z 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-08-26T20:11:56.5023782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5028973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5034856Z 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-08-26T20:11:56.5040330Z 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-08-26T20:11:56.5046091Z 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-08-26T20:11:56.5051669Z 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-08-26T20:11:56.5057283Z 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-08-26T20:11:56.5062810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5068457Z 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-08-26T20:11:56.5073945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5079667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5085322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5091348Z 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-08-26T20:11:56.5097417Z 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-08-26T20:11:56.5113842Z 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-08-26T20:11:56.5119421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5125347Z 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-08-26T20:11:56.5132063Z 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-08-26T20:11:56.5137700Z 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-08-26T20:11:56.5143409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5149136Z 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-08-26T20:11:56.5154995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5160596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5199713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5205111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5211297Z 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-08-26T20:11:56.5216826Z 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-08-26T20:11:56.5222511Z 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-08-26T20:11:56.5228153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5234096Z 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-08-26T20:11:56.5239868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5245791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5252059Z 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-08-26T20:11:56.5257466Z 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-08-26T20:11:56.5263290Z 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-08-26T20:11:56.5268996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5289391Z 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-08-26T20:11:56.5291154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5296891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5302348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5308235Z 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-08-26T20:11:56.5313912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5319356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5324919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5330453Z 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-08-26T20:11:56.5336340Z 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-08-26T20:11:56.5342119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5347548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5353188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5358891Z 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-08-26T20:11:56.5364499Z 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-08-26T20:11:56.5371602Z 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-08-26T20:11:56.5376144Z 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-08-26T20:11:56.5381646Z 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-08-26T20:11:56.5393383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5398763Z 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-08-26T20:11:56.5404255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5409832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5421756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5427599Z 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-08-26T20:11:56.5433150Z 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-08-26T20:11:56.5439178Z 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-08-26T20:11:56.5444804Z 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-08-26T20:11:56.5450527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5456127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5461943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5467221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5472936Z 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-08-26T20:11:56.5478406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5484115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5490091Z 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-08-26T20:11:56.5495569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5501149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5506727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5512093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5517675Z 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-08-26T20:11:56.5523485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5529042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5534877Z 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-08-26T20:11:56.5541188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5551459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5557009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5562269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5567987Z 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-08-26T20:11:56.5573727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5579576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5585227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5591056Z 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-08-26T20:11:56.5596710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5602441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5608528Z 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-08-26T20:11:56.5614159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5620704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5626427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5632336Z 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-08-26T20:11:56.5637937Z 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-08-26T20:11:56.5643687Z 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-08-26T20:11:56.5649616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5655521Z 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-08-26T20:11:56.5667315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5669808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5675887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5688210Z 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-08-26T20:11:56.5693857Z 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-08-26T20:11:56.5699671Z 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-08-26T20:11:56.5705415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5711122Z 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-08-26T20:11:56.5717048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5722829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5729003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5734866Z 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-08-26T20:11:56.5740588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5746251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5751917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5757460Z 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-08-26T20:11:56.5763338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5768996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5774636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5780174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5786719Z 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-08-26T20:11:56.5793109Z 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-08-26T20:11:56.5799881Z 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-08-26T20:11:56.5810443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5816224Z 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-08-26T20:11:56.5822102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5827881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5833826Z 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-08-26T20:11:56.5839453Z 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-08-26T20:11:56.5845034Z 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-08-26T20:11:56.5850729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5856335Z 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-08-26T20:11:56.5862064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5867519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5873014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5879659Z 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-08-26T20:11:56.5885208Z 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-08-26T20:11:56.5891496Z 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-08-26T20:11:56.5897285Z 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-08-26T20:11:56.5903076Z 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-08-26T20:11:56.5924753Z 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-08-26T20:11:56.5930506Z 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-08-26T20:11:56.5936218Z 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-08-26T20:11:56.5941982Z 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-08-26T20:11:56.5947745Z 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-08-26T20:11:56.5953717Z 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-08-26T20:11:56.5959536Z 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-08-26T20:11:56.5965837Z 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-08-26T20:11:56.5971801Z 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-08-26T20:11:56.5977540Z 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-08-26T20:11:56.5983320Z 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-08-26T20:11:56.5989244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.5994667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6001082Z 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-08-26T20:11:56.6006669Z 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-08-26T20:11:56.6012544Z 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-08-26T20:11:56.6018249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6024065Z 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-08-26T20:11:56.6029930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6035778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6041580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6047636Z 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-08-26T20:11:56.6053199Z 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-08-26T20:11:56.6058925Z 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-08-26T20:11:56.6064704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6070258Z 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-08-26T20:11:56.6076002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6081894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6088107Z 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-08-26T20:11:56.6098986Z 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-08-26T20:11:56.6104650Z 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-08-26T20:11:56.6110283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6115972Z 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-08-26T20:11:56.6121781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6127420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6133040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6138984Z 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-08-26T20:11:56.6144602Z 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-08-26T20:11:56.6149970Z 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-08-26T20:11:56.6155613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6161722Z 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-08-26T20:11:56.6168038Z 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-08-26T20:11:56.6174056Z 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-08-26T20:11:56.6180122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6185898Z 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-08-26T20:11:56.6191592Z 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-08-26T20:11:56.6197074Z 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-08-26T20:11:56.6202714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6208705Z 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-08-26T20:11:56.6214629Z 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-08-26T20:11:56.6220243Z 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-08-26T20:11:56.6232458Z 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-08-26T20:11:56.6238198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6244160Z 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-08-26T20:11:56.6250976Z 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-08-26T20:11:56.6256522Z 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-08-26T20:11:56.6262217Z 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-08-26T20:11:56.6268315Z 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-08-26T20:11:56.6273764Z 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-08-26T20:11:56.6280037Z 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-08-26T20:11:56.6285875Z 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-08-26T20:11:56.6292650Z 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-08-26T20:11:56.6298077Z 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-08-26T20:11:56.6303730Z 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-08-26T20:11:56.6309381Z 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-08-26T20:11:56.6315274Z 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-08-26T20:11:56.6320848Z 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-08-26T20:11:56.6326764Z 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-08-26T20:11:56.6332346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6338251Z 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-08-26T20:11:56.6344269Z 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-08-26T20:11:56.6349972Z 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-08-26T20:11:56.6355736Z 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-08-26T20:11:56.6368215Z 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-08-26T20:11:56.6373956Z 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-08-26T20:11:56.6379919Z 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-08-26T20:11:56.6397434Z 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-08-26T20:11:56.6408580Z 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-08-26T20:11:56.6414101Z 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-08-26T20:11:56.6419850Z 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-08-26T20:11:56.6425482Z 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-08-26T20:11:56.6431343Z 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-08-26T20:11:56.6437448Z 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-08-26T20:11:56.6442963Z 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-08-26T20:11:56.6448857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6454500Z 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-08-26T20:11:56.6459897Z 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-08-26T20:11:56.6465522Z 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-08-26T20:11:56.6471192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6477216Z 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-08-26T20:11:56.6483185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6488899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6494559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6500401Z 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-08-26T20:11:56.6506127Z 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-08-26T20:11:56.6511752Z 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-08-26T20:11:56.6517319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6523102Z 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-08-26T20:11:56.6529021Z 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-08-26T20:11:56.6534612Z 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-08-26T20:11:56.6540253Z 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-08-26T20:11:56.6546189Z 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-08-26T20:11:56.6551847Z 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-08-26T20:11:56.6557734Z 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-08-26T20:11:56.6563373Z 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-08-26T20:11:56.6569239Z 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-08-26T20:11:56.6574913Z 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-08-26T20:11:56.6580684Z 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-08-26T20:11:56.6586925Z 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-08-26T20:11:56.6593048Z 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-08-26T20:11:56.6598889Z 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-08-26T20:11:56.6604731Z 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-08-26T20:11:56.6610874Z 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-08-26T20:11:56.6616596Z 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-08-26T20:11:56.6622736Z 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-08-26T20:11:56.6628711Z 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-08-26T20:11:56.6635089Z 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-08-26T20:11:56.6640817Z 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-08-26T20:11:56.6647104Z 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-08-26T20:11:56.6652999Z 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-08-26T20:11:56.6659075Z 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-08-26T20:11:56.6665122Z 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-08-26T20:11:56.6671218Z 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-08-26T20:11:56.6677557Z 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-08-26T20:11:56.6683565Z 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-08-26T20:11:56.6689674Z 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-08-26T20:11:56.6695585Z 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-08-26T20:11:56.6701814Z 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-08-26T20:11:56.6707651Z 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-08-26T20:11:56.6713606Z 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-08-26T20:11:56.6720177Z 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-08-26T20:11:56.6726082Z 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-08-26T20:11:56.6732491Z 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-08-26T20:11:56.6738199Z 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-08-26T20:11:56.6744322Z 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-08-26T20:11:56.6750293Z 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-08-26T20:11:56.6756218Z 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-08-26T20:11:56.6762076Z 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-08-26T20:11:56.6768262Z 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-08-26T20:11:56.6774365Z 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-08-26T20:11:56.6813787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6820000Z 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-08-26T20:11:56.6825877Z 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-08-26T20:11:56.6831784Z 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-08-26T20:11:56.6837716Z 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-08-26T20:11:56.6854399Z 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-08-26T20:11:56.6860101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6865794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6871399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6877111Z 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-08-26T20:11:56.6882567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6887990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6894077Z 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-08-26T20:11:56.6899569Z 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-08-26T20:11:56.6905379Z 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-08-26T20:11:56.6911084Z 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-08-26T20:11:56.6916768Z 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-08-26T20:11:56.6922413Z 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-08-26T20:11:56.6928123Z 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-08-26T20:11:56.6934121Z 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-08-26T20:11:56.6939908Z 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-08-26T20:11:56.6945722Z 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-08-26T20:11:56.6951834Z 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-08-26T20:11:56.6957930Z 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-08-26T20:11:56.6963596Z 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-08-26T20:11:56.6970064Z 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-08-26T20:11:56.6975573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.6981192Z 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-08-26T20:11:56.6986741Z 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-08-26T20:11:56.6992389Z 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-08-26T20:11:56.6997889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7003521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7009506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7015276Z 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-08-26T20:11:56.7020883Z 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-08-26T20:11:56.7026400Z 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-08-26T20:11:56.7031846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7037447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7043013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7049123Z 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-08-26T20:11:56.7054965Z 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-08-26T20:11:56.7060463Z 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-08-26T20:11:56.7066225Z 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-08-26T20:11:56.7071790Z 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-08-26T20:11:56.7077578Z 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-08-26T20:11:56.7083137Z 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-08-26T20:11:56.7089197Z 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-08-26T20:11:56.7094841Z 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-08-26T20:11:56.7101102Z 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-08-26T20:11:56.7107019Z 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-08-26T20:11:56.7112755Z 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-08-26T20:11:56.7118617Z 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-08-26T20:11:56.7124658Z 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-08-26T20:11:56.7130695Z 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-08-26T20:11:56.7136477Z 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-08-26T20:11:56.7142491Z 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-08-26T20:11:56.7148393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7154526Z 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-08-26T20:11:56.7160378Z 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-08-26T20:11:56.7166247Z 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-08-26T20:11:56.7171933Z 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-08-26T20:11:56.7188583Z 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-08-26T20:11:56.7195156Z 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-08-26T20:11:56.7200798Z 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-08-26T20:11:56.7206710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7213979Z 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-08-26T20:11:56.7219919Z 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-08-26T20:11:56.7225981Z 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-08-26T20:11:56.7232293Z 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-08-26T20:11:56.7238218Z 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-08-26T20:11:56.7244468Z 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-08-26T20:11:56.7250359Z 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-08-26T20:11:56.7256335Z 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-08-26T20:11:56.7262295Z 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-08-26T20:11:56.7268517Z 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-08-26T20:11:56.7274429Z 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-08-26T20:11:56.7280281Z 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-08-26T20:11:56.7286267Z 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-08-26T20:11:56.7300175Z 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-08-26T20:11:56.7301270Z 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-08-26T20:11:56.7320183Z 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-08-26T20:11:56.7321250Z 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-08-26T20:11:56.7322245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7325939Z 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-08-26T20:11:56.7332171Z 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-08-26T20:11:56.7337982Z 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-08-26T20:11:56.7343986Z 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-08-26T20:11:56.7348321Z 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-08-26T20:11:56.7355870Z 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-08-26T20:11:56.7360325Z 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-08-26T20:11:56.7376104Z 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-08-26T20:11:56.7377122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7378287Z 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-08-26T20:11:56.7383694Z 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-08-26T20:11:56.7389645Z 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-08-26T20:11:56.7395331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7401312Z 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-08-26T20:11:56.7407016Z 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-08-26T20:11:56.7412957Z 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-08-26T20:11:56.7418510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7424242Z 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-08-26T20:11:56.7429657Z 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-08-26T20:11:56.7435130Z 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-08-26T20:11:56.7440654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7446019Z 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-08-26T20:11:56.7451716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7457343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7462722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7468470Z 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-08-26T20:11:56.7474029Z 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-08-26T20:11:56.7479506Z 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-08-26T20:11:56.7485117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7491254Z 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-08-26T20:11:56.7496993Z 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-08-26T20:11:56.7502496Z 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-08-26T20:11:56.7508091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7513863Z 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-08-26T20:11:56.7519354Z 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-08-26T20:11:56.7525129Z 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-08-26T20:11:56.7530849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7536712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7542320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7547737Z 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-08-26T20:11:56.7553309Z 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-08-26T20:11:56.7558600Z 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-08-26T20:11:56.7564427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7570094Z 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-08-26T20:11:56.7575646Z 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-08-26T20:11:56.7581141Z 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-08-26T20:11:56.7586701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7592442Z 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-08-26T20:11:56.7604723Z 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-08-26T20:11:56.7610529Z 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-08-26T20:11:56.7616267Z 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-08-26T20:11:56.7621996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7627726Z 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-08-26T20:11:56.7633488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7639223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7644754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7650676Z 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-08-26T20:11:56.7656330Z 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-08-26T20:11:56.7662245Z 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-08-26T20:11:56.7668085Z 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-08-26T20:11:56.7687332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7693055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7698870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7704573Z 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-08-26T20:11:56.7710284Z 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-08-26T20:11:56.7716476Z 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-08-26T20:11:56.7722394Z 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-08-26T20:11:56.7728467Z 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-08-26T20:11:56.7734474Z 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-08-26T20:11:56.7740700Z 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-08-26T20:11:56.7746255Z 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-08-26T20:11:56.7751886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7757577Z 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-08-26T20:11:56.7763161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7768893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7774547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7780516Z 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-08-26T20:11:56.7786032Z 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-08-26T20:11:56.7791798Z 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-08-26T20:11:56.7797573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7819129Z 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-08-26T20:11:56.7820116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7821055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7822649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7828418Z 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-08-26T20:11:56.7834025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7839658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7845245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7851141Z 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-08-26T20:11:56.7856924Z 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-08-26T20:11:56.7862405Z 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-08-26T20:11:56.7868234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7873892Z 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-08-26T20:11:56.7879539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7884801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7890499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7896320Z 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-08-26T20:11:56.7902451Z 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-08-26T20:11:56.7908036Z 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-08-26T20:11:56.7913709Z 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-08-26T20:11:56.7919325Z 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-08-26T20:11:56.7924843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7930342Z 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-08-26T20:11:56.7935863Z 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-08-26T20:11:56.7941603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7947351Z 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-08-26T20:11:56.7953439Z 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-08-26T20:11:56.7959269Z 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-08-26T20:11:56.7964888Z 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-08-26T20:11:56.7970718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7976273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7981833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.7987971Z 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-08-26T20:11:56.7993538Z 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-08-26T20:11:56.7999155Z 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-08-26T20:11:56.8004762Z 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-08-26T20:11:56.8010806Z 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-08-26T20:11:56.8016306Z 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-08-26T20:11:56.8022200Z 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-08-26T20:11:56.8027769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8033375Z 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-08-26T20:11:56.8038933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8044442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8050143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8055766Z 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-08-26T20:11:56.8061485Z 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-08-26T20:11:56.8067193Z 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-08-26T20:11:56.8072813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8078926Z 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-08-26T20:11:56.8085474Z 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-08-26T20:11:56.8091683Z 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-08-26T20:11:56.8097411Z 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-08-26T20:11:56.8103400Z 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-08-26T20:11:56.8109084Z 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-08-26T20:11:56.8114843Z 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-08-26T20:11:56.8120521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8126343Z 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-08-26T20:11:56.8132113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8142766Z 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-08-26T20:11:56.8148924Z 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-08-26T20:11:56.8154871Z 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-08-26T20:11:56.8160594Z 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-08-26T20:11:56.8167000Z 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-08-26T20:11:56.8172679Z 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-08-26T20:11:56.8182244Z 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-08-26T20:11:56.8187968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8193647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8199418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8205337Z 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-08-26T20:11:56.8210918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8216665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8222056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8227667Z 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-08-26T20:11:56.8233273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8238982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8244535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8250228Z 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-08-26T20:11:56.8256802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8263460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8268930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8274409Z 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-08-26T20:11:56.8280223Z 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-08-26T20:11:56.8286660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8292076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8298075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8309374Z 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-08-26T20:11:56.8315308Z 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-08-26T20:11:56.8321672Z 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-08-26T20:11:56.8327717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8333364Z 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-08-26T20:11:56.8339143Z 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-08-26T20:11:56.8345870Z 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-08-26T20:11:56.8351794Z 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-08-26T20:11:56.8389162Z 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-08-26T20:11:56.8395100Z 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-08-26T20:11:56.8400747Z 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-08-26T20:11:56.8406232Z 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-08-26T20:11:56.8412037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8418150Z 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-08-26T20:11:56.8423699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8429234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8434675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8440254Z 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-08-26T20:11:56.8445740Z 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-08-26T20:11:56.8451328Z 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-08-26T20:11:56.8457170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8462751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8468388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8473701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8479740Z 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-08-26T20:11:56.8491067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8496595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8502388Z 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-08-26T20:11:56.8508053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8513616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8519198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8524510Z 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-08-26T20:11:56.8530024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8535292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8540556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8546385Z 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-08-26T20:11:56.8552429Z 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-08-26T20:11:56.8557944Z 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-08-26T20:11:56.8563573Z 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-08-26T20:11:56.8569467Z 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-08-26T20:11:56.8575500Z 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-08-26T20:11:56.8581343Z 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-08-26T20:11:56.8587128Z 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-08-26T20:11:56.8592849Z 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-08-26T20:11:56.8598407Z 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-08-26T20:11:56.8604491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8618804Z 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-08-26T20:11:56.8624588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8629827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8635644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8641458Z 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-08-26T20:11:56.8647171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8652838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8658575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8664441Z 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-08-26T20:11:56.8669991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8676139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8688022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8693955Z 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-08-26T20:11:56.8699422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8705198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8710909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8716637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8722756Z 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-08-26T20:11:56.8728869Z 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-08-26T20:11:56.8735480Z 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-08-26T20:11:56.8743079Z 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-08-26T20:11:56.8749721Z 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-08-26T20:11:56.8755953Z 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-08-26T20:11:56.8761875Z 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-08-26T20:11:56.8767903Z 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-08-26T20:11:56.8774011Z 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-08-26T20:11:56.8779798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8790371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8796281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8816993Z 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-08-26T20:11:56.8818327Z 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-08-26T20:11:56.8819425Z 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-08-26T20:11:56.8822814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8828993Z 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-08-26T20:11:56.8834912Z 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-08-26T20:11:56.8840917Z 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-08-26T20:11:56.8846116Z 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-08-26T20:11:56.8852100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8857553Z 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-08-26T20:11:56.8863470Z 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-08-26T20:11:56.8869195Z 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-08-26T20:11:56.8875015Z 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-08-26T20:11:56.8880817Z 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-08-26T20:11:56.8891907Z 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-08-26T20:11:56.8898972Z 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-08-26T20:11:56.8903804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8909861Z 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-08-26T20:11:56.8915436Z 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-08-26T20:11:56.8921084Z 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-08-26T20:11:56.8927496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8933428Z 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-08-26T20:11:56.8939212Z 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-08-26T20:11:56.8945997Z 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-08-26T20:11:56.8951879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8959368Z 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-08-26T20:11:56.8966306Z 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-08-26T20:11:56.8972092Z 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-08-26T20:11:56.8977846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8983178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.8989071Z 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-08-26T20:11:56.8994772Z 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-08-26T20:11:56.9000298Z 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-08-26T20:11:56.9006124Z 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-08-26T20:11:56.9011810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9017800Z 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-08-26T20:11:56.9023524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9029129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9035763Z 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-08-26T20:11:56.9041356Z 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-08-26T20:11:56.9047092Z 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-08-26T20:11:56.9052842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9059788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9066749Z 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-08-26T20:11:56.9075423Z 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-08-26T20:11:56.9082585Z 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-08-26T20:11:56.9090004Z 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-08-26T20:11:56.9098437Z 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-08-26T20:11:56.9105628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9112557Z 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-08-26T20:11:56.9119405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9126282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9134514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9141289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9148427Z 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-08-26T20:11:56.9155230Z 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-08-26T20:11:56.9162385Z 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-08-26T20:11:56.9171056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9178040Z 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-08-26T20:11:56.9184752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9191655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9199645Z 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-08-26T20:11:56.9207352Z 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-08-26T20:11:56.9214485Z 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-08-26T20:11:56.9221799Z 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-08-26T20:11:56.9230130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9237712Z 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-08-26T20:11:56.9244879Z 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-08-26T20:11:56.9253060Z 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-08-26T20:11:56.9260564Z 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-08-26T20:11:56.9267488Z 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-08-26T20:11:56.9274682Z 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-08-26T20:11:56.9282759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9289520Z 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-08-26T20:11:56.9300286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9306051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9312032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9319358Z 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-08-26T20:11:56.9325107Z 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-08-26T20:11:56.9331160Z 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-08-26T20:11:56.9337187Z 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-08-26T20:11:56.9343201Z 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-08-26T20:11:56.9348233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9354368Z 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-08-26T20:11:56.9359382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9364854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9370771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9376446Z 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-08-26T20:11:56.9381760Z 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-08-26T20:11:56.9387819Z 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-08-26T20:11:56.9393290Z 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-08-26T20:11:56.9398891Z 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-08-26T20:11:56.9404924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9410819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9426446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9432048Z 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-08-26T20:11:56.9437460Z 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-08-26T20:11:56.9443589Z 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-08-26T20:11:56.9449446Z 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-08-26T20:11:56.9456338Z 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-08-26T20:11:56.9461054Z 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-08-26T20:11:56.9466730Z 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-08-26T20:11:56.9472151Z 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-08-26T20:11:56.9477667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9483486Z 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-08-26T20:11:56.9489045Z 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-08-26T20:11:56.9494585Z 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-08-26T20:11:56.9500519Z 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-08-26T20:11:56.9526515Z 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-08-26T20:11:56.9532481Z 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-08-26T20:11:56.9538661Z 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-08-26T20:11:56.9544387Z 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-08-26T20:11:56.9550430Z 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-08-26T20:11:56.9557893Z 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-08-26T20:11:56.9562963Z 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-08-26T20:11:56.9568687Z 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-08-26T20:11:56.9574408Z 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-08-26T20:11:56.9580352Z 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-08-26T20:11:56.9586290Z 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-08-26T20:11:56.9592361Z 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-08-26T20:11:56.9598234Z 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-08-26T20:11:56.9603894Z 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-08-26T20:11:56.9609799Z 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-08-26T20:11:56.9615598Z 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-08-26T20:11:56.9621519Z 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-08-26T20:11:56.9627280Z 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-08-26T20:11:56.9633209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9639028Z 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-08-26T20:11:56.9645569Z 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-08-26T20:11:56.9651363Z 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-08-26T20:11:56.9658417Z 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-08-26T20:11:56.9663291Z 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-08-26T20:11:56.9669190Z 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-08-26T20:11:56.9674829Z 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-08-26T20:11:56.9680657Z 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-08-26T20:11:56.9686623Z 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-08-26T20:11:56.9692673Z 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-08-26T20:11:56.9698702Z 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-08-26T20:11:56.9705091Z 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-08-26T20:11:56.9710842Z 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-08-26T20:11:56.9717149Z 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-08-26T20:11:56.9723881Z 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-08-26T20:11:56.9730084Z 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-08-26T20:11:56.9736005Z 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-08-26T20:11:56.9741721Z 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-08-26T20:11:56.9747410Z 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-08-26T20:11:56.9753141Z 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-08-26T20:11:56.9759814Z 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-08-26T20:11:56.9765868Z 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-08-26T20:11:56.9771943Z 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-08-26T20:11:56.9777868Z 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-08-26T20:11:56.9783925Z 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-08-26T20:11:56.9789935Z 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-08-26T20:11:56.9795947Z 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-08-26T20:11:56.9801843Z 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-08-26T20:11:56.9843129Z 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-08-26T20:11:56.9844313Z 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-08-26T20:11:56.9845581Z 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-08-26T20:11:56.9846621Z 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-08-26T20:11:56.9850735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9856629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9862798Z 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-08-26T20:11:56.9868671Z 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-08-26T20:11:56.9873937Z 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-08-26T20:11:56.9880057Z 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-08-26T20:11:56.9886033Z 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-08-26T20:11:56.9891845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9897571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9903358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9908967Z 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-08-26T20:11:56.9914647Z 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-08-26T20:11:56.9920172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9926018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9931623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9943935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9949900Z 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-08-26T20:11:56.9955404Z 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-08-26T20:11:56.9960969Z 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-08-26T20:11:56.9967005Z 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-08-26T20:11:56.9972797Z 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-08-26T20:11:56.9978712Z 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-08-26T20:11:56.9984383Z 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-08-26T20:11:56.9990085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:56.9995851Z 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-08-26T20:11:57.0001448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0007589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0013245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0019167Z 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-08-26T20:11:57.0025013Z 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-08-26T20:11:57.0061278Z 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-08-26T20:11:57.0067046Z 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-08-26T20:11:57.0072529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0078256Z 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-08-26T20:11:57.0084177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0089967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0095937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0101903Z 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-08-26T20:11:57.0107489Z 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-08-26T20:11:57.0113838Z 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-08-26T20:11:57.0119537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0125054Z 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-08-26T20:11:57.0130822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0136381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0141824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0147571Z 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-08-26T20:11:57.0153095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0158936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0164707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0170716Z 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-08-26T20:11:57.0176318Z 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-08-26T20:11:57.0182121Z 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-08-26T20:11:57.0187720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0230817Z 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-08-26T20:11:57.0232042Z 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-08-26T20:11:57.0233093Z 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-08-26T20:11:57.0234115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0235197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0236167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0237067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0238307Z 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-08-26T20:11:57.0243832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0255630Z 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-08-26T20:11:57.0265284Z 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-08-26T20:11:57.0271222Z 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-08-26T20:11:57.0276963Z 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-08-26T20:11:57.0282720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0288264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0294120Z 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-08-26T20:11:57.0299711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0304982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0310245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0315697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0321045Z 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-08-26T20:11:57.0326840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0332074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0337564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0342935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0348972Z 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-08-26T20:11:57.0354728Z 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-08-26T20:11:57.0360544Z 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-08-26T20:11:57.0366671Z 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-08-26T20:11:57.0372719Z 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-08-26T20:11:57.0378246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0384258Z 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-08-26T20:11:57.0390182Z 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-08-26T20:11:57.0395761Z 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-08-26T20:11:57.0401634Z 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-08-26T20:11:57.0407502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0413172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0418768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0424850Z 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-08-26T20:11:57.0430651Z 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-08-26T20:11:57.0436461Z 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-08-26T20:11:57.0442138Z 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-08-26T20:11:57.0448318Z 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-08-26T20:11:57.0453785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0459814Z 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-08-26T20:11:57.0465867Z 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-08-26T20:11:57.0472631Z 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-08-26T20:11:57.0479168Z 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-08-26T20:11:57.0486052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0493221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0499041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0505476Z 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-08-26T20:11:57.0511965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0517213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0522550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0528694Z 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-08-26T20:11:57.0534230Z 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-08-26T20:11:57.0540125Z 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-08-26T20:11:57.0545837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0551279Z 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-08-26T20:11:57.0556770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0562481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0568250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0573789Z 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-08-26T20:11:57.0579144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0584576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0589853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0595250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0600896Z 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-08-26T20:11:57.0606550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0612113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0618068Z 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-08-26T20:11:57.0623811Z 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-08-26T20:11:57.0629507Z 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-08-26T20:11:57.0635380Z 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-08-26T20:11:57.0641008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0646593Z 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-08-26T20:11:57.0652308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0658103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0663824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0669477Z 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-08-26T20:11:57.0675097Z 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-08-26T20:11:57.0680714Z 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-08-26T20:11:57.0686382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0692113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0697553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0703207Z 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-08-26T20:11:57.0709004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0714787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0720412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0726681Z 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-08-26T20:11:57.0732348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0737972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0743598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0749840Z 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-08-26T20:11:57.0755638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0761075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0766810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0772670Z 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-08-26T20:11:57.0778288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0783880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0789460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0795361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0801411Z 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-08-26T20:11:57.0807121Z 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-08-26T20:11:57.0813501Z 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-08-26T20:11:57.0820234Z 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-08-26T20:11:57.0826359Z 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-08-26T20:11:57.0832289Z 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-08-26T20:11:57.0838317Z 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-08-26T20:11:57.0844684Z 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-08-26T20:11:57.0850386Z 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-08-26T20:11:57.0855948Z 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-08-26T20:11:57.0861536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0866669Z 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-08-26T20:11:57.0872067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0877832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0883370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0889216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0895048Z 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-08-26T20:11:57.0900790Z 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-08-26T20:11:57.0906589Z 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-08-26T20:11:57.0912446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0918313Z 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-08-26T20:11:57.0924064Z 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-08-26T20:11:57.0929837Z 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-08-26T20:11:57.0936188Z 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-08-26T20:11:57.0941897Z 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-08-26T20:11:57.0948042Z 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-08-26T20:11:57.0953722Z 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-08-26T20:11:57.0959629Z 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-08-26T20:11:57.0966963Z 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-08-26T20:11:57.0971541Z 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-08-26T20:11:57.0977176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0982839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0988480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.0994476Z 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-08-26T20:11:57.1000384Z 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-08-26T20:11:57.1006392Z 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-08-26T20:11:57.1012351Z 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-08-26T20:11:57.1017947Z 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-08-26T20:11:57.1023717Z 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-08-26T20:11:57.1029378Z 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-08-26T20:11:57.1035484Z 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-08-26T20:11:57.1041144Z 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-08-26T20:11:57.1046931Z 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-08-26T20:11:57.1052532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1058171Z 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-08-26T20:11:57.1063804Z 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-08-26T20:11:57.1069524Z 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-08-26T20:11:57.1075326Z 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-08-26T20:11:57.1080820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1086855Z 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-08-26T20:11:57.1092461Z 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-08-26T20:11:57.1098489Z 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-08-26T20:11:57.1104058Z 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-08-26T20:11:57.1109672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1115510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1121322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1127591Z 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-08-26T20:11:57.1133211Z 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-08-26T20:11:57.1138846Z 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-08-26T20:11:57.1144999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1150873Z 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-08-26T20:11:57.1156736Z 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-08-26T20:11:57.1162399Z 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-08-26T20:11:57.1168072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1174008Z 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-08-26T20:11:57.1179583Z 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-08-26T20:11:57.1185306Z 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-08-26T20:11:57.1196411Z 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-08-26T20:11:57.1202292Z 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-08-26T20:11:57.1207995Z 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-08-26T20:11:57.1213576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1218948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1225227Z 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-08-26T20:11:57.1229956Z 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-08-26T20:11:57.1235618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1241382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1247552Z 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-08-26T20:11:57.1253149Z 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-08-26T20:11:57.1258707Z 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-08-26T20:11:57.1264154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1269482Z 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-08-26T20:11:57.1275110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1280507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1286201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1291657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.1297316Z 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-08-26T20:11:57.2498452Z 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-08-26T20:11:57.2504305Z 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-08-26T20:11:57.2509901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2515392Z 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-08-26T20:11:57.2520994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2526704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2533081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2538943Z 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-08-26T20:11:57.2544564Z 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-08-26T20:11:57.2550493Z 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-08-26T20:11:57.2556168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2562458Z 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-08-26T20:11:57.2568417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2574460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2580679Z 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-08-26T20:11:57.2586236Z 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-08-26T20:11:57.2592429Z 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-08-26T20:11:57.2598019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2603298Z 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-08-26T20:11:57.2609055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2614682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2620175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2625681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2631418Z 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-08-26T20:11:57.2636952Z 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-08-26T20:11:57.2642585Z 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-08-26T20:11:57.2648245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2653677Z 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-08-26T20:11:57.2659752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2665422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2671144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2676463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2682365Z 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-08-26T20:11:57.2688378Z 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-08-26T20:11:57.2693689Z 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-08-26T20:11:57.2699741Z 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-08-26T20:11:57.2705700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2711358Z 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-08-26T20:11:57.2717339Z 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-08-26T20:11:57.2723481Z 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-08-26T20:11:57.2729607Z 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-08-26T20:11:57.2735641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2741126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2746820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2784795Z 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-08-26T20:11:57.2791180Z 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-08-26T20:11:57.2796857Z 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-08-26T20:11:57.2802509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2808295Z 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-08-26T20:11:57.2814029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2820622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2826687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2832887Z 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-08-26T20:11:57.2838809Z 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-08-26T20:11:57.2844844Z 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-08-26T20:11:57.2849559Z 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-08-26T20:11:57.2855857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2861009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2866957Z 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-08-26T20:11:57.2872729Z 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-08-26T20:11:57.2878333Z 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-08-26T20:11:57.2884040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2889239Z 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-08-26T20:11:57.2894892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2900363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2905764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2911323Z 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-08-26T20:11:57.2917338Z 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-08-26T20:11:57.2922844Z 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-08-26T20:11:57.2928530Z 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-08-26T20:11:57.2933969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2939401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.2944922Z 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-08-26T20:11:57.2950671Z 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-08-26T20:11:57.2956491Z 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-08-26T20:11:57.2963091Z 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-08-26T20:11:57.2969015Z 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-08-26T20:11:57.2980840Z 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-08-26T20:11:57.2987051Z 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-08-26T20:11:57.2993111Z 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-08-26T20:11:57.2999142Z 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-08-26T20:11:57.3005054Z 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-08-26T20:11:57.3011000Z 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-08-26T20:11:57.3017331Z 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-08-26T20:11:57.3023025Z 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-08-26T20:11:57.3028885Z 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-08-26T20:11:57.3034655Z 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-08-26T20:11:57.3041051Z 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-08-26T20:11:57.3047400Z 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-08-26T20:11:57.3053733Z 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-08-26T20:11:57.3059821Z 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-08-26T20:11:57.3066089Z 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-08-26T20:11:57.3072263Z 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-08-26T20:11:57.3079164Z 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-08-26T20:11:57.3085249Z 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-08-26T20:11:57.3091410Z 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-08-26T20:11:57.3097477Z 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-08-26T20:11:57.3104003Z 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-08-26T20:11:57.3109934Z 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-08-26T20:11:57.3116013Z 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-08-26T20:11:57.3122725Z 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-08-26T20:11:57.3129068Z 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-08-26T20:11:57.3135176Z 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-08-26T20:11:57.3142015Z 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-08-26T20:11:57.3147934Z 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-08-26T20:11:57.3154052Z 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-08-26T20:11:57.3160003Z 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-08-26T20:11:57.3166228Z 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-08-26T20:11:57.3172216Z 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-08-26T20:11:57.3183541Z 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-08-26T20:11:57.3189880Z 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-08-26T20:11:57.3195971Z 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-08-26T20:11:57.3202219Z 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-08-26T20:11:57.3208584Z 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-08-26T20:11:57.3214388Z 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-08-26T20:11:57.3220596Z 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-08-26T20:11:57.3226322Z 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-08-26T20:11:57.3232574Z 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-08-26T20:11:57.3239092Z 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-08-26T20:11:57.3245099Z 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-08-26T20:11:57.3251249Z 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-08-26T20:11:57.3258014Z 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-08-26T20:11:57.3263834Z 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-08-26T20:11:57.3269867Z 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-08-26T20:11:57.3275792Z 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-08-26T20:11:57.3295219Z 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-08-26T20:11:57.3300902Z 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-08-26T20:11:57.3306893Z 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-08-26T20:11:57.3312771Z 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-08-26T20:11:57.3319192Z 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-08-26T20:11:57.3325042Z 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-08-26T20:11:57.3332972Z 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-08-26T20:11:57.3337435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3343566Z 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-08-26T20:11:57.3349377Z 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-08-26T20:11:57.3355425Z 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-08-26T20:11:57.3361179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3368030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3372858Z 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-08-26T20:11:57.3378433Z 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-08-26T20:11:57.3384163Z 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-08-26T20:11:57.3399136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3405088Z 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-08-26T20:11:57.3410945Z 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-08-26T20:11:57.3417199Z 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-08-26T20:11:57.3422829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3428447Z 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-08-26T20:11:57.3434071Z 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-08-26T20:11:57.3439842Z 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-08-26T20:11:57.3445522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3451753Z 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-08-26T20:11:57.3457502Z 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-08-26T20:11:57.3462894Z 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-08-26T20:11:57.3468808Z 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-08-26T20:11:57.3474452Z 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-08-26T20:11:57.3480147Z 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-08-26T20:11:57.3485911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3497644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3504152Z 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-08-26T20:11:57.3509677Z 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-08-26T20:11:57.3515311Z 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-08-26T20:11:57.3521007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3527121Z 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-08-26T20:11:57.3532780Z 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-08-26T20:11:57.3538684Z 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-08-26T20:11:57.3544769Z 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-08-26T20:11:57.3550265Z 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-08-26T20:11:57.3555797Z 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-08-26T20:11:57.3561421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3567453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3573238Z 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-08-26T20:11:57.3578730Z 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-08-26T20:11:57.3584382Z 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-08-26T20:11:57.3590425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3596447Z 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-08-26T20:11:57.3602027Z 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-08-26T20:11:57.3607912Z 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-08-26T20:11:57.3613584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3619541Z 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-08-26T20:11:57.3625223Z 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-08-26T20:11:57.3630726Z 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-08-26T20:11:57.3636909Z 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-08-26T20:11:57.3642363Z 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-08-26T20:11:57.3648118Z 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-08-26T20:11:57.3653850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3659365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3665240Z 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-08-26T20:11:57.3671012Z 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-08-26T20:11:57.3676599Z 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-08-26T20:11:57.3682638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3688688Z 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-08-26T20:11:57.3694237Z 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-08-26T20:11:57.3699849Z 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-08-26T20:11:57.3705696Z 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-08-26T20:11:57.3711447Z 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-08-26T20:11:57.3717874Z 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-08-26T20:11:57.3723353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3729369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3735314Z 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-08-26T20:11:57.3751100Z 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-08-26T20:11:57.3752229Z 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-08-26T20:11:57.3753198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3758666Z 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-08-26T20:11:57.3764182Z 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-08-26T20:11:57.3769912Z 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-08-26T20:11:57.3775966Z 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-08-26T20:11:57.3781589Z 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-08-26T20:11:57.3787194Z 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-08-26T20:11:57.3792861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3798253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3804225Z 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-08-26T20:11:57.3809904Z 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-08-26T20:11:57.3815525Z 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-08-26T20:11:57.3821201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3827162Z 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-08-26T20:11:57.3832840Z 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-08-26T20:11:57.3841924Z 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-08-26T20:11:57.3845368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3885729Z 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-08-26T20:11:57.3886958Z 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-08-26T20:11:57.3887939Z 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-08-26T20:11:57.3889024Z 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-08-26T20:11:57.3890193Z 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-08-26T20:11:57.3891227Z 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-08-26T20:11:57.3892222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3897761Z 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-08-26T20:11:57.3903675Z 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-08-26T20:11:57.3909780Z 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-08-26T20:11:57.3914231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3920887Z 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-08-26T20:11:57.3925756Z 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-08-26T20:11:57.3931222Z 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-08-26T20:11:57.3937567Z 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-08-26T20:11:57.3943124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3948664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3954321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3959686Z 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-08-26T20:11:57.3965486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3971277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3976828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.3982729Z 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-08-26T20:11:57.3988198Z 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-08-26T20:11:57.3993987Z 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-08-26T20:11:57.3999649Z 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-08-26T20:11:57.4005044Z 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-08-26T20:11:57.4011147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4016827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4022736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4028234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4033732Z 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-08-26T20:11:57.4039469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4044977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4050672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4056436Z 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-08-26T20:11:57.4062021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4067680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4073750Z 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-08-26T20:11:57.4079366Z 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-08-26T20:11:57.4085057Z 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-08-26T20:11:57.4090998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4096590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4102072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4108001Z 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-08-26T20:11:57.4113884Z 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-08-26T20:11:57.4119645Z 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-08-26T20:11:57.4125519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4131401Z 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-08-26T20:11:57.4137040Z 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-08-26T20:11:57.4142722Z 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-08-26T20:11:57.4149535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4155623Z 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-08-26T20:11:57.4161751Z 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-08-26T20:11:57.4167693Z 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-08-26T20:11:57.4173552Z 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-08-26T20:11:57.4179331Z 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-08-26T20:11:57.4185426Z 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-08-26T20:11:57.4191312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4196997Z 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-08-26T20:11:57.4202733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4208666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4214424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4220420Z 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-08-26T20:11:57.4226164Z 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-08-26T20:11:57.4231953Z 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-08-26T20:11:57.4237897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4243941Z 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-08-26T20:11:57.4249722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4255404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4260869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4266774Z 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-08-26T20:11:57.4272358Z 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-08-26T20:11:57.4278215Z 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-08-26T20:11:57.4284129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4306248Z 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-08-26T20:11:57.4312069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4317726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4323481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4329689Z 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-08-26T20:11:57.4335611Z 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-08-26T20:11:57.4341434Z 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-08-26T20:11:57.4381685Z 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-08-26T20:11:57.4394420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4400021Z 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-08-26T20:11:57.4405952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4411691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4417097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4422600Z 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-08-26T20:11:57.4428236Z 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-08-26T20:11:57.4434828Z 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-08-26T20:11:57.4440509Z 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-08-26T20:11:57.4446845Z 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-08-26T20:11:57.4452845Z 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-08-26T20:11:57.4458746Z 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-08-26T20:11:57.4464763Z 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-08-26T20:11:57.4471247Z 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-08-26T20:11:57.4476962Z 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-08-26T20:11:57.4482738Z 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-08-26T20:11:57.4494099Z 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-08-26T20:11:57.4500137Z 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-08-26T20:11:57.4506353Z 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-08-26T20:11:57.4512093Z 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-08-26T20:11:57.4517836Z 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-08-26T20:11:57.4523926Z 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-08-26T20:11:57.4529820Z 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-08-26T20:11:57.4535681Z 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-08-26T20:11:57.4541706Z 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-08-26T20:11:57.4547451Z 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-08-26T20:11:57.4553299Z 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-08-26T20:11:57.4559464Z 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-08-26T20:11:57.4565137Z 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-08-26T20:11:57.4573108Z 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-08-26T20:11:57.4579018Z 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-08-26T20:11:57.4584763Z 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-08-26T20:11:57.4601514Z 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-08-26T20:11:57.4607416Z 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-08-26T20:11:57.4613971Z 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-08-26T20:11:57.4620002Z 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-08-26T20:11:57.4625662Z 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-08-26T20:11:57.4631349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4637085Z 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-08-26T20:11:57.4642641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4648359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4653739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4659404Z 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-08-26T20:11:57.4665612Z 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-08-26T20:11:57.4671288Z 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-08-26T20:11:57.4676979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4692083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4698734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4712357Z 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-08-26T20:11:57.4718779Z 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-08-26T20:11:57.4724453Z 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-08-26T20:11:57.4730136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4735874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4742184Z 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-08-26T20:11:57.4747802Z 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-08-26T20:11:57.4753527Z 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-08-26T20:11:57.4759208Z 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-08-26T20:11:57.4764891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4770791Z 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-08-26T20:11:57.4776810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4782716Z 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-08-26T20:11:57.4788273Z 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-08-26T20:11:57.4794083Z 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-08-26T20:11:57.4799891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4813640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4819213Z 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-08-26T20:11:57.4825459Z 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-08-26T20:11:57.4831655Z 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-08-26T20:11:57.4837908Z 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-08-26T20:11:57.4843590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4849324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4855278Z 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-08-26T20:11:57.4861502Z 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-08-26T20:11:57.4867102Z 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-08-26T20:11:57.4873218Z 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-08-26T20:11:57.4879112Z 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-08-26T20:11:57.4884869Z 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-08-26T20:11:57.4890733Z 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-08-26T20:11:57.4896355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4902229Z 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-08-26T20:11:57.4929025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4934631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4940216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4945987Z 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-08-26T20:11:57.4951374Z 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-08-26T20:11:57.4957097Z 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-08-26T20:11:57.4962594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4968156Z 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-08-26T20:11:57.4973621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4979261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4984601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4989907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.4995183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5001103Z 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-08-26T20:11:57.5006742Z 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-08-26T20:11:57.5012715Z 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-08-26T20:11:57.5034549Z 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-08-26T20:11:57.5040323Z 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-08-26T20:11:57.5046082Z 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-08-26T20:11:57.5051791Z 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-08-26T20:11:57.5058265Z 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-08-26T20:11:57.5063684Z 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-08-26T20:11:57.5069764Z 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-08-26T20:11:57.5074954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5080507Z 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-08-26T20:11:57.5086313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5091841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5097211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5102957Z 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-08-26T20:11:57.5108396Z 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-08-26T20:11:57.5114263Z 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-08-26T20:11:57.5119917Z 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-08-26T20:11:57.5139840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5145564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5151178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5156632Z 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-08-26T20:11:57.5162214Z 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-08-26T20:11:57.5168126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5174349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5179898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5185473Z 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-08-26T20:11:57.5190880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5196482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5202450Z 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-08-26T20:11:57.5208025Z 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-08-26T20:11:57.5213620Z 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-08-26T20:11:57.5219530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5224854Z 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-08-26T20:11:57.5236748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5242394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5247846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5253281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5258891Z 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-08-26T20:11:57.5264443Z 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-08-26T20:11:57.5270183Z 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-08-26T20:11:57.5276222Z 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-08-26T20:11:57.5282088Z 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-08-26T20:11:57.5287941Z 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-08-26T20:11:57.5293583Z 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-08-26T20:11:57.5299353Z 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-08-26T20:11:57.5305951Z 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-08-26T20:11:57.5311953Z 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-08-26T20:11:57.5318038Z 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-08-26T20:11:57.5323534Z 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-08-26T20:11:57.5336007Z 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-08-26T20:11:57.5358161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5359235Z 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-08-26T20:11:57.5360354Z 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-08-26T20:11:57.5361369Z 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-08-26T20:11:57.5402268Z 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-08-26T20:11:57.5403266Z 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-08-26T20:11:57.5404192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5405145Z 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-08-26T20:11:57.5406198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5407229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5408261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5411645Z 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-08-26T20:11:57.5418001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5423761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5429517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5435341Z 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-08-26T20:11:57.5441014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5446995Z 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-08-26T20:11:57.5452931Z 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-08-26T20:11:57.5458498Z 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-08-26T20:11:57.5464136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5469923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5475685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5481153Z 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-08-26T20:11:57.5486978Z 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-08-26T20:11:57.5492896Z 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-08-26T20:11:57.5498793Z 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-08-26T20:11:57.5504653Z 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-08-26T20:11:57.5510342Z 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-08-26T20:11:57.5516243Z 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-08-26T20:11:57.5522227Z 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-08-26T20:11:57.5539278Z 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-08-26T20:11:57.5545190Z 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-08-26T20:11:57.5550925Z 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-08-26T20:11:57.5556570Z 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-08-26T20:11:57.5562201Z 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-08-26T20:11:57.5568026Z 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-08-26T20:11:57.5574077Z 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-08-26T20:11:57.5580006Z 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-08-26T20:11:57.5586547Z 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-08-26T20:11:57.5592661Z 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-08-26T20:11:57.5598862Z 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-08-26T20:11:57.5604446Z 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-08-26T20:11:57.5610368Z 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-08-26T20:11:57.5616383Z 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-08-26T20:11:57.5622259Z 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-08-26T20:11:57.5627912Z 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-08-26T20:11:57.5634106Z 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-08-26T20:11:57.5639956Z 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-08-26T20:11:57.5645773Z 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-08-26T20:11:57.5651696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5657863Z 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-08-26T20:11:57.5663508Z 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-08-26T20:11:57.5669312Z 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-08-26T20:11:57.5674915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5680562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5686580Z 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-08-26T20:11:57.5692252Z 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-08-26T20:11:57.5697946Z 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-08-26T20:11:57.5704149Z 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-08-26T20:11:57.5709654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5715347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5720775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5726880Z 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-08-26T20:11:57.5732551Z 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-08-26T20:11:57.5738281Z 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-08-26T20:11:57.5743854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5749771Z 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-08-26T20:11:57.5755375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5760900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5766476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5772501Z 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-08-26T20:11:57.5778044Z 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-08-26T20:11:57.5783773Z 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-08-26T20:11:57.5790079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5796016Z 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-08-26T20:11:57.5801646Z 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-08-26T20:11:57.5807572Z 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-08-26T20:11:57.5813209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5819090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5825470Z 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-08-26T20:11:57.5831400Z 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-08-26T20:11:57.5837716Z 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-08-26T20:11:57.5844097Z 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-08-26T20:11:57.5850405Z 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-08-26T20:11:57.5856532Z 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-08-26T20:11:57.5862470Z 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-08-26T20:11:57.5868867Z 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-08-26T20:11:57.5874547Z 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-08-26T20:11:57.5880309Z 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-08-26T20:11:57.5886149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5891973Z 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-08-26T20:11:57.5897681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5903499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5909363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5922118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5928308Z 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-08-26T20:11:57.5934265Z 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-08-26T20:11:57.5940003Z 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-08-26T20:11:57.5945712Z 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-08-26T20:11:57.5951476Z 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-08-26T20:11:57.5957425Z 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-08-26T20:11:57.5963105Z 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-08-26T20:11:57.5969329Z 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-08-26T20:11:57.5974933Z 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-08-26T20:11:57.5980599Z 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-08-26T20:11:57.5986489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.5992502Z 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-08-26T20:11:57.5998300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6004420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6040798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6046982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6053012Z 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-08-26T20:11:57.6058848Z 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-08-26T20:11:57.6064959Z 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-08-26T20:11:57.6070893Z 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-08-26T20:11:57.6076769Z 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-08-26T20:11:57.6082773Z 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-08-26T20:11:57.6088810Z 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-08-26T20:11:57.6094717Z 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-08-26T20:11:57.6100567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6106602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6112624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6118254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6124296Z 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-08-26T20:11:57.6130319Z 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-08-26T20:11:57.6136208Z 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-08-26T20:11:57.6148753Z 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-08-26T20:11:57.6154899Z 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-08-26T20:11:57.6160767Z 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-08-26T20:11:57.6166867Z 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-08-26T20:11:57.6172925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6178693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6184584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6190837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6196650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6202691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6208523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6214335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6220147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6225987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6231832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6238022Z 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-08-26T20:11:57.6262176Z 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-08-26T20:11:57.6267977Z 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-08-26T20:11:57.6303094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6308773Z 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-08-26T20:11:57.6314562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6320338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6326727Z 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-08-26T20:11:57.6333142Z 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-08-26T20:11:57.6338100Z 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-08-26T20:11:57.6343934Z 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-08-26T20:11:57.6349541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6355132Z 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-08-26T20:11:57.6360936Z 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-08-26T20:11:57.6366606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6372436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6378482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6384235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6391157Z 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-08-26T20:11:57.6396327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6402001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6408050Z 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-08-26T20:11:57.6413661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6419424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6425025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6430658Z 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-08-26T20:11:57.6436052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6441562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6447362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6452765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6458364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6463855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6469680Z 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-08-26T20:11:57.6482145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6487710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6493359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6498928Z 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-08-26T20:11:57.6504800Z 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-08-26T20:11:57.6510344Z 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-08-26T20:11:57.6516300Z 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-08-26T20:11:57.6522417Z 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-08-26T20:11:57.6528147Z 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-08-26T20:11:57.6533886Z 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-08-26T20:11:57.6539778Z 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-08-26T20:11:57.6545406Z 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-08-26T20:11:57.6551109Z 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-08-26T20:11:57.6556914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6562649Z 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-08-26T20:11:57.6568212Z 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-08-26T20:11:57.6574196Z 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-08-26T20:11:57.6579761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6585470Z 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-08-26T20:11:57.6591215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6596754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6602583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6608325Z 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-08-26T20:11:57.6613702Z 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-08-26T20:11:57.6619212Z 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-08-26T20:11:57.6624633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6629742Z 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-08-26T20:11:57.6635303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6640579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6646075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6651687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6657753Z 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-08-26T20:11:57.6663884Z 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-08-26T20:11:57.6669574Z 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-08-26T20:11:57.6675247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6681023Z 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-08-26T20:11:57.6687033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6693029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6699261Z 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-08-26T20:11:57.6705067Z 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-08-26T20:11:57.6710879Z 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-08-26T20:11:57.6717123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6722935Z 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-08-26T20:11:57.6728633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6734341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6740041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6745845Z 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-08-26T20:11:57.6751647Z 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-08-26T20:11:57.6757248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6762962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6769097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6774544Z 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-08-26T20:11:57.6780345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6786060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6791066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6797506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6803522Z 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-08-26T20:11:57.6809543Z 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-08-26T20:11:57.6815433Z 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-08-26T20:11:57.6821247Z 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-08-26T20:11:57.6827628Z 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-08-26T20:11:57.6833351Z 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-08-26T20:11:57.6853757Z 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-08-26T20:11:57.6854727Z 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-08-26T20:11:57.6860049Z 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-08-26T20:11:57.6865796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6872050Z 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-08-26T20:11:57.6878139Z 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-08-26T20:11:57.6884044Z 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-08-26T20:11:57.6890060Z 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-08-26T20:11:57.6895643Z 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-08-26T20:11:57.6901853Z 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-08-26T20:11:57.6907279Z 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-08-26T20:11:57.6912999Z 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-08-26T20:11:57.6918895Z 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-08-26T20:11:57.6924536Z 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-08-26T20:11:57.6930290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6936354Z 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-08-26T20:11:57.6942215Z 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-08-26T20:11:57.6947984Z 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-08-26T20:11:57.6954106Z 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-08-26T20:11:57.6959834Z 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-08-26T20:11:57.6965563Z 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-08-26T20:11:57.6971528Z 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-08-26T20:11:57.6977226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6983765Z 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-08-26T20:11:57.6989424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.6995195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7000838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7007211Z 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-08-26T20:11:57.7012904Z 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-08-26T20:11:57.7018586Z 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-08-26T20:11:57.7024254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7030363Z 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-08-26T20:11:57.7035991Z 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-08-26T20:11:57.7041888Z 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-08-26T20:11:57.7047818Z 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-08-26T20:11:57.7053721Z 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-08-26T20:11:57.7059564Z 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-08-26T20:11:57.7065327Z 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-08-26T20:11:57.7070939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7076545Z 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-08-26T20:11:57.7082644Z 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-08-26T20:11:57.7088698Z 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-08-26T20:11:57.7094518Z 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-08-26T20:11:57.7100556Z 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-08-26T20:11:57.7106350Z 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-08-26T20:11:57.7112182Z 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-08-26T20:11:57.7118006Z 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-08-26T20:11:57.7124180Z 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-08-26T20:11:57.7130100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7135746Z 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-08-26T20:11:57.7141436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7147490Z 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-08-26T20:11:57.7153286Z 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-08-26T20:11:57.7159192Z 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-08-26T20:11:57.7164877Z 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-08-26T20:11:57.7170702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7176278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7182165Z 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-08-26T20:11:57.7188362Z 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-08-26T20:11:57.7194290Z 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-08-26T20:11:57.7200233Z 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-08-26T20:11:57.7205888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7211655Z 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-08-26T20:11:57.7217242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7222980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7228724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7234900Z 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-08-26T20:11:57.7241178Z 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-08-26T20:11:57.7247009Z 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-08-26T20:11:57.7252639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7258359Z 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-08-26T20:11:57.7263904Z 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-08-26T20:11:57.7269694Z 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-08-26T20:11:57.7275623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7281522Z 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-08-26T20:11:57.7287184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7293050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7298501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7304380Z 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-08-26T20:11:57.7310034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7315277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7320964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7333014Z 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-08-26T20:11:57.7338520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7353842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7354241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7356018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7361959Z 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-08-26T20:11:57.7367771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7373419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7380228Z 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-08-26T20:11:57.7385627Z 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-08-26T20:11:57.7391423Z 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-08-26T20:11:57.7397009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7402684Z 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-08-26T20:11:57.7408551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7414043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7419551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7425638Z 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-08-26T20:11:57.7431127Z 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-08-26T20:11:57.7436926Z 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-08-26T20:11:57.7442483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7448164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7453783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7459663Z 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-08-26T20:11:57.7465167Z 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-08-26T20:11:57.7476166Z 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-08-26T20:11:57.7481961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7487512Z 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-08-26T20:11:57.7493276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7499070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7504843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7510725Z 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-08-26T20:11:57.7516589Z 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-08-26T20:11:57.7522509Z 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-08-26T20:11:57.7528410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7534017Z 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-08-26T20:11:57.7539887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7545673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7551481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7557549Z 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-08-26T20:11:57.7563279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7568756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7574424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7580307Z 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-08-26T20:11:57.7585871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7591488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7597209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7602869Z 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-08-26T20:11:57.7637887Z 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-08-26T20:11:57.7643514Z 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-08-26T20:11:57.7649345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7655335Z 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-08-26T20:11:57.7660997Z 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-08-26T20:11:57.7666566Z 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-08-26T20:11:57.7672367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7678119Z 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-08-26T20:11:57.7683739Z 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-08-26T20:11:57.7689675Z 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-08-26T20:11:57.7696267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7703037Z 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-08-26T20:11:57.7709343Z 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-08-26T20:11:57.7714904Z 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-08-26T20:11:57.7720962Z 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-08-26T20:11:57.7727213Z 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-08-26T20:11:57.7732934Z 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-08-26T20:11:57.7738730Z 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-08-26T20:11:57.7744636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7750510Z 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-08-26T20:11:57.7756495Z 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-08-26T20:11:57.7762091Z 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-08-26T20:11:57.7767791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7773128Z 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-08-26T20:11:57.7778607Z 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-08-26T20:11:57.7784021Z 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-08-26T20:11:57.7789564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7795318Z 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-08-26T20:11:57.7801178Z 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-08-26T20:11:57.7810462Z 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-08-26T20:11:57.7815130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7820634Z 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-08-26T20:11:57.7826084Z 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-08-26T20:11:57.7831647Z 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-08-26T20:11:57.7837676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7843294Z 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-08-26T20:11:57.7849310Z 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-08-26T20:11:57.7854862Z 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-08-26T20:11:57.7860419Z 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-08-26T20:11:57.7866286Z 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-08-26T20:11:57.7871818Z 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-08-26T20:11:57.7877370Z 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-08-26T20:11:57.7882931Z 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-08-26T20:11:57.7892813Z 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-08-26T20:11:57.7898523Z 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-08-26T20:11:57.7904295Z 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-08-26T20:11:57.7910102Z 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-08-26T20:11:57.7915648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.7921496Z 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-08-26T20:11:57.7927344Z 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-08-26T20:11:57.7932698Z 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-08-26T20:11:57.7938576Z 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-08-26T20:11:57.7944842Z 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-08-26T20:11:57.7951078Z 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-08-26T20:11:57.7968056Z 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-08-26T20:11:57.7994944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8001889Z 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-08-26T20:11:57.8008987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8017346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8024116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8031510Z 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-08-26T20:11:57.8040243Z 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-08-26T20:11:57.8047513Z 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-08-26T20:11:57.8054677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8061768Z 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-08-26T20:11:57.8070715Z 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-08-26T20:11:57.8077403Z 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-08-26T20:11:57.8084405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8091494Z 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-08-26T20:11:57.8099635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8106603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8113505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8120759Z 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-08-26T20:11:57.8129409Z 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-08-26T20:11:57.8136480Z 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-08-26T20:11:57.8143724Z 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-08-26T20:11:57.8149232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8155098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8160594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8166428Z 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-08-26T20:11:57.8172073Z 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-08-26T20:11:57.8178568Z 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-08-26T20:11:57.8183306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8189189Z 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-08-26T20:11:57.8194847Z 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-08-26T20:11:57.8200412Z 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-08-26T20:11:57.8206001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8211935Z 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-08-26T20:11:57.8217670Z 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-08-26T20:11:57.8223271Z 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-08-26T20:11:57.8228726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8233951Z 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-08-26T20:11:57.8239507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8245151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8250578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8256085Z 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-08-26T20:11:57.8262291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8278260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8283570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8288988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8294593Z 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-08-26T20:11:57.8300601Z 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-08-26T20:11:57.8306315Z 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-08-26T20:11:57.8312197Z 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-08-26T20:11:57.8318005Z 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-08-26T20:11:57.8323764Z 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-08-26T20:11:57.8329590Z 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-08-26T20:11:57.8335264Z 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-08-26T20:11:57.8341249Z 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-08-26T20:11:57.8346991Z 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-08-26T20:11:57.8352709Z 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-08-26T20:11:57.8358384Z 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-08-26T20:11:57.8364264Z 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-08-26T20:11:57.8370670Z 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-08-26T20:11:57.8411436Z 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-08-26T20:11:57.8411861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8412502Z 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-08-26T20:11:57.8413026Z 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-08-26T20:11:57.8413481Z 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-08-26T20:11:57.8413892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8415304Z 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-08-26T20:11:57.8421186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8427285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8432767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8438601Z 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-08-26T20:11:57.8444337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8450484Z 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-08-26T20:11:57.8455999Z 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-08-26T20:11:57.8462785Z 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-08-26T20:11:57.8467552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8472993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8478963Z 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-08-26T20:11:57.8484699Z 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-08-26T20:11:57.8490831Z 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-08-26T20:11:57.8496441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8501849Z 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-08-26T20:11:57.8507374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8512867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8518178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8523913Z 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-08-26T20:11:57.8529658Z 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-08-26T20:11:57.8535411Z 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-08-26T20:11:57.8540892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8546409Z 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-08-26T20:11:57.8551989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8564449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8570086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8575862Z 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-08-26T20:11:57.8581474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8587334Z 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-08-26T20:11:57.8592700Z 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-08-26T20:11:57.8598742Z 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-08-26T20:11:57.8604617Z 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-08-26T20:11:57.8610384Z 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-08-26T20:11:57.8616744Z 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-08-26T20:11:57.8622555Z 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-08-26T20:11:57.8627951Z 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-08-26T20:11:57.8633619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8638927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8644261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8650213Z 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-08-26T20:11:57.8656463Z 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-08-26T20:11:57.8662656Z 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-08-26T20:11:57.8668425Z 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-08-26T20:11:57.8674378Z 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-08-26T20:11:57.8680120Z 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-08-26T20:11:57.8686156Z 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-08-26T20:11:57.8692231Z 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-08-26T20:11:57.8698136Z 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-08-26T20:11:57.8704041Z 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-08-26T20:11:57.8709890Z 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-08-26T20:11:57.8715749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8722263Z 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-08-26T20:11:57.8728487Z 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-08-26T20:11:57.8735888Z 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-08-26T20:11:57.8741567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8748076Z 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-08-26T20:11:57.8757961Z 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-08-26T20:11:57.8763618Z 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-08-26T20:11:57.8769488Z 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-08-26T20:11:57.8775413Z 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-08-26T20:11:57.8781549Z 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-08-26T20:11:57.8787499Z 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-08-26T20:11:57.8793295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8799505Z 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-08-26T20:11:57.8805333Z 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-08-26T20:11:57.8811008Z 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-08-26T20:11:57.8816939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8823381Z 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-08-26T20:11:57.8829263Z 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-08-26T20:11:57.8834858Z 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-08-26T20:11:57.8840904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8846924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8860388Z 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-08-26T20:11:57.8861655Z 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-08-26T20:11:57.8866714Z 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-08-26T20:11:57.8872805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8878603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8884757Z 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-08-26T20:11:57.8890708Z 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-08-26T20:11:57.8896666Z 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-08-26T20:11:57.8902711Z 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-08-26T20:11:57.8908743Z 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-08-26T20:11:57.8914651Z 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-08-26T20:11:57.8920327Z 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-08-26T20:11:57.8925891Z 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-08-26T20:11:57.8931683Z 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-08-26T20:11:57.8937409Z 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-08-26T20:11:57.8943425Z 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-08-26T20:11:57.8949921Z 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-08-26T20:11:57.8955707Z 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-08-26T20:11:57.8961704Z 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-08-26T20:11:57.8967557Z 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-08-26T20:11:57.8973332Z 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-08-26T20:11:57.8979076Z 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-08-26T20:11:57.8984683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.8990893Z 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-08-26T20:11:57.8997886Z 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-08-26T20:11:57.9003644Z 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-08-26T20:11:57.9008954Z 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-08-26T20:11:57.9014682Z 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-08-26T20:11:57.9020336Z 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-08-26T20:11:57.9026253Z 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-08-26T20:11:57.9032006Z 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-08-26T20:11:57.9038007Z 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-08-26T20:11:57.9043976Z 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-08-26T20:11:57.9049575Z 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-08-26T20:11:57.9055317Z 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-08-26T20:11:57.9061366Z 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-08-26T20:11:57.9067214Z 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-08-26T20:11:57.9073450Z 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-08-26T20:11:57.9079245Z 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-08-26T20:11:57.9085077Z 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-08-26T20:11:57.9091124Z 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-08-26T20:11:57.9096996Z 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-08-26T20:11:57.9102859Z 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-08-26T20:11:57.9108651Z 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-08-26T20:11:57.9114403Z 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-08-26T20:11:57.9120076Z 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-08-26T20:11:57.9125922Z 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-08-26T20:11:57.9132103Z 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-08-26T20:11:57.9138194Z 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-08-26T20:11:57.9144113Z 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-08-26T20:11:57.9149894Z 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-08-26T20:11:57.9155742Z 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-08-26T20:11:57.9162395Z 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-08-26T20:11:57.9168270Z 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-08-26T20:11:57.9174125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9180415Z 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-08-26T20:11:57.9186177Z 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-08-26T20:11:57.9192246Z 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-08-26T20:11:57.9198214Z 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-08-26T20:11:57.9204044Z 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-08-26T20:11:57.9209962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9216241Z 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-08-26T20:11:57.9222121Z 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-08-26T20:11:57.9259234Z 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-08-26T20:11:57.9265885Z 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-08-26T20:11:57.9271600Z 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-08-26T20:11:57.9277401Z 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-08-26T20:11:57.9284399Z 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-08-26T20:11:57.9290483Z 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-08-26T20:11:57.9296369Z 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-08-26T20:11:57.9302225Z 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-08-26T20:11:57.9308268Z 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-08-26T20:11:57.9314082Z 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-08-26T20:11:57.9320522Z 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-08-26T20:11:57.9327043Z 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-08-26T20:11:57.9332911Z 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-08-26T20:11:57.9338624Z 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-08-26T20:11:57.9344395Z 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-08-26T20:11:57.9355154Z 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-08-26T20:11:57.9356383Z 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-08-26T20:11:57.9362376Z 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-08-26T20:11:57.9379387Z 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-08-26T20:11:57.9380656Z 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-08-26T20:11:57.9382678Z 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-08-26T20:11:57.9388564Z 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-08-26T20:11:57.9394604Z 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-08-26T20:11:57.9400461Z 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-08-26T20:11:57.9406563Z 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-08-26T20:11:57.9414123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9419095Z 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-08-26T20:11:57.9425421Z 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-08-26T20:11:57.9431098Z 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-08-26T20:11:57.9436834Z 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-08-26T20:11:57.9442860Z 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-08-26T20:11:57.9448770Z 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-08-26T20:11:57.9454710Z 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-08-26T20:11:57.9460826Z 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-08-26T20:11:57.9466593Z 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-08-26T20:11:57.9472282Z 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-08-26T20:11:57.9478311Z 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-08-26T20:11:57.9483944Z 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-08-26T20:11:57.9489995Z 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-08-26T20:11:57.9495929Z 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-08-26T20:11:57.9502011Z 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-08-26T20:11:57.9507835Z 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-08-26T20:11:57.9513576Z 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-08-26T20:11:57.9519480Z 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-08-26T20:11:57.9525652Z 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-08-26T20:11:57.9538257Z 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-08-26T20:11:57.9544038Z 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-08-26T20:11:57.9550409Z 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-08-26T20:11:57.9556364Z 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-08-26T20:11:57.9562172Z 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-08-26T20:11:57.9568005Z 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-08-26T20:11:57.9573885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9579872Z 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-08-26T20:11:57.9585711Z 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-08-26T20:11:57.9591424Z 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-08-26T20:11:57.9597096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9603228Z 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-08-26T20:11:57.9609157Z 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-08-26T20:11:57.9615268Z 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-08-26T20:11:57.9621039Z 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-08-26T20:11:57.9626904Z 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-08-26T20:11:57.9633172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9639656Z 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-08-26T20:11:57.9645449Z 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-08-26T20:11:57.9651611Z 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-08-26T20:11:57.9657594Z 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-08-26T20:11:57.9663488Z 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-08-26T20:11:57.9669456Z 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-08-26T20:11:57.9675176Z 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-08-26T20:11:57.9681062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9694384Z 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-08-26T20:11:57.9695575Z 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-08-26T20:11:57.9699587Z 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-08-26T20:11:57.9705342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9711480Z 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-08-26T20:11:57.9717224Z 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-08-26T20:11:57.9723190Z 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-08-26T20:11:57.9729377Z 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-08-26T20:11:57.9735463Z 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-08-26T20:11:57.9741323Z 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-08-26T20:11:57.9747148Z 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-08-26T20:11:57.9753339Z 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-08-26T20:11:57.9759461Z 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-08-26T20:11:57.9765577Z 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-08-26T20:11:57.9771521Z 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-08-26T20:11:57.9777663Z 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-08-26T20:11:57.9783558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9789637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9795803Z 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-08-26T20:11:57.9801693Z 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-08-26T20:11:57.9807717Z 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-08-26T20:11:57.9813911Z 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-08-26T20:11:57.9820107Z 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-08-26T20:11:57.9825945Z 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-08-26T20:11:57.9831666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9837846Z 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-08-26T20:11:57.9843804Z 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-08-26T20:11:57.9856426Z 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-08-26T20:11:57.9862917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9869414Z 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-08-26T20:11:57.9875342Z 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-08-26T20:11:57.9881335Z 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-08-26T20:11:57.9887248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9893286Z 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-08-26T20:11:57.9899213Z 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-08-26T20:11:57.9904937Z 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-08-26T20:11:57.9939924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:57.9946146Z 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-08-26T20:11:57.9951880Z 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-08-26T20:11:57.9957599Z 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-08-26T20:11:57.9963334Z 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-08-26T20:11:57.9969641Z 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-08-26T20:11:57.9976639Z 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-08-26T20:11:57.9982720Z 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-08-26T20:11:57.9988454Z 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-08-26T20:11:57.9994324Z 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-08-26T20:11:58.0001780Z 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-08-26T20:11:58.0007378Z 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-08-26T20:11:58.0013066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0018850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0024802Z 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-08-26T20:11:58.0030419Z 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-08-26T20:11:58.0036183Z 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-08-26T20:11:58.0042308Z 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-08-26T20:11:58.0048586Z 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-08-26T20:11:58.0054508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0060417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0066307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0072158Z 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-08-26T20:11:58.0078108Z 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-08-26T20:11:58.0084161Z 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-08-26T20:11:58.0089961Z 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-08-26T20:11:58.0095825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0101665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0107887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0113335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0119282Z 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-08-26T20:11:58.0124946Z 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-08-26T20:11:58.0130796Z 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-08-26T20:11:58.0136449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0142382Z 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-08-26T20:11:58.0148106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0154040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0159736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0165699Z 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-08-26T20:11:58.0179753Z 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-08-26T20:11:58.0185546Z 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-08-26T20:11:58.0191241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0198972Z 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-08-26T20:11:58.0202691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0222253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0223167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0224300Z 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-08-26T20:11:58.0228471Z 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-08-26T20:11:58.0233906Z 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-08-26T20:11:58.0240318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0246396Z 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-08-26T20:11:58.0250966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0257409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0262019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0267767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0274083Z 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-08-26T20:11:58.0279768Z 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-08-26T20:11:58.0285506Z 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-08-26T20:11:58.0291424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0297164Z 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-08-26T20:11:58.0302855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0308560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0314639Z 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-08-26T20:11:58.0320487Z 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-08-26T20:11:58.0326383Z 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-08-26T20:11:58.0332251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0339069Z 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-08-26T20:11:58.0344417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0350308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0356074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0362032Z 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-08-26T20:11:58.0372817Z 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-08-26T20:11:58.0378859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0384699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0390371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0395760Z 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-08-26T20:11:58.0401494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0406856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0412398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0418389Z 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-08-26T20:11:58.0424157Z 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-08-26T20:11:58.0430111Z 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-08-26T20:11:58.0435584Z 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-08-26T20:11:58.0441250Z 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-08-26T20:11:58.0447036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0453544Z 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-08-26T20:11:58.0459875Z 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-08-26T20:11:58.0502272Z 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-08-26T20:11:58.0503419Z 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-08-26T20:11:58.0504463Z 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-08-26T20:11:58.0505406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0508343Z 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-08-26T20:11:58.0514294Z 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-08-26T20:11:58.0520336Z 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-08-26T20:11:58.0526327Z 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-08-26T20:11:58.0536624Z 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-08-26T20:11:58.0542408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0548550Z 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-08-26T20:11:58.0554382Z 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-08-26T20:11:58.0560290Z 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-08-26T20:11:58.0566187Z 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-08-26T20:11:58.0572240Z 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-08-26T20:11:58.0578038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0584174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0590524Z 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-08-26T20:11:58.0596175Z 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-08-26T20:11:58.0601868Z 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-08-26T20:11:58.0607686Z 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-08-26T20:11:58.0613644Z 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-08-26T20:11:58.0619360Z 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-08-26T20:11:58.0625476Z 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-08-26T20:11:58.0631103Z 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-08-26T20:11:58.0636702Z 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-08-26T20:11:58.0642498Z 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-08-26T20:11:58.0648246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0654196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0659860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0665687Z 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-08-26T20:11:58.0671402Z 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-08-26T20:11:58.0684012Z 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-08-26T20:11:58.0689877Z 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-08-26T20:11:58.0695624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0701456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0707938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0713897Z 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-08-26T20:11:58.0719706Z 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-08-26T20:11:58.0726127Z 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-08-26T20:11:58.0738771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0740722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0748429Z 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-08-26T20:11:58.0754598Z 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-08-26T20:11:58.0767981Z 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-08-26T20:11:58.0773568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0778844Z 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-08-26T20:11:58.0784533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0790466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0796568Z 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-08-26T20:11:58.0802541Z 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-08-26T20:11:58.0808609Z 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-08-26T20:11:58.0814629Z 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-08-26T20:11:58.0820695Z 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-08-26T20:11:58.0826474Z 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-08-26T20:11:58.0832535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0838190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0843926Z 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-08-26T20:11:58.0850100Z 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-08-26T20:11:58.0856086Z 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-08-26T20:11:58.0862073Z 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-08-26T20:11:58.0868860Z 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-08-26T20:11:58.0880525Z 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-08-26T20:11:58.0919177Z 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-08-26T20:11:58.0925574Z 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-08-26T20:11:58.0931642Z 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-08-26T20:11:58.0937549Z 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-08-26T20:11:58.0943362Z 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-08-26T20:11:58.0949242Z 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-08-26T20:11:58.0954828Z 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-08-26T20:11:58.0960434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0966886Z 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-08-26T20:11:58.0972691Z 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-08-26T20:11:58.0978654Z 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-08-26T20:11:58.0984305Z 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-08-26T20:11:58.0989854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.0995488Z 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-08-26T20:11:58.1001049Z 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-08-26T20:11:58.1007029Z 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-08-26T20:11:58.1012768Z 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-08-26T20:11:58.1025151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1031042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1036739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1042016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1048150Z 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-08-26T20:11:58.1053725Z 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-08-26T20:11:58.1059652Z 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-08-26T20:11:58.1065563Z 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-08-26T20:11:58.1071352Z 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-08-26T20:11:58.1077349Z 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-08-26T20:11:58.1082789Z 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-08-26T20:11:58.1089058Z 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-08-26T20:11:58.1099769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1105467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1110774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1116567Z 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-08-26T20:11:58.1122244Z 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-08-26T20:11:58.1128026Z 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-08-26T20:11:58.1133584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1139027Z 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-08-26T20:11:58.1144615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1150399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1155832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1161455Z 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-08-26T20:11:58.1167400Z 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-08-26T20:11:58.1173060Z 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-08-26T20:11:58.1178898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1185150Z 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-08-26T20:11:58.1190805Z 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-08-26T20:11:58.1196660Z 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-08-26T20:11:58.1202433Z 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-08-26T20:11:58.1208525Z 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-08-26T20:11:58.1214628Z 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-08-26T20:11:58.1220309Z 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-08-26T20:11:58.1226014Z 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-08-26T20:11:58.1232013Z 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-08-26T20:11:58.1238089Z 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-08-26T20:11:58.1243896Z 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-08-26T20:11:58.1249608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1255613Z 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-08-26T20:11:58.1261340Z 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-08-26T20:11:58.1267265Z 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-08-26T20:11:58.1273463Z 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-08-26T20:11:58.1279140Z 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-08-26T20:11:58.1285026Z 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-08-26T20:11:58.1290941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1296799Z 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-08-26T20:11:58.1303451Z 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-08-26T20:11:58.1317561Z 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-08-26T20:11:58.1323639Z 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-08-26T20:11:58.1330139Z 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-08-26T20:11:58.1335981Z 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-08-26T20:11:58.1342053Z 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-08-26T20:11:58.1347926Z 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-08-26T20:11:58.1353777Z 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-08-26T20:11:58.1359856Z 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-08-26T20:11:58.1366198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1372267Z 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-08-26T20:11:58.1378737Z 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-08-26T20:11:58.1385014Z 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-08-26T20:11:58.1391167Z 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-08-26T20:11:58.1397085Z 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-08-26T20:11:58.1403201Z 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-08-26T20:11:58.1409759Z 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-08-26T20:11:58.1415726Z 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-08-26T20:11:58.1421436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1427231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1433154Z 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-08-26T20:11:58.1438916Z 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-08-26T20:11:58.1444856Z 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-08-26T20:11:58.1450727Z 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-08-26T20:11:58.1456329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1462014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1467686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1473435Z 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-08-26T20:11:58.1479478Z 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-08-26T20:11:58.1485441Z 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-08-26T20:11:58.1490923Z 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-08-26T20:11:58.1497173Z 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-08-26T20:11:58.1502839Z 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-08-26T20:11:58.1508292Z 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-08-26T20:11:58.1513901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1519386Z 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-08-26T20:11:58.1525248Z 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-08-26T20:11:58.1530916Z 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-08-26T20:11:58.1537136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1542955Z 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-08-26T20:11:58.1549413Z 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-08-26T20:11:58.1555160Z 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-08-26T20:11:58.1560768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1571783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1577645Z 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-08-26T20:11:58.1583164Z 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-08-26T20:11:58.1588783Z 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-08-26T20:11:58.1594532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1600256Z 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-08-26T20:11:58.1610382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1616105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1622332Z 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-08-26T20:11:58.1628232Z 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-08-26T20:11:58.1633663Z 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-08-26T20:11:58.1639433Z 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-08-26T20:11:58.1644981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1651357Z 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-08-26T20:11:58.1656374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1661924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1668027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1674093Z 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-08-26T20:11:58.1679832Z 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-08-26T20:11:58.1685523Z 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-08-26T20:11:58.1691336Z 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-08-26T20:11:58.1697649Z 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-08-26T20:11:58.1715290Z 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-08-26T20:11:58.1721236Z 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-08-26T20:11:58.1726993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1732793Z 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-08-26T20:11:58.1738919Z 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-08-26T20:11:58.1744573Z 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-08-26T20:11:58.1750305Z 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-08-26T20:11:58.1756489Z 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-08-26T20:11:58.1762323Z 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-08-26T20:11:58.1768096Z 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-08-26T20:11:58.1773788Z 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-08-26T20:11:58.1780250Z 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-08-26T20:11:58.1786759Z 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-08-26T20:11:58.1793409Z 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-08-26T20:11:58.1799271Z 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-08-26T20:11:58.1805393Z 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-08-26T20:11:58.1811644Z 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-08-26T20:11:58.1817716Z 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-08-26T20:11:58.1823904Z 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-08-26T20:11:58.1830540Z 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-08-26T20:11:58.1836769Z 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-08-26T20:11:58.1843384Z 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-08-26T20:11:58.1849852Z 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-08-26T20:11:58.1856399Z 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-08-26T20:11:58.1863346Z 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-08-26T20:11:58.1869710Z 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-08-26T20:11:58.1875919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1882115Z 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-08-26T20:11:58.1887974Z 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-08-26T20:11:58.1893923Z 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-08-26T20:11:58.1899925Z 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-08-26T20:11:58.1906016Z 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-08-26T20:11:58.1918952Z 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-08-26T20:11:58.1925043Z 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-08-26T20:11:58.1931063Z 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-08-26T20:11:58.1937079Z 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-08-26T20:11:58.1942887Z 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-08-26T20:11:58.1948974Z 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-08-26T20:11:58.1955126Z 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-08-26T20:11:58.1960883Z 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-08-26T20:11:58.1966736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.1972463Z 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-08-26T20:11:58.1978447Z 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-08-26T20:11:58.1984441Z 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-08-26T20:11:58.1990098Z 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-08-26T20:11:58.1995833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2002094Z 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-08-26T20:11:58.2008040Z 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-08-26T20:11:58.2014388Z 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-08-26T20:11:58.2020196Z 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-08-26T20:11:58.2030851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2037122Z 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-08-26T20:11:58.2042803Z 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-08-26T20:11:58.2048560Z 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-08-26T20:11:58.2054119Z 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-08-26T20:11:58.2059743Z 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-08-26T20:11:58.2065363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2071049Z 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-08-26T20:11:58.2076806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2082783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2088199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2093822Z 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-08-26T20:11:58.2099491Z 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-08-26T20:11:58.2105272Z 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-08-26T20:11:58.2111042Z 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-08-26T20:11:58.2116828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2122486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2128286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2134104Z 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-08-26T20:11:58.2139595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2145320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2150868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2156286Z 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-08-26T20:11:58.2161993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2167356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2172703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2178024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2183876Z 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-08-26T20:11:58.2189513Z 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-08-26T20:11:58.2195258Z 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-08-26T20:11:58.2201194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2207458Z 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-08-26T20:11:58.2213235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2219151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2225620Z 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-08-26T20:11:58.2231374Z 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-08-26T20:11:58.2237072Z 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-08-26T20:11:58.2242871Z 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-08-26T20:11:58.2248912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2254469Z 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-08-26T20:11:58.2260343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2266219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2271644Z 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-08-26T20:11:58.2277573Z 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-08-26T20:11:58.2283650Z 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-08-26T20:11:58.2289586Z 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-08-26T20:11:58.2295957Z 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-08-26T20:11:58.2301933Z 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-08-26T20:11:58.2308114Z 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-08-26T20:11:58.2313857Z 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-08-26T20:11:58.2319957Z 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-08-26T20:11:58.2325794Z 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-08-26T20:11:58.2331883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2337868Z 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-08-26T20:11:58.2343904Z 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-08-26T20:11:58.2349731Z 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-08-26T20:11:58.2355657Z 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-08-26T20:11:58.2361775Z 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-08-26T20:11:58.2368389Z 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-08-26T20:11:58.2374827Z 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-08-26T20:11:58.2381181Z 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-08-26T20:11:58.2387672Z 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-08-26T20:11:58.2394014Z 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-08-26T20:11:58.2400209Z 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-08-26T20:11:58.2406542Z 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-08-26T20:11:58.2412425Z 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-08-26T20:11:58.2418737Z 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-08-26T20:11:58.2424797Z 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-08-26T20:11:58.2430652Z 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-08-26T20:11:58.2436734Z 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-08-26T20:11:58.2443293Z 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-08-26T20:11:58.2449546Z 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-08-26T20:11:58.2455376Z 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-08-26T20:11:58.2461264Z 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-08-26T20:11:58.2467122Z 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-08-26T20:11:58.2473236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2479169Z 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-08-26T20:11:58.2516697Z 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-08-26T20:11:58.2522729Z 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-08-26T20:11:58.2528570Z 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-08-26T20:11:58.2534365Z 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-08-26T20:11:58.2540396Z 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-08-26T20:11:58.2546300Z 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-08-26T20:11:58.2552027Z 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-08-26T20:11:58.2557699Z 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-08-26T20:11:58.2563427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2569085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2574910Z 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-08-26T20:11:58.2580435Z 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-08-26T20:11:58.2586519Z 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-08-26T20:11:58.2592200Z 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-08-26T20:11:58.2597929Z 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-08-26T20:11:58.2603947Z 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-08-26T20:11:58.2609519Z 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-08-26T20:11:58.2620887Z 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-08-26T20:11:58.2626651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2632346Z 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-08-26T20:11:58.2638039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2643647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2649377Z 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-08-26T20:11:58.2655414Z 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-08-26T20:11:58.2661652Z 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-08-26T20:11:58.2667430Z 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-08-26T20:11:58.2673475Z 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-08-26T20:11:58.2679468Z 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-08-26T20:11:58.2685529Z 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-08-26T20:11:58.2691515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2698180Z 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-08-26T20:11:58.2704332Z 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-08-26T20:11:58.2710770Z 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-08-26T20:11:58.2716454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.2722351Z 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-08-26T20:11:58.2728636Z 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-08-26T20:11:58.2734406Z 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-08-26T20:11:58.2740493Z 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-08-26T20:11:58.2746648Z 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-08-26T20:11:58.2752575Z 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-08-26T20:11:58.2758697Z 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-08-26T20:11:58.2764748Z 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-08-26T20:11:58.2770904Z 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-08-26T20:11:58.2777152Z 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-08-26T20:11:58.2783247Z 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-08-26T20:11:58.2789285Z 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-08-26T20:11:58.2795471Z 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-08-26T20:11:58.2801228Z 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-08-26T20:11:58.2807278Z 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-08-26T20:11:58.2821621Z 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-08-26T20:11:58.2827584Z 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-08-26T20:11:58.2833976Z 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-08-26T20:11:58.2840385Z 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-08-26T20:11:58.2846595Z 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-08-26T20:11:58.2852913Z 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-08-26T20:11:58.2859134Z 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-08-26T20:11:58.2865246Z 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-08-26T20:11:58.2871236Z 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-08-26T20:11:58.2877444Z 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-08-26T20:11:58.2884447Z 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-08-26T20:11:58.2891305Z 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-08-26T20:11:58.2898133Z 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-08-26T20:11:58.2904439Z 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-08-26T20:11:58.2910411Z 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-08-26T20:11:58.2916457Z 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-08-26T20:11:58.2923180Z 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-08-26T20:11:58.2929615Z 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-08-26T20:11:58.2940961Z 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-08-26T20:11:58.2947253Z 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-08-26T20:11:58.2953321Z 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-08-26T20:11:58.2959482Z 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-08-26T20:11:58.2965336Z 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-08-26T20:11:58.2971292Z 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-08-26T20:11:58.2977075Z 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-08-26T20:11:58.2983088Z 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-08-26T20:11:58.2989289Z 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-08-26T20:11:58.2995106Z 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-08-26T20:11:58.3000952Z 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-08-26T20:11:58.3007150Z 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-08-26T20:11:58.3013533Z 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-08-26T20:11:58.3019431Z 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-08-26T20:11:58.3025398Z 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-08-26T20:11:58.3031270Z 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-08-26T20:11:58.3036879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3042725Z 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-08-26T20:11:58.3048492Z 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-08-26T20:11:58.3054080Z 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-08-26T20:11:58.3059562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3064728Z 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-08-26T20:11:58.3070299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3075798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3081160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3087015Z 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-08-26T20:11:58.3093303Z 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-08-26T20:11:58.3098833Z 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-08-26T20:11:58.3104308Z 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-08-26T20:11:58.3109907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3122474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3127865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3133346Z 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-08-26T20:11:58.3138871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3144612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3150580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3156522Z 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-08-26T20:11:58.3161938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3167529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3173104Z 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-08-26T20:11:58.3179056Z 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-08-26T20:11:58.3184878Z 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-08-26T20:11:58.3190777Z 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-08-26T20:11:58.3196762Z 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-08-26T20:11:58.3202974Z 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-08-26T20:11:58.3209327Z 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-08-26T20:11:58.3215592Z 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-08-26T20:11:58.3221141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3226669Z 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-08-26T20:11:58.3232444Z 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-08-26T20:11:58.3238109Z 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-08-26T20:11:58.3243791Z 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-08-26T20:11:58.3249575Z 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-08-26T20:11:58.3256026Z 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-08-26T20:11:58.3261618Z 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-08-26T20:11:58.3267422Z 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-08-26T20:11:58.3273156Z 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-08-26T20:11:58.3278835Z 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-08-26T20:11:58.3284523Z 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-08-26T20:11:58.3290449Z 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-08-26T20:11:58.3296316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3302072Z 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-08-26T20:11:58.3307781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3313120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3318604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3323969Z 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-08-26T20:11:58.3329592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3335015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3340667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3346044Z 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-08-26T20:11:58.3351742Z 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-08-26T20:11:58.3357557Z 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-08-26T20:11:58.3363599Z 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-08-26T20:11:58.3370038Z 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-08-26T20:11:58.3376016Z 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-08-26T20:11:58.3382238Z 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-08-26T20:11:58.3388055Z 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-08-26T20:11:58.3394012Z 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-08-26T20:11:58.3400090Z 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-08-26T20:11:58.3406149Z 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-08-26T20:11:58.3412258Z 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-08-26T20:11:58.3418071Z 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-08-26T20:11:58.3423758Z 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-08-26T20:11:58.3429384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3435101Z 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-08-26T20:11:58.3440905Z 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-08-26T20:11:58.3446740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3452549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3458204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3463877Z 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-08-26T20:11:58.3469388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3475028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3481016Z 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-08-26T20:11:58.3486742Z 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-08-26T20:11:58.3498428Z 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-08-26T20:11:58.3504315Z 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-08-26T20:11:58.3514512Z 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-08-26T20:11:58.3520310Z 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-08-26T20:11:58.3526183Z 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-08-26T20:11:58.3531985Z 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-08-26T20:11:58.3537847Z 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-08-26T20:11:58.3543897Z 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-08-26T20:11:58.3550077Z 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-08-26T20:11:58.3555848Z 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-08-26T20:11:58.3561438Z 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-08-26T20:11:58.3567349Z 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-08-26T20:11:58.3572935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3579189Z 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-08-26T20:11:58.3585125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3591145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3596766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3602323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3608173Z 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-08-26T20:11:58.3643047Z 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-08-26T20:11:58.3661654Z 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-08-26T20:11:58.3667281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3673105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3691969Z 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-08-26T20:11:58.3697710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3703285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3708927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3714719Z 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-08-26T20:11:58.3739595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3745471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3751461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3758069Z 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-08-26T20:11:58.3767998Z 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-08-26T20:11:58.3773791Z 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-08-26T20:11:58.3779670Z 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-08-26T20:11:58.3785434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3791273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3797357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3803697Z 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-08-26T20:11:58.3809463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3815275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3821221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3826768Z 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-08-26T20:11:58.3832519Z 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-08-26T20:11:58.3838308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3844186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3856494Z 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-08-26T20:11:58.3862465Z 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-08-26T20:11:58.3868350Z 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-08-26T20:11:58.3874040Z 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-08-26T20:11:58.3884263Z 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-08-26T20:11:58.3890908Z 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-08-26T20:11:58.3897786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3903932Z 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-08-26T20:11:58.3917847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3924415Z 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-08-26T20:11:58.3930727Z 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-08-26T20:11:58.3936610Z 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-08-26T20:11:58.3942426Z 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-08-26T20:11:58.3948573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3954447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.3960413Z 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-08-26T20:11:58.3970452Z 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-08-26T20:11:58.3977041Z 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-08-26T20:11:58.3982545Z 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-08-26T20:11:58.3988492Z 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-08-26T20:11:58.3994524Z 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-08-26T20:11:58.4000452Z 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-08-26T20:11:58.4006322Z 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-08-26T20:11:58.4012326Z 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-08-26T20:11:58.4018238Z 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-08-26T20:11:58.4024611Z 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-08-26T20:11:58.4030062Z 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-08-26T20:11:58.4036626Z 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-08-26T20:11:58.4042564Z 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-08-26T20:11:58.4048603Z 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-08-26T20:11:58.4054949Z 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-08-26T20:11:58.4060748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4066797Z 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-08-26T20:11:58.4073243Z 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-08-26T20:11:58.4078862Z 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-08-26T20:11:58.4084711Z 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-08-26T20:11:58.4090663Z 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-08-26T20:11:58.4096550Z 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-08-26T20:11:58.4116052Z 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-08-26T20:11:58.4121804Z 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-08-26T20:11:58.4128123Z 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-08-26T20:11:58.4133915Z 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-08-26T20:11:58.4139699Z 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-08-26T20:11:58.4145644Z 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-08-26T20:11:58.4151591Z 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-08-26T20:11:58.4158169Z 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-08-26T20:11:58.4164707Z 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-08-26T20:11:58.4170512Z 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-08-26T20:11:58.4176549Z 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-08-26T20:11:58.4212400Z 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-08-26T20:11:58.4218604Z 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-08-26T20:11:58.4224898Z 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-08-26T20:11:58.4230984Z 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-08-26T20:11:58.4237027Z 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-08-26T20:11:58.4242907Z 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-08-26T20:11:58.4248995Z 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-08-26T20:11:58.4254936Z 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-08-26T20:11:58.4262257Z 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-08-26T20:11:58.4268249Z 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-08-26T20:11:58.4274008Z 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-08-26T20:11:58.4280067Z 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-08-26T20:11:58.4286139Z 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-08-26T20:11:58.4292444Z 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-08-26T20:11:58.4298599Z 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-08-26T20:11:58.4304733Z 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-08-26T20:11:58.4310673Z 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-08-26T20:11:58.4316642Z 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-08-26T20:11:58.4322472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4328714Z 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-08-26T20:11:58.4335029Z 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-08-26T20:11:58.4340891Z 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-08-26T20:11:58.4346559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4352071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4357801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4363598Z 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-08-26T20:11:58.4369436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4375778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4382476Z 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-08-26T20:11:58.4388004Z 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-08-26T20:11:58.4394049Z 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-08-26T20:11:58.4400097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4405562Z 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-08-26T20:11:58.4411306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4416865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4423879Z 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-08-26T20:11:58.4430192Z 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-08-26T20:11:58.4436069Z 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-08-26T20:11:58.4442005Z 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-08-26T20:11:58.4447743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4454735Z 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-08-26T20:11:58.4460401Z 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-08-26T20:11:58.4466250Z 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-08-26T20:11:58.4472026Z 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-08-26T20:11:58.4478341Z 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-08-26T20:11:58.4484381Z 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-08-26T20:11:58.4490272Z 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-08-26T20:11:58.4496230Z 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-08-26T20:11:58.4501926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4507849Z 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-08-26T20:11:58.4513373Z 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-08-26T20:11:58.4518993Z 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-08-26T20:11:58.4529579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4535167Z 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-08-26T20:11:58.4541563Z 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-08-26T20:11:58.4547155Z 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-08-26T20:11:58.4552948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4558849Z 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-08-26T20:11:58.4564573Z 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-08-26T20:11:58.4570292Z 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-08-26T20:11:58.4575986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4581980Z 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-08-26T20:11:58.4587789Z 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-08-26T20:11:58.4593493Z 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-08-26T20:11:58.4599573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4605442Z 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-08-26T20:11:58.4611493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4617364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4623542Z 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-08-26T20:11:58.4636823Z 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-08-26T20:11:58.4642522Z 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-08-26T20:11:58.4648291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4653752Z 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-08-26T20:11:58.4659266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4664736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4670251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4675628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4681285Z 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-08-26T20:11:58.4687402Z 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-08-26T20:11:58.4693322Z 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-08-26T20:11:58.4699138Z 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-08-26T20:11:58.4705580Z 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-08-26T20:11:58.4713107Z 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-08-26T20:11:58.4721696Z 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-08-26T20:11:58.4732381Z 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-08-26T20:11:58.4741809Z 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-08-26T20:11:58.4751650Z 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-08-26T20:11:58.4759013Z 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-08-26T20:11:58.4765212Z 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-08-26T20:11:58.4771053Z 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-08-26T20:11:58.4776845Z 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-08-26T20:11:58.4783113Z 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-08-26T20:11:58.4789202Z 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-08-26T20:11:58.4795139Z 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-08-26T20:11:58.4801039Z 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-08-26T20:11:58.4807112Z 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-08-26T20:11:58.4813223Z 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-08-26T20:11:58.4819183Z 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-08-26T20:11:58.4825312Z 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-08-26T20:11:58.4831471Z 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-08-26T20:11:58.4842218Z 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-08-26T20:11:58.4848093Z 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-08-26T20:11:58.4854013Z 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-08-26T20:11:58.4859927Z 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-08-26T20:11:58.4865956Z 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-08-26T20:11:58.4876011Z 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-08-26T20:11:58.4881886Z 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-08-26T20:11:58.4888071Z 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-08-26T20:11:58.4894633Z 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-08-26T20:11:58.4901559Z 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-08-26T20:11:58.4907807Z 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-08-26T20:11:58.4917032Z 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-08-26T20:11:58.4923135Z 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-08-26T20:11:58.4929252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4934859Z 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-08-26T20:11:58.4940904Z 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-08-26T20:11:58.4946497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4958017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4964031Z 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-08-26T20:11:58.4969794Z 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-08-26T20:11:58.4975618Z 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-08-26T20:11:58.4981345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.4987121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5006647Z 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-08-26T20:11:58.5012634Z 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-08-26T20:11:58.5018391Z 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-08-26T20:11:58.5024188Z 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-08-26T20:11:58.5030056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5035529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5045127Z 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-08-26T20:11:58.5050928Z 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-08-26T20:11:58.5056659Z 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-08-26T20:11:58.5062425Z 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-08-26T20:11:58.5068120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5073815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5085224Z 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-08-26T20:11:58.5091196Z 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-08-26T20:11:58.5097372Z 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-08-26T20:11:58.5103018Z 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-08-26T20:11:58.5108700Z 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-08-26T20:11:58.5114390Z 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-08-26T20:11:58.5123419Z 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-08-26T20:11:58.5129389Z 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-08-26T20:11:58.5134814Z 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-08-26T20:11:58.5140503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5146924Z 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-08-26T20:11:58.5152633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5161731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5167168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5173561Z 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-08-26T20:11:58.5179434Z 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-08-26T20:11:58.5185193Z 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-08-26T20:11:58.5191554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5201448Z 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-08-26T20:11:58.5207451Z 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-08-26T20:11:58.5213180Z 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-08-26T20:11:58.5218925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5224737Z 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-08-26T20:11:58.5230368Z 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-08-26T20:11:58.5241054Z 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-08-26T20:11:58.5246907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5252776Z 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-08-26T20:11:58.5258975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5265047Z 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-08-26T20:11:58.5271079Z 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-08-26T20:11:58.5280860Z 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-08-26T20:11:58.5286799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5292611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5298178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5304029Z 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-08-26T20:11:58.5309722Z 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-08-26T20:11:58.5318623Z 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-08-26T20:11:58.5354931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5360463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5366364Z 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-08-26T20:11:58.5372690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5378645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5389626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5395245Z 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-08-26T20:11:58.5401581Z 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-08-26T20:11:58.5408207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5414448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5420553Z 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-08-26T20:11:58.5426977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5432927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5438818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5444500Z 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-08-26T20:11:58.5450266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5455766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5461796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5467462Z 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-08-26T20:11:58.5472998Z 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-08-26T20:11:58.5478409Z 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-08-26T20:11:58.5484039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5489869Z 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-08-26T20:11:58.5495768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5501035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5506573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5512984Z 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-08-26T20:11:58.5518518Z 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-08-26T20:11:58.5524190Z 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-08-26T20:11:58.5530079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5536070Z 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-08-26T20:11:58.5541650Z 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-08-26T20:11:58.5547443Z 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-08-26T20:11:58.5553156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5558652Z 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-08-26T20:11:58.5564221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5569729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5575781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5581284Z 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-08-26T20:11:58.5586650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5592776Z 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-08-26T20:11:58.5598666Z 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-08-26T20:11:58.5604842Z 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-08-26T20:11:58.5611400Z 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-08-26T20:11:58.5617214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5624033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5629862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5635627Z 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-08-26T20:11:58.5641228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5646716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5654208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5662790Z 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-08-26T20:11:58.5669941Z 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-08-26T20:11:58.5680123Z 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-08-26T20:11:58.5686237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5692520Z 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-08-26T20:11:58.5698549Z 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-08-26T20:11:58.5704338Z 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-08-26T20:11:58.5710972Z 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-08-26T20:11:58.5717250Z 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-08-26T20:11:58.5723053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5730141Z 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-08-26T20:11:58.5736109Z 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-08-26T20:11:58.5741893Z 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-08-26T20:11:58.5747815Z 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-08-26T20:11:58.5753670Z 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-08-26T20:11:58.5759460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5766037Z 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-08-26T20:11:58.5771648Z 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-08-26T20:11:58.5777360Z 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-08-26T20:11:58.5783560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5789211Z 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-08-26T20:11:58.5795137Z 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-08-26T20:11:58.5800866Z 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-08-26T20:11:58.5807134Z 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-08-26T20:11:58.5812961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5830917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5832085Z 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-08-26T20:11:58.5833216Z 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-08-26T20:11:58.5836546Z 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-08-26T20:11:58.5842476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5848271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5854168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.5860240Z 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-08-26T20:11:58.6594838Z 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-08-26T20:11:58.6600562Z 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-08-26T20:11:58.6606320Z 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-08-26T20:11:58.6612018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6617836Z 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-08-26T20:11:58.6623761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6629500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6635314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6640886Z 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-08-26T20:11:58.6646453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6651804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6657334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6663089Z 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-08-26T20:11:58.6668756Z 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-08-26T20:11:58.6674411Z 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-08-26T20:11:58.6679881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6685372Z 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-08-26T20:11:58.6690966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6696948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6702299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6707768Z 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-08-26T20:11:58.6713420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6719335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6725060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6731011Z 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-08-26T20:11:58.6736894Z 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-08-26T20:11:58.6742727Z 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-08-26T20:11:58.6748617Z 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-08-26T20:11:58.6754530Z 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-08-26T20:11:58.6765816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6771558Z 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-08-26T20:11:58.6777235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6783268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6788864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6794924Z 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-08-26T20:11:58.6800848Z 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-08-26T20:11:58.6806587Z 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-08-26T20:11:58.6812568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6818311Z 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-08-26T20:11:58.6823947Z 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-08-26T20:11:58.6829711Z 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-08-26T20:11:58.6835540Z 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-08-26T20:11:58.6841260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6848386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6853966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6859800Z 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-08-26T20:11:58.6865383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6871074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6876759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6882041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6887690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6893325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6899373Z 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-08-26T20:11:58.6904999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6910762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.6926919Z 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-08-26T20:11:58.6928101Z 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-08-26T20:11:58.6930188Z 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-08-26T20:11:58.6936316Z 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-08-26T20:11:58.6943596Z 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-08-26T20:11:58.6949821Z 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-08-26T20:11:58.6955599Z 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-08-26T20:11:58.6962081Z 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-08-26T20:11:58.6967309Z 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-08-26T20:11:58.6973260Z 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-08-26T20:11:58.6979353Z 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-08-26T20:11:58.6985233Z 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-08-26T20:11:58.6991015Z 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-08-26T20:11:58.6997060Z 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-08-26T20:11:58.7003091Z 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-08-26T20:11:58.7009183Z 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-08-26T20:11:58.7015187Z 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-08-26T20:11:58.7021262Z 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-08-26T20:11:58.7027069Z 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-08-26T20:11:58.7032760Z 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-08-26T20:11:58.7038898Z 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-08-26T20:11:58.7045082Z 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-08-26T20:11:58.7051086Z 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-08-26T20:11:58.7061927Z 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-08-26T20:11:58.7065713Z 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-08-26T20:11:58.7071844Z 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-08-26T20:11:58.7077203Z 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-08-26T20:11:58.7082933Z 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-08-26T20:11:58.7088927Z 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-08-26T20:11:58.7095204Z 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-08-26T20:11:58.7100976Z 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-08-26T20:11:58.7106749Z 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-08-26T20:11:58.7112636Z 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-08-26T20:11:58.7118604Z 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-08-26T20:11:58.7124497Z 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-08-26T20:11:58.7130364Z 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-08-26T20:11:58.7136408Z 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-08-26T20:11:58.7142132Z 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-08-26T20:11:58.7147850Z 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-08-26T20:11:58.7153899Z 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-08-26T20:11:58.7160151Z 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-08-26T20:11:58.7166026Z 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-08-26T20:11:58.7171780Z 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-08-26T20:11:58.7177905Z 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-08-26T20:11:58.7184486Z 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-08-26T20:11:58.7190396Z 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-08-26T20:11:58.7196503Z 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-08-26T20:11:58.7202421Z 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-08-26T20:11:58.7208633Z 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-08-26T20:11:58.7214421Z 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-08-26T20:11:58.7220529Z 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-08-26T20:11:58.7226200Z 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-08-26T20:11:58.7231619Z 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-08-26T20:11:58.7237434Z 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-08-26T20:11:58.7243397Z 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-08-26T20:11:58.7249623Z 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-08-26T20:11:58.7255336Z 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-08-26T20:11:58.7261124Z 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-08-26T20:11:58.7267572Z 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-08-26T20:11:58.7273687Z 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-08-26T20:11:58.7279629Z 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-08-26T20:11:58.7285567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7291018Z 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-08-26T20:11:58.7296495Z 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-08-26T20:11:58.7302081Z 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-08-26T20:11:58.7307848Z 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-08-26T20:11:58.7313617Z 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-08-26T20:11:58.7319460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7325693Z 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-08-26T20:11:58.7337858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7343590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7349339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7355375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7361721Z 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-08-26T20:11:58.7367932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7375296Z 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-08-26T20:11:58.7381112Z 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-08-26T20:11:58.7387027Z 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-08-26T20:11:58.7393032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7398794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7404643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7411719Z 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-08-26T20:11:58.7418718Z 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-08-26T20:11:58.7424985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7432236Z 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-08-26T20:11:58.7438242Z 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-08-26T20:11:58.7444167Z 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-08-26T20:11:58.7451026Z 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-08-26T20:11:58.7457065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7463021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7468814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7474394Z 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-08-26T20:11:58.7502188Z 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-08-26T20:11:58.7507872Z 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-08-26T20:11:58.7513968Z 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-08-26T20:11:58.7519688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7525664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7531403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7537144Z 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-08-26T20:11:58.7542779Z 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-08-26T20:11:58.7549017Z 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-08-26T20:11:58.7554936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7560701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7566755Z 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-08-26T20:11:58.7572864Z 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-08-26T20:11:58.7578383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7584128Z 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-08-26T20:11:58.7591684Z 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-08-26T20:11:58.7597373Z 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-08-26T20:11:58.7603721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7609418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7614952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7621250Z 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-08-26T20:11:58.7626861Z 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-08-26T20:11:58.7633174Z 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-08-26T20:11:58.7638870Z 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-08-26T20:11:58.7644551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7650340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7656892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7662551Z 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-08-26T20:11:58.7668036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7673803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7679458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7684961Z 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-08-26T20:11:58.7691461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7697297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7703132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7709547Z 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-08-26T20:11:58.7715234Z 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-08-26T20:11:58.7721677Z 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-08-26T20:11:58.7728018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7733642Z 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-08-26T20:11:58.7739786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7745700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7751845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7758103Z 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-08-26T20:11:58.7763908Z 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-08-26T20:11:58.7769669Z 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-08-26T20:11:58.7775551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7781459Z 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-08-26T20:11:58.7787246Z 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-08-26T20:11:58.7793551Z 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-08-26T20:11:58.7799699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7805492Z 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-08-26T20:11:58.7812537Z 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-08-26T20:11:58.7818298Z 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-08-26T20:11:58.7824637Z 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-08-26T20:11:58.7830873Z 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-08-26T20:11:58.7837100Z 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-08-26T20:11:58.7842997Z 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-08-26T20:11:58.7860568Z 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-08-26T20:11:58.7866964Z 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-08-26T20:11:58.7873091Z 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-08-26T20:11:58.7879081Z 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-08-26T20:11:58.7891776Z 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-08-26T20:11:58.7898105Z 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-08-26T20:11:58.7904670Z 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-08-26T20:11:58.7910663Z 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-08-26T20:11:58.7916694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7923404Z 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-08-26T20:11:58.7930786Z 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-08-26T20:11:58.7936938Z 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-08-26T20:11:58.7943590Z 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-08-26T20:11:58.7949631Z 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-08-26T20:11:58.7956007Z 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-08-26T20:11:58.7962313Z 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-08-26T20:11:58.7968662Z 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-08-26T20:11:58.7974456Z 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-08-26T20:11:58.7980787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.7986717Z 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-08-26T20:11:58.7992966Z 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-08-26T20:11:58.7999306Z 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-08-26T20:11:58.8005629Z 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-08-26T20:11:58.8011755Z 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-08-26T20:11:58.8017754Z 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-08-26T20:11:58.8023842Z 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-08-26T20:11:58.8029654Z 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-08-26T20:11:58.8036835Z 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-08-26T20:11:58.8042868Z 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-08-26T20:11:58.8049254Z 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-08-26T20:11:58.8055086Z 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-08-26T20:11:58.8061017Z 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-08-26T20:11:58.8067385Z 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-08-26T20:11:58.8073537Z 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-08-26T20:11:58.8083908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.8089815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.8095731Z 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-08-26T20:11:58.8102893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.8108529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.8114814Z 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-08-26T20:11:58.8124609Z 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-08-26T20:11:58.8130602Z 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-08-26T20:11:58.8136901Z 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-08-26T20:11:58.8143320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.8148898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.8154357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:58.8160528Z 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-08-26T20:11:58.8166558Z 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-08-26T20:11:59.0080942Z 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-08-26T20:11:59.0087068Z 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-08-26T20:11:59.0093121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0164945Z 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-08-26T20:11:59.0184472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0190555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0196596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0202856Z 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-08-26T20:11:59.0209232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0215577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0222483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0229138Z 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-08-26T20:11:59.0252300Z 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-08-26T20:11:59.0258497Z 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-08-26T20:11:59.0263846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0269768Z 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-08-26T20:11:59.0275616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0281636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0288468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0294494Z 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-08-26T20:11:59.0300186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0306389Z 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-08-26T20:11:59.0312491Z 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-08-26T20:11:59.0319140Z 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-08-26T20:11:59.0325535Z 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-08-26T20:11:59.0331357Z 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-08-26T20:11:59.0337181Z 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-08-26T20:11:59.0343039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0348767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0354793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0365971Z 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-08-26T20:11:59.0372558Z 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-08-26T20:11:59.0378426Z 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-08-26T20:11:59.0384442Z 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-08-26T20:11:59.0390404Z 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-08-26T20:11:59.0396298Z 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-08-26T20:11:59.0403180Z 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-08-26T20:11:59.0409140Z 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-08-26T20:11:59.0415321Z 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-08-26T20:11:59.0421068Z 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-08-26T20:11:59.0427030Z 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-08-26T20:11:59.0481732Z 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-08-26T20:11:59.0523165Z 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-08-26T20:11:59.0529280Z 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-08-26T20:11:59.0537038Z 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-08-26T20:11:59.0543083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0549290Z 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-08-26T20:11:59.0555566Z 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-08-26T20:11:59.0561406Z 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-08-26T20:11:59.0568839Z 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-08-26T20:11:59.0573827Z 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-08-26T20:11:59.0580126Z 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-08-26T20:11:59.0585936Z 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-08-26T20:11:59.0591786Z 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-08-26T20:11:59.0597802Z 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-08-26T20:11:59.0603845Z 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-08-26T20:11:59.0609830Z 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-08-26T20:11:59.0615667Z 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-08-26T20:11:59.0621493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0627727Z 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-08-26T20:11:59.0633686Z 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-08-26T20:11:59.0639778Z 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-08-26T20:11:59.0645724Z 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-08-26T20:11:59.0651626Z 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-08-26T20:11:59.0657921Z 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-08-26T20:11:59.0664162Z 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-08-26T20:11:59.0670044Z 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-08-26T20:11:59.0676015Z 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-08-26T20:11:59.0681937Z 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-08-26T20:11:59.0687935Z 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-08-26T20:11:59.0693789Z 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-08-26T20:11:59.0699613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0705427Z 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-08-26T20:11:59.0711480Z 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-08-26T20:11:59.0716902Z 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-08-26T20:11:59.0722605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0728174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0733952Z 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-08-26T20:11:59.0739699Z 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-08-26T20:11:59.0745581Z 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-08-26T20:11:59.0752035Z 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-08-26T20:11:59.0758210Z 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-08-26T20:11:59.0771079Z 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-08-26T20:11:59.0776877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0782835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0788702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0794280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0800305Z 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-08-26T20:11:59.0806425Z 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-08-26T20:11:59.0812244Z 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-08-26T20:11:59.0818084Z 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-08-26T20:11:59.0824373Z 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-08-26T20:11:59.0830240Z 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-08-26T20:11:59.0836168Z 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-08-26T20:11:59.0842412Z 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-08-26T20:11:59.0848707Z 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-08-26T20:11:59.0854509Z 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-08-26T20:11:59.0860963Z 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-08-26T20:11:59.0866600Z 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-08-26T20:11:59.0872298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0878443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0884174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0890340Z 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-08-26T20:11:59.0896485Z 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-08-26T20:11:59.0902930Z 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-08-26T20:11:59.0908910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0915289Z 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-08-26T20:11:59.0921861Z 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-08-26T20:11:59.0927580Z 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-08-26T20:11:59.0934131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0940776Z 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-08-26T20:11:59.0946933Z 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-08-26T20:11:59.0953160Z 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-08-26T20:11:59.0959063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0964850Z 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-08-26T20:11:59.0970691Z 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-08-26T20:11:59.0976535Z 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-08-26T20:11:59.0982474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.0988327Z 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-08-26T20:11:59.0994053Z 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-08-26T20:11:59.0999810Z 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-08-26T20:11:59.1005451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1011166Z 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-08-26T20:11:59.1016997Z 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-08-26T20:11:59.1022698Z 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-08-26T20:11:59.1028330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1034135Z 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-08-26T20:11:59.1039791Z 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-08-26T20:11:59.1045721Z 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-08-26T20:11:59.1051349Z 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-08-26T20:11:59.1057242Z 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-08-26T20:11:59.1063573Z 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-08-26T20:11:59.1068994Z 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-08-26T20:11:59.1074634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1080312Z 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-08-26T20:11:59.1086445Z 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-08-26T20:11:59.1092238Z 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-08-26T20:11:59.1098078Z 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-08-26T20:11:59.1104293Z 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-08-26T20:11:59.1110092Z 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-08-26T20:11:59.1116541Z 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-08-26T20:11:59.1122206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1128025Z 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-08-26T20:11:59.1133590Z 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-08-26T20:11:59.1139399Z 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-08-26T20:11:59.1144950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1150790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1156142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1162114Z 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-08-26T20:11:59.1168125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1173721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1179342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1185198Z 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-08-26T20:11:59.1190737Z 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-08-26T20:11:59.1196550Z 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-08-26T20:11:59.1202192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1208116Z 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-08-26T20:11:59.1213727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1219756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1225475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1231134Z 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-08-26T20:11:59.1236609Z 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-08-26T20:11:59.1242881Z 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-08-26T20:11:59.1248800Z 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-08-26T20:11:59.1254577Z 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-08-26T20:11:59.1260273Z 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-08-26T20:11:59.1266027Z 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-08-26T20:11:59.1271570Z 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-08-26T20:11:59.1277588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1283353Z 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-08-26T20:11:59.1289376Z 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-08-26T20:11:59.1295349Z 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-08-26T20:11:59.1300772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1306346Z 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-08-26T20:11:59.1311858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1317404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1323481Z 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-08-26T20:11:59.1329343Z 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-08-26T20:11:59.1335985Z 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-08-26T20:11:59.1342158Z 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-08-26T20:11:59.1348669Z 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-08-26T20:11:59.1355182Z 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-08-26T20:11:59.1361782Z 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-08-26T20:11:59.1368285Z 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-08-26T20:11:59.1374655Z 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-08-26T20:11:59.1380691Z 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-08-26T20:11:59.1386510Z 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-08-26T20:11:59.1393404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1398949Z 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-08-26T20:11:59.1404691Z 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-08-26T20:11:59.1410522Z 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-08-26T20:11:59.1416379Z 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-08-26T20:11:59.1421977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1427677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1433396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1439327Z 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-08-26T20:11:59.1445185Z 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-08-26T20:11:59.1450931Z 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-08-26T20:11:59.1456451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1462146Z 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-08-26T20:11:59.1467728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1473306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1478963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1484697Z 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-08-26T20:11:59.1500953Z 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-08-26T20:11:59.1501972Z 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-08-26T20:11:59.1503124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1544649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1545607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1546724Z 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-08-26T20:11:59.1547874Z 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-08-26T20:11:59.1548875Z 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-08-26T20:11:59.1550011Z 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-08-26T20:11:59.1551258Z 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-08-26T20:11:59.1554608Z 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-08-26T20:11:59.1561379Z 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-08-26T20:11:59.1566776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1572351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1578410Z 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-08-26T20:11:59.1584509Z 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-08-26T20:11:59.1590355Z 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-08-26T20:11:59.1596069Z 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-08-26T20:11:59.1601929Z 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-08-26T20:11:59.1608010Z 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-08-26T20:11:59.1613691Z 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-08-26T20:11:59.1619687Z 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-08-26T20:11:59.1625767Z 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-08-26T20:11:59.1631658Z 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-08-26T20:11:59.1637280Z 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-08-26T20:11:59.1642981Z 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-08-26T20:11:59.1648807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1654589Z 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-08-26T20:11:59.1660345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1666034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1671841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1677944Z 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-08-26T20:11:59.1683642Z 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-08-26T20:11:59.1689683Z 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-08-26T20:11:59.1696006Z 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-08-26T20:11:59.1701498Z 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-08-26T20:11:59.1707184Z 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-08-26T20:11:59.1713158Z 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-08-26T20:11:59.1718876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1724570Z 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-08-26T20:11:59.1730427Z 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-08-26T20:11:59.1736381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1742272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1754239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1760099Z 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-08-26T20:11:59.1765788Z 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-08-26T20:11:59.1771865Z 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-08-26T20:11:59.1777591Z 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-08-26T20:11:59.1783713Z 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-08-26T20:11:59.1789787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1795365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1801685Z 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-08-26T20:11:59.1807817Z 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-08-26T20:11:59.1813519Z 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-08-26T20:11:59.1819350Z 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-08-26T20:11:59.1860791Z 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-08-26T20:11:59.1866894Z 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-08-26T20:11:59.1872749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1879081Z 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-08-26T20:11:59.1885342Z 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-08-26T20:11:59.1891047Z 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-08-26T20:11:59.1897122Z 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-08-26T20:11:59.1902827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1909595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1914483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1920715Z 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-08-26T20:11:59.1926616Z 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-08-26T20:11:59.1932416Z 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-08-26T20:11:59.1938466Z 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-08-26T20:11:59.1944212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1949858Z 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-08-26T20:11:59.1955449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1960845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1966357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.1972267Z 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-08-26T20:11:59.1978229Z 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-08-26T20:11:59.1984008Z 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-08-26T20:11:59.1989632Z 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-08-26T20:11:59.1995135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2000672Z 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-08-26T20:11:59.2006305Z 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-08-26T20:11:59.2011839Z 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-08-26T20:11:59.2017472Z 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-08-26T20:11:59.2023309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2028858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2034614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2040335Z 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-08-26T20:11:59.2045877Z 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-08-26T20:11:59.2051600Z 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-08-26T20:11:59.2057201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2062337Z 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-08-26T20:11:59.2068164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2073750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2079362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2084863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2091421Z 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-08-26T20:11:59.2097654Z 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-08-26T20:11:59.2103400Z 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-08-26T20:11:59.2109080Z 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-08-26T20:11:59.2115437Z 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-08-26T20:11:59.2121224Z 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-08-26T20:11:59.2127187Z 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-08-26T20:11:59.2133476Z 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-08-26T20:11:59.2139321Z 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-08-26T20:11:59.2145278Z 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-08-26T20:11:59.2151182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2157113Z 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-08-26T20:11:59.2163089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2169021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2175097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2180901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2187200Z 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-08-26T20:11:59.2192793Z 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-08-26T20:11:59.2198933Z 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-08-26T20:11:59.2204615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2210455Z 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-08-26T20:11:59.2216223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2221942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2232438Z 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-08-26T20:11:59.2238047Z 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-08-26T20:11:59.2243996Z 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-08-26T20:11:59.2249891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2255395Z 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-08-26T20:11:59.2261686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2271381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2276887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2282436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2288690Z 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-08-26T20:11:59.2294787Z 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-08-26T20:11:59.2300537Z 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-08-26T20:11:59.2306416Z 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-08-26T20:11:59.2312303Z 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-08-26T20:11:59.2318284Z 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-08-26T20:11:59.2324122Z 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-08-26T20:11:59.2330161Z 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-08-26T20:11:59.2336471Z 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-08-26T20:11:59.2342306Z 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-08-26T20:11:59.2348029Z 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-08-26T20:11:59.2353670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2359158Z 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-08-26T20:11:59.2364916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2370674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2376312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2381785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2387944Z 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-08-26T20:11:59.2393427Z 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-08-26T20:11:59.2399176Z 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-08-26T20:11:59.2404910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2410477Z 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-08-26T20:11:59.2416151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2421917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2427372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2433152Z 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-08-26T20:11:59.2438827Z 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-08-26T20:11:59.2445030Z 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-08-26T20:11:59.2450606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2456150Z 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-08-26T20:11:59.2461720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2467346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2473079Z 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-08-26T20:11:59.2484713Z 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-08-26T20:11:59.2489517Z 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-08-26T20:11:59.2495002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2500197Z 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-08-26T20:11:59.2505730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2511437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2516713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2522575Z 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-08-26T20:11:59.2528132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2533420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2538657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2544271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2550188Z 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-08-26T20:11:59.2556046Z 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-08-26T20:11:59.2561632Z 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-08-26T20:11:59.2568157Z 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-08-26T20:11:59.2573912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2580113Z 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-08-26T20:11:59.2585847Z 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-08-26T20:11:59.2591477Z 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-08-26T20:11:59.2597318Z 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-08-26T20:11:59.2610427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2616747Z 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-08-26T20:11:59.2622505Z 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-08-26T20:11:59.2628751Z 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-08-26T20:11:59.2634004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2639631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2645475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2651917Z 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-08-26T20:11:59.2657905Z 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-08-26T20:11:59.2663804Z 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-08-26T20:11:59.2669679Z 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-08-26T20:11:59.2675488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2681281Z 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-08-26T20:11:59.2687440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2693420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2698979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2705047Z 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-08-26T20:11:59.2710848Z 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-08-26T20:11:59.2717194Z 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-08-26T20:11:59.2723122Z 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-08-26T20:11:59.2728991Z 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-08-26T20:11:59.2735143Z 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-08-26T20:11:59.2741085Z 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-08-26T20:11:59.2747012Z 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-08-26T20:11:59.2753292Z 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-08-26T20:11:59.2764037Z 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-08-26T20:11:59.2770250Z 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-08-26T20:11:59.2776420Z 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-08-26T20:11:59.2782361Z 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-08-26T20:11:59.2788918Z 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-08-26T20:11:59.2795260Z 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-08-26T20:11:59.2801046Z 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-08-26T20:11:59.2807106Z 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-08-26T20:11:59.2813110Z 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-08-26T20:11:59.2819174Z 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-08-26T20:11:59.2825017Z 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-08-26T20:11:59.2831402Z 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-08-26T20:11:59.2837419Z 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-08-26T20:11:59.2843465Z 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-08-26T20:11:59.2849847Z 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-08-26T20:11:59.2855984Z 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-08-26T20:11:59.2862061Z 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-08-26T20:11:59.2867911Z 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-08-26T20:11:59.2873805Z 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-08-26T20:11:59.2880007Z 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-08-26T20:11:59.2886086Z 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-08-26T20:11:59.2892244Z 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-08-26T20:11:59.2898028Z 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-08-26T20:11:59.2905711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2911301Z 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-08-26T20:11:59.2916975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2922553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.2928400Z 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-08-26T20:11:59.2934505Z 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-08-26T20:11:59.2941160Z 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-08-26T20:11:59.2957816Z 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-08-26T20:11:59.2964301Z 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-08-26T20:11:59.2970614Z 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-08-26T20:11:59.2976688Z 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-08-26T20:11:59.2983115Z 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-08-26T20:11:59.2989089Z 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-08-26T20:11:59.2995075Z 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-08-26T20:11:59.3001477Z 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-08-26T20:11:59.3007483Z 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-08-26T20:11:59.3013568Z 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-08-26T20:11:59.3019602Z 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-08-26T20:11:59.3025298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3038188Z 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-08-26T20:11:59.3044828Z 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-08-26T20:11:59.3049661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3055312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3061035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3066527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3072760Z 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-08-26T20:11:59.3078473Z 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-08-26T20:11:59.3084517Z 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-08-26T20:11:59.3090356Z 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-08-26T20:11:59.3096218Z 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-08-26T20:11:59.3102508Z 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-08-26T20:11:59.3108423Z 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-08-26T20:11:59.3114580Z 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-08-26T20:11:59.3120230Z 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-08-26T20:11:59.3126296Z 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-08-26T20:11:59.3131981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3137698Z 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-08-26T20:11:59.3143348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3149344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3155013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3160757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3166855Z 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-08-26T20:11:59.3172688Z 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-08-26T20:11:59.3178790Z 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-08-26T20:11:59.3184628Z 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-08-26T20:11:59.3190757Z 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-08-26T20:11:59.3196650Z 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-08-26T20:11:59.3202871Z 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-08-26T20:11:59.3208712Z 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-08-26T20:11:59.3214355Z 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-08-26T20:11:59.3220124Z 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-08-26T20:11:59.3226068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3231928Z 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-08-26T20:11:59.3237580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3243315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3249338Z 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-08-26T20:11:59.3255562Z 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-08-26T20:11:59.3261350Z 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-08-26T20:11:59.3267287Z 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-08-26T20:11:59.3273023Z 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-08-26T20:11:59.3279038Z 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-08-26T20:11:59.3284638Z 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-08-26T20:11:59.3290695Z 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-08-26T20:11:59.3296274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3302735Z 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-08-26T20:11:59.3308590Z 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-08-26T20:11:59.3314183Z 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-08-26T20:11:59.3319949Z 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-08-26T20:11:59.3325670Z 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-08-26T20:11:59.3331506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3337193Z 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-08-26T20:11:59.3342748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3348525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3354147Z 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-08-26T20:11:59.3360055Z 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-08-26T20:11:59.3365701Z 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-08-26T20:11:59.3371521Z 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-08-26T20:11:59.3377240Z 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-08-26T20:11:59.3383325Z 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-08-26T20:11:59.3389683Z 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-08-26T20:11:59.3395478Z 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-08-26T20:11:59.3401265Z 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-08-26T20:11:59.3438185Z 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-08-26T20:11:59.3441486Z 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-08-26T20:11:59.3447777Z 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-08-26T20:11:59.3486367Z 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-08-26T20:11:59.3486983Z 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-08-26T20:11:59.3487597Z 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-08-26T20:11:59.3488086Z 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-08-26T20:11:59.3488536Z 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-08-26T20:11:59.3489026Z 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-08-26T20:11:59.3494593Z 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-08-26T20:11:59.3500492Z 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-08-26T20:11:59.3506567Z 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-08-26T20:11:59.3512572Z 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-08-26T20:11:59.3518666Z 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-08-26T20:11:59.3524649Z 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-08-26T20:11:59.3530876Z 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-08-26T20:11:59.3537426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3542458Z 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-08-26T20:11:59.3548114Z 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-08-26T20:11:59.3553827Z 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-08-26T20:11:59.3559454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3565477Z 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-08-26T20:11:59.3571500Z 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-08-26T20:11:59.3578084Z 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-08-26T20:11:59.3583203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.3588956Z 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-08-26T20:11:59.3595170Z 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-08-26T20:11:59.3600881Z 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-08-26T20:11:59.3607234Z 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-08-26T20:11:59.3613137Z 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-08-26T20:11:59.3619079Z 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-08-26T20:11:59.3624992Z 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-08-26T20:11:59.3630779Z 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-08-26T20:11:59.3637210Z 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-08-26T20:11:59.3643130Z 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-08-26T20:11:59.3649502Z 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-08-26T20:11:59.3655270Z 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-08-26T20:11:59.3661123Z 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-08-26T20:11:59.3667217Z 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-08-26T20:11:59.3672934Z 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-08-26T20:11:59.3678716Z 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-08-26T20:11:59.3705634Z 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-08-26T20:11:59.3711559Z 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-08-26T20:11:59.3717397Z 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-08-26T20:11:59.3723309Z 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-08-26T20:11:59.3729288Z 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-08-26T20:11:59.3736476Z 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-08-26T20:11:59.3741705Z 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-08-26T20:11:59.3747615Z 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-08-26T20:11:59.3753735Z 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-08-26T20:11:59.3759736Z 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-08-26T20:11:59.3771043Z 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-08-26T20:11:59.3777210Z 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-08-26T20:11:59.3783388Z 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-08-26T20:11:59.3789665Z 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-08-26T20:11:59.3796415Z 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-08-26T20:11:59.3802450Z 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-08-26T20:11:59.3808425Z 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-08-26T20:11:59.3814503Z 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-08-26T20:11:59.3820424Z 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-08-26T20:11:59.3826773Z 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-08-26T20:11:59.3860427Z 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-08-26T20:11:59.3866612Z 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-08-26T20:11:59.3872346Z 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-08-26T20:11:59.3878136Z 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-08-26T20:11:59.3884048Z 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-08-26T20:11:59.3890142Z 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-08-26T20:11:59.3896615Z 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-08-26T20:11:59.3902439Z 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-08-26T20:11:59.3908357Z 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-08-26T20:11:59.3914608Z 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-08-26T20:11:59.3920387Z 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-08-26T20:11:59.3927275Z 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-08-26T20:11:59.3933038Z 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-08-26T20:11:59.3938621Z 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-08-26T20:11:59.3945866Z 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-08-26T20:11:59.3958509Z 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-08-26T20:11:59.3959732Z 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-08-26T20:11:59.3965069Z 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-08-26T20:11:59.3971523Z 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-08-26T20:11:59.3977435Z 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-08-26T20:11:59.3983452Z 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-08-26T20:11:59.3989532Z 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-08-26T20:11:59.3995544Z 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-08-26T20:11:59.4002910Z 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-08-26T20:11:59.4018104Z 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-08-26T20:11:59.4022631Z 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-08-26T20:11:59.4028952Z 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-08-26T20:11:59.4034994Z 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-08-26T20:11:59.4041141Z 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-08-26T20:11:59.4047219Z 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-08-26T20:11:59.4053188Z 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-08-26T20:11:59.4059114Z 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-08-26T20:11:59.4065192Z 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-08-26T20:11:59.4071227Z 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-08-26T20:11:59.4077199Z 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-08-26T20:11:59.4083570Z 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-08-26T20:11:59.4089495Z 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-08-26T20:11:59.4095254Z 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-08-26T20:11:59.4101308Z 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-08-26T20:11:59.4107417Z 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-08-26T20:11:59.4113441Z 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-08-26T20:11:59.4119835Z 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-08-26T20:11:59.4125966Z 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-08-26T20:11:59.4132062Z 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-08-26T20:11:59.4138766Z 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-08-26T20:11:59.4144666Z 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-08-26T20:11:59.4155839Z 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-08-26T20:11:59.4161873Z 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-08-26T20:11:59.4168138Z 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-08-26T20:11:59.4174186Z 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-08-26T20:11:59.4180669Z 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-08-26T20:11:59.4186365Z 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-08-26T20:11:59.4192174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4198571Z 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-08-26T20:11:59.4204986Z 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-08-26T20:11:59.4210809Z 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-08-26T20:11:59.4216714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4223089Z 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-08-26T20:11:59.4229085Z 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-08-26T20:11:59.4234938Z 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-08-26T20:11:59.4241112Z 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-08-26T20:11:59.4246936Z 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-08-26T20:11:59.4252857Z 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-08-26T20:11:59.4258705Z 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-08-26T20:11:59.4265045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4270775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4276883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4288147Z 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-08-26T20:11:59.4294265Z 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-08-26T20:11:59.4300171Z 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-08-26T20:11:59.4306231Z 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-08-26T20:11:59.4312337Z 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-08-26T20:11:59.4318224Z 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-08-26T20:11:59.4324353Z 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-08-26T20:11:59.4330506Z 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-08-26T20:11:59.4336640Z 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-08-26T20:11:59.4342786Z 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-08-26T20:11:59.4348693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4354842Z 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-08-26T20:11:59.4360636Z 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-08-26T20:11:59.4366358Z 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-08-26T20:11:59.4377344Z 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-08-26T20:11:59.4383816Z 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-08-26T20:11:59.4389493Z 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-08-26T20:11:59.4395491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4401520Z 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-08-26T20:11:59.4407428Z 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-08-26T20:11:59.4413119Z 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-08-26T20:11:59.4419137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4425620Z 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-08-26T20:11:59.4431393Z 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-08-26T20:11:59.4436944Z 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-08-26T20:11:59.4442693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4448914Z 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-08-26T20:11:59.4455037Z 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-08-26T20:11:59.4461280Z 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-08-26T20:11:59.4467150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4473117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4479274Z 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-08-26T20:11:59.4485086Z 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-08-26T20:11:59.4491149Z 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-08-26T20:11:59.4497180Z 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-08-26T20:11:59.4503219Z 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-08-26T20:11:59.4509824Z 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-08-26T20:11:59.4554551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4555711Z 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-08-26T20:11:59.4556943Z 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-08-26T20:11:59.4557955Z 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-08-26T20:11:59.4559066Z 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-08-26T20:11:59.4560236Z 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-08-26T20:11:59.4561565Z 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-08-26T20:11:59.4568304Z 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-08-26T20:11:59.4578932Z 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-08-26T20:11:59.4584499Z 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-08-26T20:11:59.4591287Z 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-08-26T20:11:59.4597115Z 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-08-26T20:11:59.4602895Z 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-08-26T20:11:59.4608921Z 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-08-26T20:11:59.4615549Z 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-08-26T20:11:59.4621532Z 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-08-26T20:11:59.4627319Z 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-08-26T20:11:59.4633355Z 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-08-26T20:11:59.4639139Z 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-08-26T20:11:59.4645362Z 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-08-26T20:11:59.4651552Z 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-08-26T20:11:59.4657441Z 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-08-26T20:11:59.4663368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4669112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4675422Z 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-08-26T20:11:59.4681044Z 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-08-26T20:11:59.4686940Z 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-08-26T20:11:59.4692944Z 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-08-26T20:11:59.4698798Z 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-08-26T20:11:59.4705056Z 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-08-26T20:11:59.4710856Z 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-08-26T20:11:59.4716928Z 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-08-26T20:11:59.4722400Z 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-08-26T20:11:59.4733595Z 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-08-26T20:11:59.4739518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4745512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4751858Z 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-08-26T20:11:59.4758042Z 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-08-26T20:11:59.4763679Z 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-08-26T20:11:59.4769411Z 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-08-26T20:11:59.4775134Z 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-08-26T20:11:59.4780995Z 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-08-26T20:11:59.4786674Z 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-08-26T20:11:59.4792770Z 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-08-26T20:11:59.4798378Z 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-08-26T20:11:59.4804726Z 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-08-26T20:11:59.4811032Z 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-08-26T20:11:59.4816785Z 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-08-26T20:11:59.4822974Z 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-08-26T20:11:59.4828988Z 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-08-26T20:11:59.4835074Z 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-08-26T20:11:59.4841510Z 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-08-26T20:11:59.4847727Z 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-08-26T20:11:59.4853788Z 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-08-26T20:11:59.4860240Z 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-08-26T20:11:59.4866309Z 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-08-26T20:11:59.4872157Z 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-08-26T20:11:59.4878227Z 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-08-26T20:11:59.4884174Z 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-08-26T20:11:59.4901559Z 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-08-26T20:11:59.4908060Z 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-08-26T20:11:59.4914231Z 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-08-26T20:11:59.4920341Z 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-08-26T20:11:59.4926442Z 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-08-26T20:11:59.4932666Z 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-08-26T20:11:59.4938993Z 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-08-26T20:11:59.4945151Z 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-08-26T20:11:59.4951134Z 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-08-26T20:11:59.4975977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4977119Z 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-08-26T20:11:59.4978269Z 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-08-26T20:11:59.4979281Z 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-08-26T20:11:59.4983486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.4990195Z 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-08-26T20:11:59.4996222Z 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-08-26T20:11:59.5002430Z 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-08-26T20:11:59.5008595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.5014910Z 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-08-26T20:11:59.5020663Z 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-08-26T20:11:59.5027122Z 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-08-26T20:11:59.5032472Z 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-08-26T20:11:59.5038688Z 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-08-26T20:11:59.5049274Z 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-08-26T20:11:59.5055469Z 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-08-26T20:11:59.5061954Z 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-08-26T20:11:59.5067858Z 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-08-26T20:11:59.5073724Z 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-08-26T20:11:59.5079715Z 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-08-26T20:11:59.5085630Z 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-08-26T20:11:59.5091970Z 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-08-26T20:11:59.5126384Z 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-08-26T20:11:59.5132034Z 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-08-26T20:11:59.5137831Z 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-08-26T20:11:59.5144189Z 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-08-26T20:11:59.5150084Z 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-08-26T20:11:59.5156197Z 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-08-26T20:11:59.5167895Z 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-08-26T20:11:59.5173933Z 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-08-26T20:11:59.5179880Z 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-08-26T20:11:59.5185845Z 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-08-26T20:11:59.5191718Z 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-08-26T20:11:59.5198419Z 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-08-26T20:11:59.5204341Z 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-08-26T20:11:59.5210452Z 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-08-26T20:11:59.5216717Z 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-08-26T20:11:59.5222665Z 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-08-26T20:11:59.5228959Z 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-08-26T20:11:59.5234991Z 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-08-26T20:11:59.5240957Z 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-08-26T20:11:59.5247641Z 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-08-26T20:11:59.5254243Z 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-08-26T20:11:59.5259970Z 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-08-26T20:11:59.5266381Z 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-08-26T20:11:59.5272693Z 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-08-26T20:11:59.5278646Z 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-08-26T20:11:59.5284551Z 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-08-26T20:11:59.5291013Z 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-08-26T20:11:59.5297428Z 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-08-26T20:11:59.5303551Z 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-08-26T20:11:59.5309597Z 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-08-26T20:11:59.5315648Z 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-08-26T20:11:59.5321755Z 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-08-26T20:11:59.5327999Z 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-08-26T20:11:59.5334218Z 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-08-26T20:11:59.5340260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.5346658Z 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-08-26T20:11:59.5352555Z 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-08-26T20:11:59.5358490Z 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-08-26T20:11:59.5364560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.5370691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.5377241Z 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-08-26T20:11:59.5383558Z 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-08-26T20:11:59.5389465Z 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-08-26T20:11:59.5395020Z 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-08-26T20:11:59.5401283Z 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-08-26T20:11:59.5407450Z 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-08-26T20:11:59.5413593Z 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-08-26T20:11:59.5425124Z 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-08-26T20:11:59.5431261Z 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-08-26T20:11:59.5437060Z 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-08-26T20:11:59.5444552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.5451823Z 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-08-26T20:11:59.5465921Z 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-08-26T20:11:59.5466988Z 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-08-26T20:11:59.5469917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.5476171Z 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-08-26T20:11:59.5482107Z 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-08-26T20:11:59.5487951Z 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-08-26T20:11:59.5494671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.5501528Z 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-08-26T20:11:59.5506924Z 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-08-26T20:11:59.5512842Z 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-08-26T20:11:59.5519407Z 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-08-26T20:11:59.5525844Z 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-08-26T20:11:59.5531864Z 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-08-26T20:11:59.5538182Z 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-08-26T20:11:59.5544271Z 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-08-26T20:11:59.5550452Z 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-08-26T20:11:59.5556374Z 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-08-26T20:11:59.5567684Z 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-08-26T20:11:59.5573555Z 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-08-26T20:11:59.5580169Z 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-08-26T20:11:59.5586080Z 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-08-26T20:11:59.5592030Z 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-08-26T20:11:59.5598091Z 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-08-26T20:11:59.5604348Z 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-08-26T20:11:59.5614593Z 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-08-26T20:11:59.5620381Z 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-08-26T20:11:59.5626286Z 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-08-26T20:11:59.5632736Z 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-08-26T20:11:59.5638756Z 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-08-26T20:11:59.5644925Z 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-08-26T20:11:59.5651040Z 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-08-26T20:11:59.5657250Z 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-08-26T20:11:59.5663416Z 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-08-26T20:11:59.5677419Z 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-08-26T20:11:59.5683453Z 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-08-26T20:11:59.5689683Z 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-08-26T20:11:59.5696279Z 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-08-26T20:11:59.5702323Z 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-08-26T20:11:59.5713146Z 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-08-26T20:11:59.5719184Z 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-08-26T20:11:59.5725545Z 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-08-26T20:11:59.5731665Z 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-08-26T20:11:59.5737804Z 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-08-26T20:11:59.5743798Z 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-08-26T20:11:59.5749751Z 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-08-26T20:11:59.5756704Z 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-08-26T20:11:59.5762950Z 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-08-26T20:11:59.5769256Z 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-08-26T20:11:59.5775485Z 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-08-26T20:11:59.5782175Z 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-08-26T20:11:59.5789104Z 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-08-26T20:11:59.5794793Z 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-08-26T20:11:59.5801146Z 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-08-26T20:11:59.5807510Z 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-08-26T20:11:59.5814150Z 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-08-26T20:11:59.5820628Z 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-08-26T20:11:59.5847823Z 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-08-26T20:11:59.5853940Z 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-08-26T20:11:59.5863803Z 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-08-26T20:11:59.5870005Z 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-08-26T20:11:59.5876193Z 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-08-26T20:11:59.5882743Z 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-08-26T20:11:59.5888754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.5895967Z 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-08-26T20:11:59.5902081Z 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-08-26T20:11:59.5907998Z 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-08-26T20:11:59.5925068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.5931424Z 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-08-26T20:11:59.5938302Z 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-08-26T20:11:59.5944596Z 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-08-26T20:11:59.5950639Z 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-08-26T20:11:59.5957120Z 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-08-26T20:11:59.5975303Z 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-08-26T20:11:59.5976485Z 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-08-26T20:11:59.5981364Z 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-08-26T20:11:59.5987579Z 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-08-26T20:11:59.5993732Z 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-08-26T20:11:59.5999853Z 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-08-26T20:11:59.6005703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6012513Z 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-08-26T20:11:59.6018891Z 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-08-26T20:11:59.6024793Z 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-08-26T20:11:59.6030931Z 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-08-26T20:11:59.6036967Z 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-08-26T20:11:59.6042838Z 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-08-26T20:11:59.6048971Z 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-08-26T20:11:59.6054703Z 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-08-26T20:11:59.6065874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6072069Z 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-08-26T20:11:59.6078043Z 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-08-26T20:11:59.6088826Z 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-08-26T20:11:59.6093552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6100405Z 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-08-26T20:11:59.6106351Z 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-08-26T20:11:59.6112844Z 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-08-26T20:11:59.6118859Z 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-08-26T20:11:59.6124439Z 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-08-26T20:11:59.6130603Z 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-08-26T20:11:59.6136846Z 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-08-26T20:11:59.6142867Z 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-08-26T20:11:59.6148633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6159066Z 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-08-26T20:11:59.6165103Z 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-08-26T20:11:59.6170791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6176760Z 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-08-26T20:11:59.6183734Z 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-08-26T20:11:59.6189439Z 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-08-26T20:11:59.6195204Z 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-08-26T20:11:59.6201071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6206954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6212767Z 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-08-26T20:11:59.6219403Z 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-08-26T20:11:59.6225377Z 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-08-26T20:11:59.6231639Z 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-08-26T20:11:59.6237741Z 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-08-26T20:11:59.6243900Z 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-08-26T20:11:59.6250446Z 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-08-26T20:11:59.6255871Z 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-08-26T20:11:59.6261825Z 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-08-26T20:11:59.6267645Z 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-08-26T20:11:59.6274244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6279987Z 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-08-26T20:11:59.6286042Z 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-08-26T20:11:59.6291874Z 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-08-26T20:11:59.6297615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6303283Z 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-08-26T20:11:59.6308874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6314725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6320195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6326120Z 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-08-26T20:11:59.6331723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6337373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6343081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6348976Z 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-08-26T20:11:59.6354805Z 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-08-26T20:11:59.6360491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6366725Z 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-08-26T20:11:59.6372647Z 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-08-26T20:11:59.6378238Z 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-08-26T20:11:59.6384252Z 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-08-26T20:11:59.6390143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6395860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6401649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6407442Z 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-08-26T20:11:59.6413147Z 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-08-26T20:11:59.6419135Z 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-08-26T20:11:59.6425202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6431315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6437088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6442841Z 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-08-26T20:11:59.6448567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6454520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6460234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6465587Z 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-08-26T20:11:59.6504154Z 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-08-26T20:11:59.6505154Z 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-08-26T20:11:59.6506112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6507188Z 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-08-26T20:11:59.6508413Z 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-08-26T20:11:59.6528314Z 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-08-26T20:11:59.6533508Z 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-08-26T20:11:59.6539315Z 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-08-26T20:11:59.6553038Z 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-08-26T20:11:59.6558828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6564744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6570185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6575891Z 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-08-26T20:11:59.6581430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6587085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6592441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6598024Z 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-08-26T20:11:59.6603696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6609341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6615116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6620520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6626811Z 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-08-26T20:11:59.6632383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6637942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6644154Z 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-08-26T20:11:59.6650178Z 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-08-26T20:11:59.6655814Z 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-08-26T20:11:59.6661388Z 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-08-26T20:11:59.6666922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6672207Z 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-08-26T20:11:59.6677650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6683210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6688809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6694566Z 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-08-26T20:11:59.6700566Z 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-08-26T20:11:59.6706139Z 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-08-26T20:11:59.6711649Z 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-08-26T20:11:59.6717158Z 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-08-26T20:11:59.6723470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6729079Z 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-08-26T20:11:59.6734678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6740263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6745645Z 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-08-26T20:11:59.6751576Z 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-08-26T20:11:59.6757260Z 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-08-26T20:11:59.6762677Z 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-08-26T20:11:59.6768417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6774170Z 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-08-26T20:11:59.6779988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6785661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6820710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6826228Z 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-08-26T20:11:59.6831886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6837755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6843690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6849522Z 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-08-26T20:11:59.6855302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6861075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6866956Z 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-08-26T20:11:59.6872959Z 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-08-26T20:11:59.6878752Z 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-08-26T20:11:59.6884981Z 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-08-26T20:11:59.6891372Z 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-08-26T20:11:59.6897313Z 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-08-26T20:11:59.6903367Z 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-08-26T20:11:59.6909164Z 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-08-26T20:11:59.6915032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6921557Z 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-08-26T20:11:59.6927154Z 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-08-26T20:11:59.6933253Z 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-08-26T20:11:59.6938609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6944520Z 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-08-26T20:11:59.6950088Z 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-08-26T20:11:59.6955803Z 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-08-26T20:11:59.6961557Z 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-08-26T20:11:59.6969688Z 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-08-26T20:11:59.6974089Z 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-08-26T20:11:59.6994790Z 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-08-26T20:11:59.6995828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.6996920Z 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-08-26T20:11:59.7000821Z 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-08-26T20:11:59.7006940Z 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-08-26T20:11:59.7012894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7017121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7022667Z 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-08-26T20:11:59.7028566Z 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-08-26T20:11:59.7034250Z 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-08-26T20:11:59.7039880Z 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-08-26T20:11:59.7046922Z 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-08-26T20:11:59.7052702Z 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-08-26T20:11:59.7058542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7064179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7069491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7074739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7080736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7086785Z 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-08-26T20:11:59.7092380Z 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-08-26T20:11:59.7098149Z 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-08-26T20:11:59.7104036Z 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-08-26T20:11:59.7110121Z 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-08-26T20:11:59.7115751Z 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-08-26T20:11:59.7122168Z 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-08-26T20:11:59.7128236Z 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-08-26T20:11:59.7133725Z 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-08-26T20:11:59.7139382Z 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-08-26T20:11:59.7145328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7150661Z 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-08-26T20:11:59.7156184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7161707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7167659Z 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-08-26T20:11:59.7173174Z 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-08-26T20:11:59.7178893Z 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-08-26T20:11:59.7184387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7189768Z 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-08-26T20:11:59.7195629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7201101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7211663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7216972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7222965Z 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-08-26T20:11:59.7228541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7234291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7240288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7256017Z 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-08-26T20:11:59.7261771Z 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-08-26T20:11:59.7267632Z 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-08-26T20:11:59.7273565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7279669Z 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-08-26T20:11:59.7285388Z 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-08-26T20:11:59.7291539Z 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-08-26T20:11:59.7297476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7303408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7309668Z 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-08-26T20:11:59.7315469Z 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-08-26T20:11:59.7321600Z 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-08-26T20:11:59.7327663Z 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-08-26T20:11:59.7333899Z 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-08-26T20:11:59.7339887Z 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-08-26T20:11:59.7345801Z 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-08-26T20:11:59.7381047Z 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-08-26T20:11:59.7386874Z 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-08-26T20:11:59.7392767Z 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-08-26T20:11:59.7398784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7404615Z 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-08-26T20:11:59.7410562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7416374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7422165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7427937Z 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-08-26T20:11:59.7433510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7439123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7444544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7450275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7456315Z 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-08-26T20:11:59.7462070Z 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-08-26T20:11:59.7467902Z 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-08-26T20:11:59.7474414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7480511Z 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-08-26T20:11:59.7486530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7492286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7498415Z 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-08-26T20:11:59.7504146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7509210Z 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-08-26T20:11:59.7515286Z 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-08-26T20:11:59.7521028Z 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-08-26T20:11:59.7526490Z 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-08-26T20:11:59.7532650Z 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-08-26T20:11:59.7538377Z 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-08-26T20:11:59.7548112Z 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-08-26T20:11:59.7553980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7560020Z 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-08-26T20:11:59.7565850Z 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-08-26T20:11:59.7571467Z 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-08-26T20:11:59.7576930Z 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-08-26T20:11:59.7583147Z 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-08-26T20:11:59.7589134Z 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-08-26T20:11:59.7594712Z 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-08-26T20:11:59.7600568Z 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-08-26T20:11:59.7606273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7611833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7618080Z 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-08-26T20:11:59.7624023Z 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-08-26T20:11:59.7629989Z 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-08-26T20:11:59.7636180Z 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-08-26T20:11:59.7642347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:11:59.7648396Z 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-08-26T20:11:59.7654100Z 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-08-26T20:11:59.7659928Z 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-08-26T20:11:59.7665800Z 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-08-26T20:11:59.7671745Z 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-08-26T20:11:59.7677690Z 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-08-26T20:11:59.7684072Z 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-08-26T20:11:59.7690132Z 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-08-26T20:11:59.7696412Z 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-08-26T20:11:59.7702227Z 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-08-26T20:11:59.7708313Z 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-08-26T20:11:59.7715424Z 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-08-26T20:11:59.7721394Z 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-08-26T20:12:00.0146753Z 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-08-26T20:12:00.0153204Z 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-08-26T20:12:00.0159664Z 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-08-26T20:12:00.0170681Z 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-08-26T20:12:00.0177197Z 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-08-26T20:12:00.0183386Z 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-08-26T20:12:00.0189633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0195696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0202559Z 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-08-26T20:12:00.0209596Z 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-08-26T20:12:00.0216309Z 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-08-26T20:12:00.0223553Z 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-08-26T20:12:00.0231325Z 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-08-26T20:12:00.0237482Z 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-08-26T20:12:00.0243782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0249962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0256213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0262032Z 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-08-26T20:12:00.0268273Z 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-08-26T20:12:00.0274585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0280917Z 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-08-26T20:12:00.0287739Z 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-08-26T20:12:00.0293511Z 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-08-26T20:12:00.0299716Z 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-08-26T20:12:00.0305590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0311623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0317577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0323929Z 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-08-26T20:12:00.0329857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0335558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0345498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0351414Z 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-08-26T20:12:00.0357145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0362805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0369066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0378723Z 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-08-26T20:12:00.0384472Z 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-08-26T20:12:00.0390661Z 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-08-26T20:12:00.0396407Z 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-08-26T20:12:00.0403025Z 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-08-26T20:12:00.0409024Z 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-08-26T20:12:00.0415199Z 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-08-26T20:12:00.0421357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0427717Z 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-08-26T20:12:00.0434279Z 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-08-26T20:12:00.0440825Z 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-08-26T20:12:00.0448041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0454257Z 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-08-26T20:12:00.0460301Z 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-08-26T20:12:00.0466092Z 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-08-26T20:12:00.0471726Z 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-08-26T20:12:00.0477751Z 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-08-26T20:12:00.0484612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0490914Z 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-08-26T20:12:00.0496880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0502922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0508216Z 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-08-26T20:12:00.0514604Z 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-08-26T20:12:00.0520953Z 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-08-26T20:12:00.0527365Z 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-08-26T20:12:00.0534604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0541257Z 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-08-26T20:12:00.0547976Z 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-08-26T20:12:00.0554545Z 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-08-26T20:12:00.0561234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0569426Z 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-08-26T20:12:00.0573778Z 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-08-26T20:12:00.0579900Z 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-08-26T20:12:00.0587632Z 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-08-26T20:12:00.0592352Z 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-08-26T20:12:00.0599097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0604016Z 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-08-26T20:12:00.0610125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0615949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0621446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0627547Z 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-08-26T20:12:00.0633299Z 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-08-26T20:12:00.0639020Z 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-08-26T20:12:00.0645966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0651922Z 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-08-26T20:12:00.0657304Z 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-08-26T20:12:00.0662948Z 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-08-26T20:12:00.0668906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0674828Z 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-08-26T20:12:00.0680668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0686582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0692583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0702848Z 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-08-26T20:12:00.0708411Z 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-08-26T20:12:00.0714045Z 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-08-26T20:12:00.0719980Z 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-08-26T20:12:00.0726189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0740178Z 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-08-26T20:12:00.0746210Z 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-08-26T20:12:00.0752194Z 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-08-26T20:12:00.0758084Z 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-08-26T20:12:00.0763652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0768872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0774328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0780322Z 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-08-26T20:12:00.0786310Z 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-08-26T20:12:00.0792215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0798694Z 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-08-26T20:12:00.0804695Z 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-08-26T20:12:00.0810619Z 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-08-26T20:12:00.0817002Z 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-08-26T20:12:00.0822968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0828742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0835189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0841525Z 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-08-26T20:12:00.0881142Z 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-08-26T20:12:00.0887439Z 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-08-26T20:12:00.0893789Z 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-08-26T20:12:00.0899987Z 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-08-26T20:12:00.0906268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0912435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0918140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0923906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0930364Z 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-08-26T20:12:00.0936340Z 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-08-26T20:12:00.0942299Z 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-08-26T20:12:00.0948581Z 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-08-26T20:12:00.0954497Z 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-08-26T20:12:00.0960336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.0966744Z 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-08-26T20:12:00.0973311Z 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-08-26T20:12:00.0979206Z 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-08-26T20:12:00.0985236Z 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-08-26T20:12:00.0991425Z 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-08-26T20:12:00.0997508Z 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-08-26T20:12:00.1015596Z 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-08-26T20:12:00.1016660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1017601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1023460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1029417Z 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-08-26T20:12:00.1035446Z 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-08-26T20:12:00.1041565Z 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-08-26T20:12:00.1047411Z 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-08-26T20:12:00.1053563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1059580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1065732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1072033Z 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-08-26T20:12:00.1077978Z 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-08-26T20:12:00.1083681Z 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-08-26T20:12:00.1089566Z 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-08-26T20:12:00.1096100Z 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-08-26T20:12:00.1101666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1108326Z 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-08-26T20:12:00.1114445Z 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-08-26T20:12:00.1120904Z 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-08-26T20:12:00.1127164Z 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-08-26T20:12:00.1133109Z 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-08-26T20:12:00.1139186Z 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-08-26T20:12:00.1145228Z 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-08-26T20:12:00.1151352Z 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-08-26T20:12:00.1157535Z 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-08-26T20:12:00.1163327Z 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-08-26T20:12:00.1175709Z 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-08-26T20:12:00.1182202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1188431Z 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-08-26T20:12:00.1194274Z 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-08-26T20:12:00.1200026Z 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-08-26T20:12:00.1206140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1212548Z 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-08-26T20:12:00.1223257Z 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-08-26T20:12:00.1229349Z 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-08-26T20:12:00.1235478Z 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-08-26T20:12:00.1241924Z 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-08-26T20:12:00.1247879Z 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-08-26T20:12:00.1254082Z 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-08-26T20:12:00.1259877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1265871Z 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-08-26T20:12:00.1271459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1278071Z 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-08-26T20:12:00.1284215Z 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-08-26T20:12:00.1290200Z 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-08-26T20:12:00.1296196Z 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-08-26T20:12:00.1302217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1308363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1315080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1321137Z 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-08-26T20:12:00.1327562Z 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-08-26T20:12:00.1333439Z 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-08-26T20:12:00.1339971Z 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-08-26T20:12:00.1346072Z 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-08-26T20:12:00.1352266Z 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-08-26T20:12:00.1358357Z 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-08-26T20:12:00.1364673Z 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-08-26T20:12:00.1371559Z 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-08-26T20:12:00.1377598Z 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-08-26T20:12:00.1383970Z 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-08-26T20:12:00.1390393Z 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-08-26T20:12:00.1396410Z 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-08-26T20:12:00.1402390Z 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-08-26T20:12:00.1409290Z 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-08-26T20:12:00.1415297Z 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-08-26T20:12:00.1421467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1427963Z 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-08-26T20:12:00.1434628Z 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-08-26T20:12:00.1440705Z 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-08-26T20:12:00.1446888Z 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-08-26T20:12:00.1452972Z 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-08-26T20:12:00.1459430Z 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-08-26T20:12:00.1465682Z 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-08-26T20:12:00.1471700Z 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-08-26T20:12:00.1477884Z 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-08-26T20:12:00.1484409Z 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-08-26T20:12:00.1490892Z 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-08-26T20:12:00.1497415Z 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-08-26T20:12:00.1503727Z 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-08-26T20:12:00.1510199Z 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-08-26T20:12:00.1516118Z 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-08-26T20:12:00.1522438Z 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-08-26T20:12:00.1528691Z 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-08-26T20:12:00.1535293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1541137Z 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-08-26T20:12:00.1547582Z 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-08-26T20:12:00.1553656Z 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-08-26T20:12:00.1559984Z 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-08-26T20:12:00.1566642Z 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-08-26T20:12:00.1572733Z 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-08-26T20:12:00.1578983Z 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-08-26T20:12:00.1585214Z 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-08-26T20:12:00.1591650Z 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-08-26T20:12:00.1598082Z 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-08-26T20:12:00.1611825Z 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-08-26T20:12:00.1617902Z 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-08-26T20:12:00.1624435Z 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-08-26T20:12:00.1630611Z 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-08-26T20:12:00.1636902Z 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-08-26T20:12:00.1643058Z 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-08-26T20:12:00.1649476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1655423Z 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-08-26T20:12:00.1662303Z 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-08-26T20:12:00.1668380Z 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-08-26T20:12:00.1674658Z 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-08-26T20:12:00.1681232Z 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-08-26T20:12:00.1687685Z 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-08-26T20:12:00.1693734Z 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-08-26T20:12:00.1700332Z 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-08-26T20:12:00.1706670Z 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-08-26T20:12:00.1713059Z 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-08-26T20:12:00.1719092Z 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-08-26T20:12:00.1725599Z 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-08-26T20:12:00.1731944Z 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-08-26T20:12:00.1738083Z 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-08-26T20:12:00.1744262Z 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-08-26T20:12:00.1750711Z 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-08-26T20:12:00.1757110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1764366Z 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-08-26T20:12:00.1770730Z 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-08-26T20:12:00.1776546Z 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-08-26T20:12:00.1782852Z 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-08-26T20:12:00.1789083Z 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-08-26T20:12:00.1795146Z 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-08-26T20:12:00.1801173Z 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-08-26T20:12:00.1807348Z 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-08-26T20:12:00.1813803Z 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-08-26T20:12:00.1819864Z 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-08-26T20:12:00.1827675Z 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-08-26T20:12:00.1871877Z 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-08-26T20:12:00.1873019Z 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-08-26T20:12:00.1874166Z 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-08-26T20:12:00.1875318Z 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-08-26T20:12:00.1877808Z 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-08-26T20:12:00.1878852Z 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-08-26T20:12:00.1879885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.1899727Z 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-08-26T20:12:00.1901180Z 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-08-26T20:12:00.1902575Z 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-08-26T20:12:00.1903772Z 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-08-26T20:12:00.1908000Z 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-08-26T20:12:00.1914109Z 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-08-26T20:12:00.1920244Z 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-08-26T20:12:00.1926282Z 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-08-26T20:12:00.1932980Z 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-08-26T20:12:00.1939083Z 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-08-26T20:12:00.1945014Z 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-08-26T20:12:00.1951008Z 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-08-26T20:12:00.1957167Z 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-08-26T20:12:00.1981899Z 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-08-26T20:12:00.1990580Z 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-08-26T20:12:00.1998919Z 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-08-26T20:12:00.2007382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2013476Z 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-08-26T20:12:00.2019982Z 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-08-26T20:12:00.2032216Z 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-08-26T20:12:00.2038297Z 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-08-26T20:12:00.2044955Z 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-08-26T20:12:00.2051083Z 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-08-26T20:12:00.2056989Z 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-08-26T20:12:00.2062973Z 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-08-26T20:12:00.2069155Z 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-08-26T20:12:00.2075308Z 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-08-26T20:12:00.2081171Z 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-08-26T20:12:00.2087194Z 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-08-26T20:12:00.2093039Z 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-08-26T20:12:00.2098926Z 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-08-26T20:12:00.2105036Z 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-08-26T20:12:00.2111069Z 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-08-26T20:12:00.2116677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2122037Z 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-08-26T20:12:00.2127884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2134272Z 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-08-26T20:12:00.2153248Z 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-08-26T20:12:00.2157202Z 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-08-26T20:12:00.2162885Z 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-08-26T20:12:00.2168896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2174918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2181473Z 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-08-26T20:12:00.2187342Z 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-08-26T20:12:00.2194205Z 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-08-26T20:12:00.2200444Z 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-08-26T20:12:00.2206364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2212179Z 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-08-26T20:12:00.2218972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2224719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2230561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2236823Z 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-08-26T20:12:00.2243181Z 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-08-26T20:12:00.2248975Z 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-08-26T20:12:00.2254677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2260589Z 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-08-26T20:12:00.2267437Z 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-08-26T20:12:00.2273210Z 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-08-26T20:12:00.2282339Z 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-08-26T20:12:00.2288442Z 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-08-26T20:12:00.2294415Z 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-08-26T20:12:00.2300280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2306022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2311881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2317589Z 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-08-26T20:12:00.2332750Z 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-08-26T20:12:00.2338768Z 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-08-26T20:12:00.2344834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2350819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2356069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2361572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2366933Z 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-08-26T20:12:00.2376087Z 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-08-26T20:12:00.2382332Z 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-08-26T20:12:00.2388417Z 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-08-26T20:12:00.2394138Z 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-08-26T20:12:00.2400154Z 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-08-26T20:12:00.2406169Z 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-08-26T20:12:00.2412002Z 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-08-26T20:12:00.2421129Z 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-08-26T20:12:00.2427312Z 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-08-26T20:12:00.2433133Z 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-08-26T20:12:00.2439289Z 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-08-26T20:12:00.2445055Z 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-08-26T20:12:00.2450660Z 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-08-26T20:12:00.2456880Z 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-08-26T20:12:00.2473933Z 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-08-26T20:12:00.2480631Z 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-08-26T20:12:00.2486917Z 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-08-26T20:12:00.2492654Z 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-08-26T20:12:00.2498543Z 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-08-26T20:12:00.2504601Z 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-08-26T20:12:00.2510406Z 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-08-26T20:12:00.2519637Z 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-08-26T20:12:00.2525612Z 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-08-26T20:12:00.2531201Z 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-08-26T20:12:00.2537298Z 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-08-26T20:12:00.2542911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.2548974Z 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-08-26T20:12:00.2554670Z 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-08-26T20:12:00.3363890Z 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-08-26T20:12:00.3369822Z 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-08-26T20:12:00.3375905Z 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-08-26T20:12:00.3381743Z 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-08-26T20:12:00.3387738Z 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-08-26T20:12:00.3393638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3399244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3408657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3414946Z 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-08-26T20:12:00.3420597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3427192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3433119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3438925Z 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-08-26T20:12:00.3444579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3454287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3460435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3466167Z 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-08-26T20:12:00.3471764Z 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-08-26T20:12:00.3477567Z 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-08-26T20:12:00.3483590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3489414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3495275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3501184Z 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-08-26T20:12:00.3507282Z 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-08-26T20:12:00.3526438Z 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-08-26T20:12:00.3527451Z 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-08-26T20:12:00.3528470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3536895Z 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-08-26T20:12:00.3542703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3548513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3554289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3560199Z 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-08-26T20:12:00.3565839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3571367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3576722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3582421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3587962Z 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-08-26T20:12:00.3593356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3599147Z 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-08-26T20:12:00.3605202Z 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-08-26T20:12:00.3611017Z 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-08-26T20:12:00.3616538Z 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-08-26T20:12:00.3622189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3628117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3633791Z 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-08-26T20:12:00.3639362Z 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-08-26T20:12:00.3645107Z 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-08-26T20:12:00.3650911Z 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-08-26T20:12:00.3656841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3667046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3672778Z 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-08-26T20:12:00.3678830Z 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-08-26T20:12:00.3684897Z 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-08-26T20:12:00.3690981Z 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-08-26T20:12:00.3696976Z 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-08-26T20:12:00.3702750Z 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-08-26T20:12:00.3708969Z 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-08-26T20:12:00.3715012Z 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-08-26T20:12:00.3721014Z 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-08-26T20:12:00.3726963Z 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-08-26T20:12:00.3732803Z 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-08-26T20:12:00.3738722Z 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-08-26T20:12:00.3744584Z 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-08-26T20:12:00.3750475Z 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-08-26T20:12:00.3756711Z 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-08-26T20:12:00.3762715Z 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-08-26T20:12:00.3768777Z 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-08-26T20:12:00.3775313Z 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-08-26T20:12:00.3781018Z 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-08-26T20:12:00.3787347Z 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-08-26T20:12:00.3793186Z 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-08-26T20:12:00.3799246Z 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-08-26T20:12:00.3805272Z 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-08-26T20:12:00.3811512Z 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-08-26T20:12:00.3817429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3823554Z 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-08-26T20:12:00.3829480Z 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-08-26T20:12:00.3835384Z 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-08-26T20:12:00.3841217Z 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-08-26T20:12:00.3847632Z 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-08-26T20:12:00.3853608Z 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-08-26T20:12:00.3859562Z 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-08-26T20:12:00.3865647Z 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-08-26T20:12:00.3871714Z 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-08-26T20:12:00.3877601Z 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-08-26T20:12:00.3883257Z 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-08-26T20:12:00.3889181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3895180Z 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-08-26T20:12:00.3900978Z 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-08-26T20:12:00.3907105Z 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-08-26T20:12:00.3912879Z 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-08-26T20:12:00.3918804Z 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-08-26T20:12:00.3925054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3930727Z 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-08-26T20:12:00.3936866Z 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-08-26T20:12:00.3943403Z 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-08-26T20:12:00.3949445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3955724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.3962109Z 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-08-26T20:12:00.3972216Z 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-08-26T20:12:00.3978394Z 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-08-26T20:12:00.3984749Z 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-08-26T20:12:00.3991082Z 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-08-26T20:12:00.3997071Z 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-08-26T20:12:00.4002993Z 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-08-26T20:12:00.4013010Z 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-08-26T20:12:00.4018981Z 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-08-26T20:12:00.4024946Z 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-08-26T20:12:00.4030844Z 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-08-26T20:12:00.4036772Z 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-08-26T20:12:00.4042613Z 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-08-26T20:12:00.4048650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4054472Z 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-08-26T20:12:00.4060113Z 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-08-26T20:12:00.4065889Z 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-08-26T20:12:00.4071679Z 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-08-26T20:12:00.4077316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4083307Z 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-08-26T20:12:00.4089179Z 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-08-26T20:12:00.4095396Z 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-08-26T20:12:00.4102341Z 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-08-26T20:12:00.4110027Z 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-08-26T20:12:00.4116484Z 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-08-26T20:12:00.4123229Z 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-08-26T20:12:00.4130220Z 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-08-26T20:12:00.4136832Z 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-08-26T20:12:00.4143257Z 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-08-26T20:12:00.4149478Z 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-08-26T20:12:00.4155700Z 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-08-26T20:12:00.4161980Z 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-08-26T20:12:00.4169012Z 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-08-26T20:12:00.4180845Z 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-08-26T20:12:00.4186708Z 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-08-26T20:12:00.4192666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4198759Z 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-08-26T20:12:00.4217203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4223703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4230125Z 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-08-26T20:12:00.4236386Z 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-08-26T20:12:00.4242499Z 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-08-26T20:12:00.4249123Z 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-08-26T20:12:00.4254646Z 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-08-26T20:12:00.4290282Z 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-08-26T20:12:00.4296240Z 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-08-26T20:12:00.4302076Z 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-08-26T20:12:00.4308053Z 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-08-26T20:12:00.4314237Z 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-08-26T20:12:00.4320172Z 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-08-26T20:12:00.4326869Z 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-08-26T20:12:00.4332760Z 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-08-26T20:12:00.4338911Z 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-08-26T20:12:00.4344891Z 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-08-26T20:12:00.4351066Z 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-08-26T20:12:00.4356989Z 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-08-26T20:12:00.4377060Z 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-08-26T20:12:00.4382903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4388808Z 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-08-26T20:12:00.4394583Z 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-08-26T20:12:00.4399992Z 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-08-26T20:12:00.4405776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4412105Z 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-08-26T20:12:00.4417980Z 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-08-26T20:12:00.4423638Z 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-08-26T20:12:00.4429289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4435343Z 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-08-26T20:12:00.4440882Z 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-08-26T20:12:00.4446446Z 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-08-26T20:12:00.4452113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4458208Z 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-08-26T20:12:00.4464000Z 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-08-26T20:12:00.4469650Z 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-08-26T20:12:00.4475355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4481221Z 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-08-26T20:12:00.4486957Z 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-08-26T20:12:00.4492352Z 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-08-26T20:12:00.4498136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4504100Z 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-08-26T20:12:00.4509661Z 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-08-26T20:12:00.4515084Z 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-08-26T20:12:00.4521217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4527102Z 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-08-26T20:12:00.4532668Z 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-08-26T20:12:00.4539571Z 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-08-26T20:12:00.4545496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4551358Z 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-08-26T20:12:00.4557498Z 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-08-26T20:12:00.4563231Z 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-08-26T20:12:00.4568758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4574639Z 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-08-26T20:12:00.4580586Z 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-08-26T20:12:00.4586163Z 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-08-26T20:12:00.4591902Z 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-08-26T20:12:00.4597695Z 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-08-26T20:12:00.4603486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4610051Z 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-08-26T20:12:00.4615867Z 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-08-26T20:12:00.4621900Z 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-08-26T20:12:00.4627704Z 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-08-26T20:12:00.4633295Z 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-08-26T20:12:00.4646124Z 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-08-26T20:12:00.4652048Z 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-08-26T20:12:00.4657897Z 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-08-26T20:12:00.4663772Z 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-08-26T20:12:00.4669616Z 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-08-26T20:12:00.4675518Z 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-08-26T20:12:00.4681287Z 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-08-26T20:12:00.4687413Z 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-08-26T20:12:00.4693196Z 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-08-26T20:12:00.4698841Z 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-08-26T20:12:00.4704603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4710667Z 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-08-26T20:12:00.4716384Z 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-08-26T20:12:00.4722089Z 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-08-26T20:12:00.4727959Z 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-08-26T20:12:00.4733663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4739330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4745410Z 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-08-26T20:12:00.4751118Z 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-08-26T20:12:00.4756622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4762440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4768745Z 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-08-26T20:12:00.4774283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4780355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4786439Z 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-08-26T20:12:00.4792740Z 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-08-26T20:12:00.4799318Z 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-08-26T20:12:00.4810412Z 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-08-26T20:12:00.4816597Z 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-08-26T20:12:00.4822090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4828045Z 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-08-26T20:12:00.4833558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4839696Z 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-08-26T20:12:00.4845846Z 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-08-26T20:12:00.4851531Z 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-08-26T20:12:00.4856948Z 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-08-26T20:12:00.4863098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4868461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4874099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.4880094Z 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-08-26T20:12:00.4885948Z 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-08-26T20:12:00.4891681Z 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-08-26T20:12:00.4897542Z 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-08-26T20:12:00.4903945Z 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-08-26T20:12:00.4914436Z 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-08-26T20:12:00.4920504Z 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-08-26T20:12:00.4926433Z 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-08-26T20:12:00.4932461Z 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-08-26T20:12:00.4938954Z 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-08-26T20:12:00.4944830Z 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-08-26T20:12:00.4950641Z 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-08-26T20:12:00.4957001Z 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-08-26T20:12:00.4962925Z 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-08-26T20:12:00.4969186Z 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-08-26T20:12:00.4975138Z 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-08-26T20:12:00.4981192Z 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-08-26T20:12:00.5017794Z 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-08-26T20:12:00.5023630Z 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-08-26T20:12:00.5029913Z 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-08-26T20:12:00.5036531Z 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-08-26T20:12:00.5078609Z 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-08-26T20:12:00.5079890Z 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-08-26T20:12:00.5081097Z 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-08-26T20:12:00.5082262Z 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-08-26T20:12:00.5084786Z 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-08-26T20:12:00.5085950Z 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-08-26T20:12:00.5086975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5090214Z 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-08-26T20:12:00.5096366Z 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-08-26T20:12:00.5102238Z 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-08-26T20:12:00.5107317Z 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-08-26T20:12:00.5113858Z 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-08-26T20:12:00.5123981Z 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-08-26T20:12:00.5130078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5136299Z 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-08-26T20:12:00.5141969Z 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-08-26T20:12:00.5148037Z 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-08-26T20:12:00.5153926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5160585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5165654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5171768Z 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-08-26T20:12:00.5177564Z 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-08-26T20:12:00.5183246Z 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-08-26T20:12:00.5189197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5194889Z 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-08-26T20:12:00.5200822Z 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-08-26T20:12:00.5206692Z 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-08-26T20:12:00.5212234Z 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-08-26T20:12:00.5218510Z 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-08-26T20:12:00.5224622Z 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-08-26T20:12:00.5230036Z 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-08-26T20:12:00.5235712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5241343Z 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-08-26T20:12:00.5247094Z 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-08-26T20:12:00.5252504Z 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-08-26T20:12:00.5258130Z 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-08-26T20:12:00.5264092Z 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-08-26T20:12:00.5270114Z 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-08-26T20:12:00.5275846Z 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-08-26T20:12:00.5281617Z 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-08-26T20:12:00.5287765Z 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-08-26T20:12:00.5293640Z 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-08-26T20:12:00.5299316Z 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-08-26T20:12:00.5304940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5310831Z 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-08-26T20:12:00.5317877Z 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-08-26T20:12:00.5322681Z 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-08-26T20:12:00.5328996Z 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-08-26T20:12:00.5334745Z 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-08-26T20:12:00.5340529Z 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-08-26T20:12:00.5346753Z 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-08-26T20:12:00.5352457Z 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-08-26T20:12:00.5358332Z 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-08-26T20:12:00.5363963Z 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-08-26T20:12:00.5369925Z 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-08-26T20:12:00.5375588Z 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-08-26T20:12:00.5381557Z 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-08-26T20:12:00.5387547Z 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-08-26T20:12:00.5393227Z 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-08-26T20:12:00.5398905Z 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-08-26T20:12:00.5404738Z 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-08-26T20:12:00.5410724Z 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-08-26T20:12:00.5416541Z 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-08-26T20:12:00.5422555Z 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-08-26T20:12:00.5428719Z 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-08-26T20:12:00.5434908Z 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-08-26T20:12:00.5440764Z 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-08-26T20:12:00.5446597Z 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-08-26T20:12:00.5452626Z 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-08-26T20:12:00.5458632Z 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-08-26T20:12:00.5464890Z 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-08-26T20:12:00.5470713Z 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-08-26T20:12:00.5477090Z 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-08-26T20:12:00.5483573Z 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-08-26T20:12:00.5489531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5495829Z 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-08-26T20:12:00.5502624Z 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-08-26T20:12:00.5508656Z 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-08-26T20:12:00.5514499Z 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-08-26T20:12:00.5520463Z 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-08-26T20:12:00.5527447Z 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-08-26T20:12:00.5534715Z 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-08-26T20:12:00.5553025Z 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-08-26T20:12:00.5554338Z 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-08-26T20:12:00.5555614Z 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-08-26T20:12:00.5582908Z 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-08-26T20:12:00.5588811Z 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-08-26T20:12:00.5595249Z 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-08-26T20:12:00.5601333Z 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-08-26T20:12:00.5607610Z 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-08-26T20:12:00.5613710Z 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-08-26T20:12:00.5619727Z 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-08-26T20:12:00.5625279Z 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-08-26T20:12:00.5631112Z 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-08-26T20:12:00.5637355Z 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-08-26T20:12:00.5643293Z 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-08-26T20:12:00.5649089Z 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-08-26T20:12:00.5654882Z 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-08-26T20:12:00.5661421Z 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-08-26T20:12:00.5667221Z 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-08-26T20:12:00.5673052Z 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-08-26T20:12:00.5678833Z 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-08-26T20:12:00.5685033Z 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-08-26T20:12:00.5695408Z 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-08-26T20:12:00.5701436Z 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-08-26T20:12:00.5707692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5713333Z 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-08-26T20:12:00.5719076Z 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-08-26T20:12:00.5724769Z 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-08-26T20:12:00.5730635Z 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-08-26T20:12:00.5736477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5742296Z 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-08-26T20:12:00.5747994Z 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-08-26T20:12:00.5753853Z 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-08-26T20:12:00.5759569Z 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-08-26T20:12:00.5765470Z 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-08-26T20:12:00.5771453Z 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-08-26T20:12:00.5780742Z 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-08-26T20:12:00.5786277Z 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-08-26T20:12:00.5792091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5797245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5802503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5808101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5813216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5822689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5828321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5834048Z 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-08-26T20:12:00.5855119Z 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-08-26T20:12:00.5860101Z 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-08-26T20:12:00.5865949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5873034Z 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-08-26T20:12:00.5882655Z 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-08-26T20:12:00.5888660Z 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-08-26T20:12:00.5896044Z 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-08-26T20:12:00.5902115Z 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-08-26T20:12:00.5907865Z 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-08-26T20:12:00.5913668Z 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-08-26T20:12:00.5919388Z 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-08-26T20:12:00.5925142Z 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-08-26T20:12:00.5930939Z 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-08-26T20:12:00.5937078Z 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-08-26T20:12:00.5943274Z 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-08-26T20:12:00.5949286Z 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-08-26T20:12:00.5955093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5961197Z 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-08-26T20:12:00.5967198Z 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-08-26T20:12:00.5973257Z 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-08-26T20:12:00.5979459Z 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-08-26T20:12:00.5985654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5991596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.5997491Z 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-08-26T20:12:00.6003586Z 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-08-26T20:12:00.6009656Z 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-08-26T20:12:00.6016887Z 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-08-26T20:12:00.6022895Z 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-08-26T20:12:00.6044386Z 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-08-26T20:12:00.6045611Z 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-08-26T20:12:00.6046721Z 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-08-26T20:12:00.6047938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6054085Z 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-08-26T20:12:00.6060078Z 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-08-26T20:12:00.6066039Z 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-08-26T20:12:00.6072024Z 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-08-26T20:12:00.6079186Z 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-08-26T20:12:00.6084005Z 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-08-26T20:12:00.6090083Z 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-08-26T20:12:00.6096094Z 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-08-26T20:12:00.6101952Z 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-08-26T20:12:00.6108081Z 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-08-26T20:12:00.6114123Z 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-08-26T20:12:00.6119997Z 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-08-26T20:12:00.6126591Z 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-08-26T20:12:00.6132518Z 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-08-26T20:12:00.6138381Z 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-08-26T20:12:00.6144364Z 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-08-26T20:12:00.6150167Z 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-08-26T20:12:00.6156365Z 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-08-26T20:12:00.6162229Z 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-08-26T20:12:00.6168200Z 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-08-26T20:12:00.6173981Z 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-08-26T20:12:00.6180000Z 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-08-26T20:12:00.6187081Z 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-08-26T20:12:00.6193932Z 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-08-26T20:12:00.6199670Z 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-08-26T20:12:00.6205542Z 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-08-26T20:12:00.6211422Z 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-08-26T20:12:00.6217538Z 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-08-26T20:12:00.6223745Z 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-08-26T20:12:00.6230094Z 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-08-26T20:12:00.6236186Z 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-08-26T20:12:00.6242183Z 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-08-26T20:12:00.6248289Z 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-08-26T20:12:00.6254717Z 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-08-26T20:12:00.6260513Z 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-08-26T20:12:00.6268000Z 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-08-26T20:12:00.6273941Z 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-08-26T20:12:00.6279859Z 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-08-26T20:12:00.6285924Z 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-08-26T20:12:00.6291783Z 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-08-26T20:12:00.6297880Z 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-08-26T20:12:00.6303900Z 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-08-26T20:12:00.6309828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6316106Z 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-08-26T20:12:00.6322039Z 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-08-26T20:12:00.6328143Z 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-08-26T20:12:00.6334151Z 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-08-26T20:12:00.6340028Z 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-08-26T20:12:00.6346165Z 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-08-26T20:12:00.6352371Z 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-08-26T20:12:00.6358785Z 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-08-26T20:12:00.6365915Z 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-08-26T20:12:00.6372048Z 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-08-26T20:12:00.6377748Z 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-08-26T20:12:00.6383955Z 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-08-26T20:12:00.6390077Z 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-08-26T20:12:00.6396584Z 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-08-26T20:12:00.6402624Z 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-08-26T20:12:00.6408936Z 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-08-26T20:12:00.6415268Z 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-08-26T20:12:00.6421639Z 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-08-26T20:12:00.6428787Z 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-08-26T20:12:00.6434906Z 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-08-26T20:12:00.6440894Z 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-08-26T20:12:00.6447189Z 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-08-26T20:12:00.6453410Z 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-08-26T20:12:00.6459554Z 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-08-26T20:12:00.6465868Z 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-08-26T20:12:00.6472140Z 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-08-26T20:12:00.6478612Z 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-08-26T20:12:00.6484870Z 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-08-26T20:12:00.6492390Z 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-08-26T20:12:00.6498295Z 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-08-26T20:12:00.6503901Z 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-08-26T20:12:00.6509684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6515178Z 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-08-26T20:12:00.6521135Z 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-08-26T20:12:00.6527189Z 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-08-26T20:12:00.6532846Z 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-08-26T20:12:00.6539217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6544232Z 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-08-26T20:12:00.6550144Z 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-08-26T20:12:00.6556162Z 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-08-26T20:12:00.6561978Z 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-08-26T20:12:00.6567800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6573520Z 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-08-26T20:12:00.6579197Z 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-08-26T20:12:00.6584793Z 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-08-26T20:12:00.6590453Z 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-08-26T20:12:00.6596328Z 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-08-26T20:12:00.6602016Z 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-08-26T20:12:00.6607959Z 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-08-26T20:12:00.6614107Z 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-08-26T20:12:00.6649905Z 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-08-26T20:12:00.6655740Z 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-08-26T20:12:00.6661613Z 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-08-26T20:12:00.6667333Z 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-08-26T20:12:00.6673044Z 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-08-26T20:12:00.6679290Z 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-08-26T20:12:00.6685468Z 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-08-26T20:12:00.6691390Z 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-08-26T20:12:00.6697236Z 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-08-26T20:12:00.6702990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6708758Z 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-08-26T20:12:00.6714262Z 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-08-26T20:12:00.6720149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6725883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6731698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6737538Z 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-08-26T20:12:00.6743160Z 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-08-26T20:12:00.6748808Z 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-08-26T20:12:00.6754506Z 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-08-26T20:12:00.6760601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6766707Z 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-08-26T20:12:00.6772396Z 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-08-26T20:12:00.6778115Z 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-08-26T20:12:00.6783901Z 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-08-26T20:12:00.6789574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6795257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6806466Z 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-08-26T20:12:00.6812603Z 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-08-26T20:12:00.6818421Z 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-08-26T20:12:00.6824238Z 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-08-26T20:12:00.6830085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6836417Z 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-08-26T20:12:00.6842142Z 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-08-26T20:12:00.6848486Z 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-08-26T20:12:00.6855195Z 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-08-26T20:12:00.6861247Z 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-08-26T20:12:00.6867863Z 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-08-26T20:12:00.6873624Z 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-08-26T20:12:00.6879310Z 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-08-26T20:12:00.6885073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6891438Z 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-08-26T20:12:00.6897146Z 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-08-26T20:12:00.6903013Z 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-08-26T20:12:00.6908757Z 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-08-26T20:12:00.6914494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6920497Z 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-08-26T20:12:00.6926573Z 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-08-26T20:12:00.6932408Z 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-08-26T20:12:00.6938327Z 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-08-26T20:12:00.6944652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.6950612Z 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-08-26T20:12:00.6956215Z 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-08-26T20:12:00.6962157Z 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-08-26T20:12:00.6968257Z 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-08-26T20:12:00.6974124Z 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-08-26T20:12:00.6980493Z 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-08-26T20:12:00.6986498Z 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-08-26T20:12:00.6992383Z 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-08-26T20:12:00.6998332Z 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-08-26T20:12:00.7004437Z 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-08-26T20:12:00.7011134Z 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-08-26T20:12:00.7021866Z 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-08-26T20:12:00.7028005Z 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-08-26T20:12:00.7033905Z 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-08-26T20:12:00.7065545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7066666Z 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-08-26T20:12:00.7067843Z 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-08-26T20:12:00.7068873Z 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-08-26T20:12:00.7071249Z 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-08-26T20:12:00.7074427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7080451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7089223Z 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-08-26T20:12:00.7093817Z 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-08-26T20:12:00.7110602Z 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-08-26T20:12:00.7116796Z 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-08-26T20:12:00.7126900Z 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-08-26T20:12:00.7132690Z 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-08-26T20:12:00.7141354Z 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-08-26T20:12:00.7147515Z 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-08-26T20:12:00.7152990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7159246Z 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-08-26T20:12:00.7165588Z 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-08-26T20:12:00.7171510Z 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-08-26T20:12:00.7177664Z 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-08-26T20:12:00.7183788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7189692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7196005Z 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-08-26T20:12:00.7202016Z 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-08-26T20:12:00.7207984Z 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-08-26T20:12:00.7213823Z 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-08-26T20:12:00.7219893Z 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-08-26T20:12:00.7225641Z 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-08-26T20:12:00.7231476Z 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-08-26T20:12:00.7237396Z 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-08-26T20:12:00.7243329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7249233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7255391Z 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-08-26T20:12:00.7261116Z 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-08-26T20:12:00.7266907Z 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-08-26T20:12:00.7272703Z 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-08-26T20:12:00.7278879Z 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-08-26T20:12:00.7284831Z 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-08-26T20:12:00.7290731Z 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-08-26T20:12:00.7296447Z 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-08-26T20:12:00.7302316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7308379Z 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-08-26T20:12:00.7314132Z 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-08-26T20:12:00.7320311Z 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-08-26T20:12:00.7326444Z 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-08-26T20:12:00.7332167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7338182Z 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-08-26T20:12:00.7344913Z 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-08-26T20:12:00.7350624Z 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-08-26T20:12:00.7356420Z 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-08-26T20:12:00.7362137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7368449Z 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-08-26T20:12:00.7374432Z 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-08-26T20:12:00.7380934Z 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-08-26T20:12:00.7386987Z 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-08-26T20:12:00.7393003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7399636Z 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-08-26T20:12:00.7405691Z 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-08-26T20:12:00.7411868Z 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-08-26T20:12:00.7418110Z 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-08-26T20:12:00.7428697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7434722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7441035Z 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-08-26T20:12:00.7448092Z 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-08-26T20:12:00.7454074Z 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-08-26T20:12:00.7459779Z 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-08-26T20:12:00.7465477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7471546Z 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-08-26T20:12:00.7477572Z 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-08-26T20:12:00.7483635Z 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-08-26T20:12:00.7489692Z 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-08-26T20:12:00.7495868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7502128Z 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-08-26T20:12:00.7508090Z 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-08-26T20:12:00.7514277Z 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-08-26T20:12:00.7520417Z 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-08-26T20:12:00.7526761Z 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-08-26T20:12:00.7553931Z 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-08-26T20:12:00.7554392Z 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-08-26T20:12:00.7554831Z 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-08-26T20:12:00.7555241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7560250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7566590Z 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-08-26T20:12:00.7572575Z 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-08-26T20:12:00.7578650Z 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-08-26T20:12:00.7584583Z 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-08-26T20:12:00.7590921Z 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-08-26T20:12:00.7596732Z 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-08-26T20:12:00.7602652Z 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-08-26T20:12:00.7608751Z 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-08-26T20:12:00.7614438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7620804Z 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-08-26T20:12:00.7626707Z 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-08-26T20:12:00.7632408Z 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-08-26T20:12:00.7638244Z 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-08-26T20:12:00.7643968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7650271Z 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-08-26T20:12:00.7655978Z 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-08-26T20:12:00.7662040Z 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-08-26T20:12:00.7667820Z 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-08-26T20:12:00.7673622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7679631Z 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-08-26T20:12:00.7690139Z 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-08-26T20:12:00.7696317Z 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-08-26T20:12:00.7701975Z 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-08-26T20:12:00.7708244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7714140Z 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-08-26T20:12:00.7719795Z 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-08-26T20:12:00.7725624Z 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-08-26T20:12:00.7731414Z 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-08-26T20:12:00.7737090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7743093Z 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-08-26T20:12:00.7749167Z 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-08-26T20:12:00.7755163Z 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-08-26T20:12:00.7760604Z 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-08-26T20:12:00.7766665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7772818Z 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-08-26T20:12:00.7778554Z 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-08-26T20:12:00.7818607Z 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-08-26T20:12:00.7824447Z 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-08-26T20:12:00.7830093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7836131Z 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-08-26T20:12:00.7841739Z 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-08-26T20:12:00.7847594Z 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-08-26T20:12:00.7853380Z 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-08-26T20:12:00.7859245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7866078Z 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-08-26T20:12:00.7871879Z 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-08-26T20:12:00.7877784Z 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-08-26T20:12:00.7883413Z 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-08-26T20:12:00.7894106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7900236Z 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-08-26T20:12:00.7906152Z 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-08-26T20:12:00.7912063Z 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-08-26T20:12:00.7917760Z 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-08-26T20:12:00.7924376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7930792Z 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-08-26T20:12:00.7937018Z 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-08-26T20:12:00.7942766Z 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-08-26T20:12:00.7948870Z 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-08-26T20:12:00.7954728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7960507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.7966616Z 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-08-26T20:12:00.7972455Z 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-08-26T20:12:00.7978165Z 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-08-26T20:12:00.7984000Z 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-08-26T20:12:00.7990282Z 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-08-26T20:12:00.7997467Z 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-08-26T20:12:00.8009902Z 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-08-26T20:12:00.8015676Z 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-08-26T20:12:00.8021439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8027679Z 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-08-26T20:12:00.8033337Z 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-08-26T20:12:00.8039489Z 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-08-26T20:12:00.8046040Z 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-08-26T20:12:00.8052642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8059218Z 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-08-26T20:12:00.8065446Z 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-08-26T20:12:00.8071814Z 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-08-26T20:12:00.8077888Z 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-08-26T20:12:00.8084030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8090002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8096272Z 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-08-26T20:12:00.8102351Z 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-08-26T20:12:00.8108230Z 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-08-26T20:12:00.8118983Z 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-08-26T20:12:00.8125144Z 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-08-26T20:12:00.8131311Z 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-08-26T20:12:00.8137082Z 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-08-26T20:12:00.8142822Z 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-08-26T20:12:00.8148612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8154588Z 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-08-26T20:12:00.8160516Z 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-08-26T20:12:00.8166382Z 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-08-26T20:12:00.8172346Z 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-08-26T20:12:00.8178372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8184501Z 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-08-26T20:12:00.8190458Z 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-08-26T20:12:00.8196310Z 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-08-26T20:12:00.8206482Z 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-08-26T20:12:00.8212344Z 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-08-26T20:12:00.8218423Z 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-08-26T20:12:00.8224160Z 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-08-26T20:12:00.8229885Z 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-08-26T20:12:00.8235660Z 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-08-26T20:12:00.8241750Z 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-08-26T20:12:00.8251992Z 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-08-26T20:12:00.8258047Z 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-08-26T20:12:00.8263928Z 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-08-26T20:12:00.8270299Z 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-08-26T20:12:00.8276190Z 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-08-26T20:12:00.8282438Z 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-08-26T20:12:00.8318202Z 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-08-26T20:12:00.8324192Z 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-08-26T20:12:00.8330206Z 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-08-26T20:12:00.8336107Z 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-08-26T20:12:00.8342008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8347961Z 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-08-26T20:12:00.8354657Z 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-08-26T20:12:00.8364344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8371762Z 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-08-26T20:12:00.8380484Z 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-08-26T20:12:00.8387948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8395190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8417637Z 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-08-26T20:12:00.8418432Z 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-08-26T20:12:00.8419027Z 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-08-26T20:12:00.8426078Z 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-08-26T20:12:00.8434690Z 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-08-26T20:12:00.8442432Z 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-08-26T20:12:00.8449619Z 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-08-26T20:12:00.8458352Z 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-08-26T20:12:00.8465784Z 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-08-26T20:12:00.8473038Z 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-08-26T20:12:00.8481588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8489501Z 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-08-26T20:12:00.8496642Z 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-08-26T20:12:00.8503850Z 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-08-26T20:12:00.8512533Z 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-08-26T20:12:00.8519821Z 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-08-26T20:12:00.8527692Z 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-08-26T20:12:00.8539472Z 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-08-26T20:12:00.8571596Z 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-08-26T20:12:00.8579430Z 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-08-26T20:12:00.8588706Z 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-08-26T20:12:00.8596416Z 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-08-26T20:12:00.8602360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8609891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8616208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8623204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8629439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8635501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8641283Z 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-08-26T20:12:00.8647154Z 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-08-26T20:12:00.8654497Z 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-08-26T20:12:00.8660387Z 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-08-26T20:12:00.8666253Z 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-08-26T20:12:00.8672310Z 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-08-26T20:12:00.8678127Z 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-08-26T20:12:00.8683911Z 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-08-26T20:12:00.8689763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8695907Z 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-08-26T20:12:00.8703093Z 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-08-26T20:12:00.8708728Z 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-08-26T20:12:00.8714514Z 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-08-26T20:12:00.8720312Z 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-08-26T20:12:00.8726188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8731861Z 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-08-26T20:12:00.8737345Z 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-08-26T20:12:00.8743571Z 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-08-26T20:12:00.8749683Z 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-08-26T20:12:00.8755684Z 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-08-26T20:12:00.8761470Z 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-08-26T20:12:00.8767393Z 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-08-26T20:12:00.8773017Z 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-08-26T20:12:00.8778840Z 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-08-26T20:12:00.8784824Z 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-08-26T20:12:00.8790725Z 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-08-26T20:12:00.8796361Z 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-08-26T20:12:00.8802032Z 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-08-26T20:12:00.8807904Z 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-08-26T20:12:00.8814071Z 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-08-26T20:12:00.8820098Z 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-08-26T20:12:00.8825937Z 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-08-26T20:12:00.8832087Z 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-08-26T20:12:00.8838525Z 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-08-26T20:12:00.8844122Z 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-08-26T20:12:00.8850198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.8857585Z 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-08-26T20:12:00.8864551Z 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-08-26T20:12:00.8872996Z 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-08-26T20:12:00.8880404Z 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-08-26T20:12:00.8887890Z 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-08-26T20:12:00.8894955Z 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-08-26T20:12:00.8903698Z 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-08-26T20:12:00.8910711Z 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-08-26T20:12:00.8918036Z 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-08-26T20:12:00.8926371Z 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-08-26T20:12:00.8932116Z 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-08-26T20:12:00.8938542Z 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-08-26T20:12:00.8944723Z 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-08-26T20:12:00.8950612Z 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-08-26T20:12:00.8956683Z 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-08-26T20:12:00.8962496Z 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-08-26T20:12:00.8968604Z 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-08-26T20:12:00.8975485Z 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-08-26T20:12:00.8981525Z 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-08-26T20:12:00.8987371Z 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-08-26T20:12:00.8993616Z 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-08-26T20:12:00.9000535Z 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-08-26T20:12:00.9006510Z 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-08-26T20:12:00.9012816Z 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-08-26T20:12:00.9018946Z 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-08-26T20:12:00.9025052Z 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-08-26T20:12:00.9031024Z 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-08-26T20:12:00.9037157Z 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-08-26T20:12:00.9043168Z 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-08-26T20:12:00.9049590Z 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-08-26T20:12:00.9056628Z 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-08-26T20:12:00.9063145Z 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-08-26T20:12:00.9069216Z 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-08-26T20:12:00.9075478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9080868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9087204Z 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-08-26T20:12:00.9093594Z 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-08-26T20:12:00.9099543Z 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-08-26T20:12:00.9105114Z 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-08-26T20:12:00.9110791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9116393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9122472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9127974Z 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-08-26T20:12:00.9133984Z 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-08-26T20:12:00.9139953Z 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-08-26T20:12:00.9145514Z 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-08-26T20:12:00.9151424Z 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-08-26T20:12:00.9157711Z 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-08-26T20:12:00.9164262Z 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-08-26T20:12:00.9169811Z 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-08-26T20:12:00.9175754Z 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-08-26T20:12:00.9182702Z 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-08-26T20:12:00.9188618Z 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-08-26T20:12:00.9194274Z 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-08-26T20:12:00.9200161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9206620Z 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-08-26T20:12:00.9212369Z 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-08-26T20:12:00.9218164Z 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-08-26T20:12:00.9224039Z 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-08-26T20:12:00.9230259Z 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-08-26T20:12:00.9236261Z 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-08-26T20:12:00.9242189Z 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-08-26T20:12:00.9248547Z 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-08-26T20:12:00.9254302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9260343Z 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-08-26T20:12:00.9265877Z 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-08-26T20:12:00.9271403Z 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-08-26T20:12:00.9277521Z 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-08-26T20:12:00.9283563Z 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-08-26T20:12:00.9289616Z 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-08-26T20:12:00.9295493Z 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-08-26T20:12:00.9301333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9308375Z 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-08-26T20:12:00.9314446Z 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-08-26T20:12:00.9320254Z 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-08-26T20:12:00.9326519Z 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-08-26T20:12:00.9332478Z 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-08-26T20:12:00.9338581Z 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-08-26T20:12:00.9345597Z 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-08-26T20:12:00.9351233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9357359Z 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-08-26T20:12:00.9363464Z 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-08-26T20:12:00.9369786Z 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-08-26T20:12:00.9376028Z 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-08-26T20:12:00.9382068Z 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-08-26T20:12:00.9388192Z 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-08-26T20:12:00.9394285Z 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-08-26T20:12:00.9400256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9406837Z 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-08-26T20:12:00.9413774Z 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-08-26T20:12:00.9420066Z 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-08-26T20:12:00.9425710Z 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-08-26T20:12:00.9431512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9437866Z 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-08-26T20:12:00.9443717Z 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-08-26T20:12:00.9450058Z 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-08-26T20:12:00.9456219Z 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-08-26T20:12:00.9462333Z 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-08-26T20:12:00.9468200Z 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-08-26T20:12:00.9474400Z 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-08-26T20:12:00.9480526Z 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-08-26T20:12:00.9486972Z 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-08-26T20:12:00.9492923Z 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-08-26T20:12:00.9500424Z 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-08-26T20:12:00.9506213Z 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-08-26T20:12:00.9512145Z 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-08-26T20:12:00.9518035Z 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-08-26T20:12:00.9524252Z 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-08-26T20:12:00.9530515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9536828Z 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-08-26T20:12:00.9543207Z 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-08-26T20:12:00.9549398Z 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-08-26T20:12:00.9556254Z 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-08-26T20:12:00.9564774Z 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-08-26T20:12:00.9570324Z 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-08-26T20:12:00.9576602Z 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-08-26T20:12:00.9582838Z 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-08-26T20:12:00.9588904Z 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-08-26T20:12:00.9593991Z 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-08-26T20:12:00.9600585Z 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-08-26T20:12:00.9606710Z 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-08-26T20:12:00.9612949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9619050Z 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-08-26T20:12:00.9625003Z 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-08-26T20:12:00.9630791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9636971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9642678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9648594Z 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-08-26T20:12:00.9654845Z 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-08-26T20:12:00.9660807Z 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-08-26T20:12:00.9666778Z 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-08-26T20:12:00.9682835Z 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-08-26T20:12:00.9688676Z 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-08-26T20:12:00.9694359Z 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-08-26T20:12:00.9700043Z 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-08-26T20:12:00.9706589Z 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-08-26T20:12:00.9712865Z 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-08-26T20:12:00.9718807Z 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-08-26T20:12:00.9724619Z 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-08-26T20:12:00.9730540Z 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-08-26T20:12:00.9736725Z 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-08-26T20:12:00.9742484Z 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-08-26T20:12:00.9748332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9754507Z 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-08-26T20:12:00.9760655Z 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-08-26T20:12:00.9766600Z 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-08-26T20:12:00.9772656Z 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-08-26T20:12:00.9778986Z 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-08-26T20:12:00.9784886Z 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-08-26T20:12:00.9790704Z 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-08-26T20:12:00.9796839Z 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-08-26T20:12:00.9802830Z 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-08-26T20:12:00.9808819Z 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-08-26T20:12:00.9814686Z 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-08-26T20:12:00.9820736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9826802Z 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-08-26T20:12:00.9832563Z 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-08-26T20:12:00.9839008Z 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-08-26T20:12:00.9845465Z 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-08-26T20:12:00.9851532Z 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-08-26T20:12:00.9857445Z 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-08-26T20:12:00.9863178Z 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-08-26T20:12:00.9869017Z 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-08-26T20:12:00.9874880Z 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-08-26T20:12:00.9881242Z 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-08-26T20:12:00.9887253Z 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-08-26T20:12:00.9893217Z 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-08-26T20:12:00.9899086Z 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-08-26T20:12:00.9904968Z 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-08-26T20:12:00.9911329Z 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-08-26T20:12:00.9917808Z 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-08-26T20:12:00.9923883Z 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-08-26T20:12:00.9930064Z 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-08-26T20:12:00.9936307Z 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-08-26T20:12:00.9942698Z 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-08-26T20:12:00.9948748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:00.9954979Z 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-08-26T20:12:00.9961044Z 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-08-26T20:12:00.9967257Z 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-08-26T20:12:00.9973301Z 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-08-26T20:12:01.0009347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.0015538Z 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-08-26T20:12:01.0021831Z 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-08-26T20:12:01.0028799Z 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-08-26T20:12:01.0034862Z 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-08-26T20:12:01.0040953Z 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-08-26T20:12:01.0046806Z 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-08-26T20:12:01.0053244Z 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-08-26T20:12:01.0059253Z 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-08-26T20:12:01.0065528Z 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-08-26T20:12:01.0093209Z 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-08-26T20:12:01.0094275Z 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-08-26T20:12:01.0095291Z 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-08-26T20:12:01.0096363Z 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-08-26T20:12:01.0099546Z 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-08-26T20:12:01.0105335Z 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-08-26T20:12:01.0111270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.0117450Z 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-08-26T20:12:01.0123148Z 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-08-26T20:12:01.0129053Z 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-08-26T20:12:01.0135186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.0141478Z 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-08-26T20:12:01.0147059Z 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-08-26T20:12:01.0152939Z 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-08-26T20:12:01.0158703Z 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-08-26T20:12:01.0164587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.0171379Z 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-08-26T20:12:01.0177415Z 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-08-26T20:12:01.0183124Z 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-08-26T20:12:01.0189394Z 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-08-26T20:12:01.0195348Z 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-08-26T20:12:01.0201099Z 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-08-26T20:12:01.0207187Z 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-08-26T20:12:01.0213474Z 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-08-26T20:12:01.0219497Z 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-08-26T20:12:01.0225141Z 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-08-26T20:12:01.0231409Z 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-08-26T20:12:01.0237405Z 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-08-26T20:12:01.0243495Z 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-08-26T20:12:01.0250188Z 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-08-26T20:12:01.0256750Z 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-08-26T20:12:01.0262899Z 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-08-26T20:12:01.0269107Z 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-08-26T20:12:01.0275258Z 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-08-26T20:12:01.0281849Z 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-08-26T20:12:01.0287735Z 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-08-26T20:12:01.0294037Z 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-08-26T20:12:01.0299821Z 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-08-26T20:12:01.0305940Z 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-08-26T20:12:01.0311794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.0317890Z 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-08-26T20:12:01.0323544Z 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-08-26T20:12:01.0329625Z 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-08-26T20:12:01.0338276Z 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-08-26T20:12:01.0354437Z 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-08-26T20:12:01.0355593Z 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-08-26T20:12:01.0357665Z 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-08-26T20:12:01.0363262Z 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-08-26T20:12:01.0369681Z 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-08-26T20:12:01.0375804Z 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-08-26T20:12:01.0382777Z 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-08-26T20:12:01.0388502Z 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-08-26T20:12:01.0396993Z 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-08-26T20:12:01.0403336Z 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-08-26T20:12:01.0409651Z 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-08-26T20:12:01.0416124Z 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-08-26T20:12:01.0422771Z 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-08-26T20:12:01.0428588Z 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-08-26T20:12:01.0434722Z 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-08-26T20:12:01.0441339Z 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-08-26T20:12:01.0447806Z 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-08-26T20:12:01.0454059Z 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-08-26T20:12:01.0460226Z 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-08-26T20:12:01.0466265Z 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-08-26T20:12:01.0472560Z 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-08-26T20:12:01.0478570Z 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-08-26T20:12:01.0484665Z 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-08-26T20:12:01.0490708Z 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-08-26T20:12:01.0497330Z 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-08-26T20:12:01.0503472Z 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-08-26T20:12:01.0509208Z 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-08-26T20:12:01.0514977Z 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-08-26T20:12:01.0521359Z 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-08-26T20:12:01.0527420Z 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-08-26T20:12:01.0533209Z 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-08-26T20:12:01.0539389Z 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-08-26T20:12:01.0545647Z 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-08-26T20:12:01.0551524Z 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-08-26T20:12:01.0557914Z 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-08-26T20:12:01.0563837Z 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-08-26T20:12:01.0571773Z 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-08-26T20:12:01.0577577Z 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-08-26T20:12:01.0585704Z 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-08-26T20:12:01.0591437Z 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-08-26T20:12:01.0597338Z 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-08-26T20:12:01.0603314Z 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-08-26T20:12:01.0609789Z 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-08-26T20:12:01.0617684Z 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-08-26T20:12:01.0623979Z 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-08-26T20:12:01.0630023Z 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-08-26T20:12:01.0636327Z 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-08-26T20:12:01.0642163Z 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-08-26T20:12:01.0648190Z 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-08-26T20:12:01.0654337Z 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-08-26T20:12:01.0660400Z 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-08-26T20:12:01.0666688Z 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-08-26T20:12:01.0674276Z 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-08-26T20:12:01.0680319Z 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-08-26T20:12:01.0698200Z 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-08-26T20:12:01.0704804Z 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-08-26T20:12:01.0710755Z 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-08-26T20:12:01.0716993Z 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-08-26T20:12:01.0722952Z 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-08-26T20:12:01.0729379Z 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-08-26T20:12:01.0735593Z 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-08-26T20:12:01.0741775Z 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-08-26T20:12:01.0748033Z 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-08-26T20:12:01.0754224Z 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-08-26T20:12:01.0760321Z 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-08-26T20:12:01.0766261Z 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-08-26T20:12:01.0772607Z 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-08-26T20:12:01.0778892Z 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-08-26T20:12:01.0785678Z 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-08-26T20:12:01.0791877Z 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-08-26T20:12:01.0798162Z 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-08-26T20:12:01.0804499Z 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-08-26T20:12:01.0810381Z 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-08-26T20:12:01.0816401Z 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-08-26T20:12:01.0822735Z 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-08-26T20:12:01.0828764Z 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-08-26T20:12:01.0834833Z 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-08-26T20:12:01.0841124Z 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-08-26T20:12:01.0847162Z 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-08-26T20:12:01.0853122Z 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-08-26T20:12:01.0859178Z 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-08-26T20:12:01.0865207Z 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-08-26T20:12:01.0876323Z 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-08-26T20:12:01.0882315Z 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-08-26T20:12:01.0888228Z 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-08-26T20:12:01.0894641Z 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-08-26T20:12:01.0901368Z 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-08-26T20:12:01.0907739Z 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-08-26T20:12:01.0913652Z 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-08-26T20:12:01.0919967Z 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-08-26T20:12:01.0926724Z 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-08-26T20:12:01.0933271Z 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-08-26T20:12:01.0939683Z 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-08-26T20:12:01.0945989Z 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-08-26T20:12:01.0952043Z 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-08-26T20:12:01.0958210Z 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-08-26T20:12:01.0964994Z 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-08-26T20:12:01.0972000Z 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-08-26T20:12:01.0978132Z 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-08-26T20:12:01.0984371Z 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-08-26T20:12:01.0997547Z 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-08-26T20:12:01.0999663Z 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-08-26T20:12:01.1005474Z 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-08-26T20:12:01.1011536Z 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-08-26T20:12:01.1018858Z 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-08-26T20:12:01.1026344Z 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-08-26T20:12:01.1032207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1038628Z 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-08-26T20:12:01.1044741Z 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-08-26T20:12:01.1050796Z 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-08-26T20:12:01.1056971Z 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-08-26T20:12:01.1082214Z 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-08-26T20:12:01.1083480Z 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-08-26T20:12:01.1084604Z 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-08-26T20:12:01.1085675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1089853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1095564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1101446Z 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-08-26T20:12:01.1107403Z 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-08-26T20:12:01.1113538Z 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-08-26T20:12:01.1119709Z 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-08-26T20:12:01.1126054Z 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-08-26T20:12:01.1133414Z 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-08-26T20:12:01.1138480Z 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-08-26T20:12:01.1144592Z 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-08-26T20:12:01.1150985Z 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-08-26T20:12:01.1157463Z 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-08-26T20:12:01.1164017Z 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-08-26T20:12:01.1169666Z 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-08-26T20:12:01.1175769Z 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-08-26T20:12:01.1182028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1188254Z 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-08-26T20:12:01.1194163Z 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-08-26T20:12:01.1230992Z 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-08-26T20:12:01.1236075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1242677Z 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-08-26T20:12:01.1248285Z 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-08-26T20:12:01.1253966Z 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-08-26T20:12:01.1260165Z 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-08-26T20:12:01.1266140Z 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-08-26T20:12:01.1272211Z 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-08-26T20:12:01.1278186Z 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-08-26T20:12:01.1284289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1290448Z 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-08-26T20:12:01.1296601Z 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-08-26T20:12:01.1302361Z 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-08-26T20:12:01.1308756Z 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-08-26T20:12:01.1315617Z 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-08-26T20:12:01.1321175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1327569Z 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-08-26T20:12:01.1334212Z 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-08-26T20:12:01.1340363Z 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-08-26T20:12:01.1346423Z 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-08-26T20:12:01.1352578Z 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-08-26T20:12:01.1358861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1364903Z 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-08-26T20:12:01.1370924Z 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-08-26T20:12:01.1376766Z 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-08-26T20:12:01.1383066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1389100Z 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-08-26T20:12:01.1395305Z 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-08-26T20:12:01.1401604Z 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-08-26T20:12:01.1407691Z 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-08-26T20:12:01.1413663Z 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-08-26T20:12:01.1419678Z 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-08-26T20:12:01.1426178Z 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-08-26T20:12:01.1432444Z 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-08-26T20:12:01.1438768Z 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-08-26T20:12:01.1444612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1450378Z 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-08-26T20:12:01.1456379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1462033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1468065Z 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-08-26T20:12:01.1474525Z 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-08-26T20:12:01.1480752Z 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-08-26T20:12:01.1486574Z 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-08-26T20:12:01.1492405Z 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-08-26T20:12:01.1498942Z 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-08-26T20:12:01.1504912Z 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-08-26T20:12:01.1516786Z 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-08-26T20:12:01.1523626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1529575Z 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-08-26T20:12:01.1535854Z 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-08-26T20:12:01.1542142Z 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-08-26T20:12:01.1548334Z 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-08-26T20:12:01.1554423Z 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-08-26T20:12:01.1560782Z 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-08-26T20:12:01.1567240Z 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-08-26T20:12:01.1573230Z 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-08-26T20:12:01.1579002Z 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-08-26T20:12:01.1584489Z 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-08-26T20:12:01.1590454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1596412Z 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-08-26T20:12:01.1602505Z 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-08-26T20:12:01.1608308Z 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-08-26T20:12:01.1614466Z 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-08-26T20:12:01.1620707Z 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-08-26T20:12:01.1626805Z 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-08-26T20:12:01.1632401Z 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-08-26T20:12:01.1638803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1645062Z 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-08-26T20:12:01.1650893Z 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-08-26T20:12:01.1687420Z 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-08-26T20:12:01.1693154Z 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-08-26T20:12:01.1699233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1705315Z 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-08-26T20:12:01.1711513Z 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-08-26T20:12:01.1717619Z 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-08-26T20:12:01.1724065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1730432Z 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-08-26T20:12:01.1736126Z 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-08-26T20:12:01.1741427Z 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-08-26T20:12:01.1749029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.1755355Z 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-08-26T20:12:01.1761127Z 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-08-26T20:12:01.1767215Z 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-08-26T20:12:01.1773419Z 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-08-26T20:12:01.1779215Z 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-08-26T20:12:01.1785161Z 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-08-26T20:12:01.1791751Z 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-08-26T20:12:01.1797539Z 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-08-26T20:12:01.1803113Z 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-08-26T20:12:01.1809233Z 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-08-26T20:12:01.1815335Z 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-08-26T20:12:01.1821698Z 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-08-26T20:12:01.1827834Z 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-08-26T20:12:01.1833648Z 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-08-26T20:12:01.1839827Z 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-08-26T20:12:01.1845965Z 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-08-26T20:12:01.1852153Z 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-08-26T20:12:01.1858803Z 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-08-26T20:12:01.1865073Z 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-08-26T20:12:01.1903342Z 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-08-26T20:12:01.1904613Z 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-08-26T20:12:01.1905838Z 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-08-26T20:12:01.1908553Z 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-08-26T20:12:01.1909821Z 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-08-26T20:12:01.1911049Z 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-08-26T20:12:01.1915277Z 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-08-26T20:12:01.1921359Z 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-08-26T20:12:01.1927455Z 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-08-26T20:12:01.1933021Z 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-08-26T20:12:01.1939398Z 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-08-26T20:12:01.1945615Z 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-08-26T20:12:01.1951786Z 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-08-26T20:12:01.1958106Z 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-08-26T20:12:01.1964015Z 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-08-26T20:12:01.1970252Z 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-08-26T20:12:01.1976368Z 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-08-26T20:12:01.1982943Z 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-08-26T20:12:01.1989382Z 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-08-26T20:12:01.1995663Z 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-08-26T20:12:01.2002102Z 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-08-26T20:12:01.2008544Z 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-08-26T20:12:01.2014869Z 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-08-26T20:12:01.2021136Z 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-08-26T20:12:01.2027309Z 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-08-26T20:12:01.2033230Z 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-08-26T20:12:01.2039754Z 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-08-26T20:12:01.2046076Z 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-08-26T20:12:01.2052537Z 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-08-26T20:12:01.2058818Z 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-08-26T20:12:01.2075417Z 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-08-26T20:12:01.2082170Z 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-08-26T20:12:01.2088769Z 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-08-26T20:12:01.2094989Z 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-08-26T20:12:01.2101388Z 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-08-26T20:12:01.2107627Z 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-08-26T20:12:01.2113891Z 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-08-26T20:12:01.2119981Z 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-08-26T20:12:01.2126083Z 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-08-26T20:12:01.2139249Z 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-08-26T20:12:01.2183344Z 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-08-26T20:12:01.2184338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.2185377Z 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-08-26T20:12:01.2186408Z 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-08-26T20:12:01.2188884Z 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-08-26T20:12:01.2189868Z 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-08-26T20:12:01.2190878Z 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-08-26T20:12:01.2192133Z 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-08-26T20:12:01.2197184Z 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-08-26T20:12:01.2203467Z 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-08-26T20:12:01.2209744Z 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-08-26T20:12:01.2215685Z 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-08-26T20:12:01.2222307Z 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-08-26T20:12:01.2228417Z 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-08-26T20:12:01.2234078Z 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-08-26T20:12:01.2240086Z 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-08-26T20:12:01.2246071Z 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-08-26T20:12:01.2252123Z 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-08-26T20:12:01.2257876Z 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-08-26T20:12:01.2264147Z 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-08-26T20:12:01.2270355Z 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-08-26T20:12:01.2276566Z 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-08-26T20:12:01.2282381Z 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-08-26T20:12:01.2288830Z 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-08-26T20:12:01.2294996Z 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-08-26T20:12:01.2300808Z 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-08-26T20:12:01.2306790Z 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-08-26T20:12:01.2313048Z 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-08-26T20:12:01.2319339Z 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-08-26T20:12:01.2325092Z 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-08-26T20:12:01.2331157Z 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-08-26T20:12:01.2337261Z 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-08-26T20:12:01.2343368Z 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-08-26T20:12:01.2349141Z 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-08-26T20:12:01.2355471Z 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-08-26T20:12:01.2361401Z 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-08-26T20:12:01.2367856Z 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-08-26T20:12:01.2373808Z 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-08-26T20:12:01.2380725Z 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-08-26T20:12:01.2386400Z 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-08-26T20:12:01.2392561Z 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-08-26T20:12:01.2398766Z 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-08-26T20:12:01.2404992Z 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-08-26T20:12:01.2410976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.2417009Z 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-08-26T20:12:01.2423607Z 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-08-26T20:12:01.2429851Z 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-08-26T20:12:01.2436026Z 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-08-26T20:12:01.2442331Z 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-08-26T20:12:01.2449931Z 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-08-26T20:12:01.2455591Z 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-08-26T20:12:01.2461640Z 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-08-26T20:12:01.2468262Z 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-08-26T20:12:01.2474096Z 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-08-26T20:12:01.2487532Z 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-08-26T20:12:01.2494024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.2500692Z 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-08-26T20:12:01.2506420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.2512915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.2518881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.2524824Z 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-08-26T20:12:01.2530746Z 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-08-26T20:12:01.2537263Z 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-08-26T20:12:01.2543209Z 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-08-26T20:12:01.2549160Z 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-08-26T20:12:01.2555606Z 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-08-26T20:12:01.2562023Z 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-08-26T20:12:01.2568115Z 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-08-26T20:12:01.2574554Z 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-08-26T20:12:01.2590295Z 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-08-26T20:12:01.2590767Z 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-08-26T20:12:01.2594308Z 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-08-26T20:12:01.2600903Z 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-08-26T20:12:01.2608407Z 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-08-26T20:12:01.2614500Z 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-08-26T20:12:01.2619392Z 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-08-26T20:12:01.2625646Z 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-08-26T20:12:01.2631869Z 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-08-26T20:12:01.2637934Z 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-08-26T20:12:01.2644415Z 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-08-26T20:12:01.2651461Z 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-08-26T20:12:01.2657336Z 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-08-26T20:12:01.2663594Z 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-08-26T20:12:01.2669709Z 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-08-26T20:12:01.2676134Z 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-08-26T20:12:01.2681946Z 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-08-26T20:12:01.2688235Z 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-08-26T20:12:01.2694225Z 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-08-26T20:12:01.2700374Z 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-08-26T20:12:01.2706386Z 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-08-26T20:12:01.2712571Z 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-08-26T20:12:01.2718543Z 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-08-26T20:12:01.2724546Z 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-08-26T20:12:01.2731512Z 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-08-26T20:12:01.2737833Z 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-08-26T20:12:01.2744100Z 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-08-26T20:12:01.2750544Z 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-08-26T20:12:01.2756846Z 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-08-26T20:12:01.2763393Z 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-08-26T20:12:01.2769750Z 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-08-26T20:12:01.2775998Z 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-08-26T20:12:01.2782577Z 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-08-26T20:12:01.2789079Z 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-08-26T20:12:01.2795495Z 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-08-26T20:12:01.2802180Z 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-08-26T20:12:01.2808252Z 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-08-26T20:12:01.2814465Z 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-08-26T20:12:01.2820367Z 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-08-26T20:12:01.2826464Z 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-08-26T20:12:01.2832362Z 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-08-26T20:12:01.2839000Z 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-08-26T20:12:01.2845043Z 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-08-26T20:12:01.2851329Z 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-08-26T20:12:01.2857409Z 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-08-26T20:12:01.2863980Z 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-08-26T20:12:01.2870187Z 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-08-26T20:12:01.2876984Z 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-08-26T20:12:01.2882760Z 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-08-26T20:12:01.2889359Z 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-08-26T20:12:01.2895787Z 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-08-26T20:12:01.2902122Z 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-08-26T20:12:01.2908431Z 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-08-26T20:12:01.2915160Z 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-08-26T20:12:01.2921696Z 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-08-26T20:12:01.2928309Z 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-08-26T20:12:01.2934450Z 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-08-26T20:12:01.2945913Z 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-08-26T20:12:01.2952548Z 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-08-26T20:12:01.2958647Z 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-08-26T20:12:01.2964734Z 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-08-26T20:12:01.2971028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.2977501Z 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-08-26T20:12:01.2983545Z 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-08-26T20:12:01.2989591Z 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-08-26T20:12:01.3002245Z 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-08-26T20:12:01.3008637Z 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-08-26T20:12:01.3014805Z 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-08-26T20:12:01.3021056Z 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-08-26T20:12:01.3027179Z 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-08-26T20:12:01.3033309Z 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-08-26T20:12:01.3039733Z 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-08-26T20:12:01.3046076Z 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-08-26T20:12:01.3052451Z 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-08-26T20:12:01.3058759Z 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-08-26T20:12:01.3064952Z 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-08-26T20:12:01.3072367Z 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-08-26T20:12:01.3078354Z 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-08-26T20:12:01.3084435Z 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-08-26T20:12:01.3090740Z 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-08-26T20:12:01.3097070Z 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-08-26T20:12:01.3103309Z 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-08-26T20:12:01.3109481Z 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-08-26T20:12:01.3115929Z 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-08-26T20:12:01.3122102Z 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-08-26T20:12:01.3128631Z 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-08-26T20:12:01.3134954Z 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-08-26T20:12:01.3142471Z 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-08-26T20:12:01.3147504Z 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-08-26T20:12:01.3154015Z 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-08-26T20:12:01.3159953Z 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-08-26T20:12:01.3165939Z 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-08-26T20:12:01.3172278Z 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-08-26T20:12:01.3178384Z 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-08-26T20:12:01.3184318Z 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-08-26T20:12:01.3190409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3196756Z 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-08-26T20:12:01.3203623Z 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-08-26T20:12:01.3209735Z 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-08-26T20:12:01.3216074Z 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-08-26T20:12:01.3222653Z 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-08-26T20:12:01.3229763Z 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-08-26T20:12:01.3235448Z 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-08-26T20:12:01.3241462Z 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-08-26T20:12:01.3247692Z 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-08-26T20:12:01.3254131Z 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-08-26T20:12:01.3260169Z 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-08-26T20:12:01.3266373Z 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-08-26T20:12:01.3272315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3278505Z 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-08-26T20:12:01.3284686Z 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-08-26T20:12:01.3290794Z 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-08-26T20:12:01.3297205Z 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-08-26T20:12:01.3303489Z 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-08-26T20:12:01.3309460Z 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-08-26T20:12:01.3315543Z 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-08-26T20:12:01.3321601Z 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-08-26T20:12:01.3358470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3364245Z 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-08-26T20:12:01.3369855Z 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-08-26T20:12:01.3375903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3381732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3387828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3393508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3399066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3404841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3411068Z 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-08-26T20:12:01.3416961Z 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-08-26T20:12:01.3423091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3429202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3435137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.3441939Z 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-08-26T20:12:01.3448197Z 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-08-26T20:12:01.3453897Z 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-08-26T20:12:01.3460076Z 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-08-26T20:12:01.3467799Z 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-08-26T20:12:01.3474147Z 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-08-26T20:12:01.3480398Z 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-08-26T20:12:01.3486436Z 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-08-26T20:12:01.3492813Z 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-08-26T20:12:01.3499639Z 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-08-26T20:12:01.3505758Z 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-08-26T20:12:01.3511823Z 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-08-26T20:12:01.3518045Z 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-08-26T20:12:01.3523876Z 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-08-26T20:12:01.3530164Z 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-08-26T20:12:01.3536669Z 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-08-26T20:12:01.3543179Z 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-08-26T20:12:01.3549508Z 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-08-26T20:12:01.3555675Z 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-08-26T20:12:01.3562734Z 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-08-26T20:12:01.3569068Z 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-08-26T20:12:01.3589894Z 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-08-26T20:12:01.3590433Z 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-08-26T20:12:01.3591206Z 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-08-26T20:12:01.3597226Z 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-08-26T20:12:01.3603470Z 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-08-26T20:12:01.3610060Z 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-08-26T20:12:01.3616463Z 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-08-26T20:12:01.3622601Z 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-08-26T20:12:01.3627911Z 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-08-26T20:12:01.3634416Z 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-08-26T20:12:01.3640856Z 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-08-26T20:12:01.3646544Z 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-08-26T20:12:01.3652756Z 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-08-26T20:12:01.3658979Z 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-08-26T20:12:01.3664666Z 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-08-26T20:12:01.3672037Z 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-08-26T20:12:01.3676921Z 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-08-26T20:12:01.3682930Z 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-08-26T20:12:01.3689445Z 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-08-26T20:12:01.3695396Z 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-08-26T20:12:01.3701487Z 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-08-26T20:12:01.3707675Z 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-08-26T20:12:01.3713647Z 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-08-26T20:12:01.3719738Z 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-08-26T20:12:01.3725797Z 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-08-26T20:12:01.3732150Z 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-08-26T20:12:01.3738080Z 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-08-26T20:12:01.3744327Z 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-08-26T20:12:01.3750427Z 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-08-26T20:12:01.3756583Z 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-08-26T20:12:01.3762564Z 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-08-26T20:12:01.3768693Z 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-08-26T20:12:01.3774887Z 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-08-26T20:12:01.3781513Z 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-08-26T20:12:01.3787618Z 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-08-26T20:12:01.3793224Z 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-08-26T20:12:01.3799520Z 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-08-26T20:12:01.3805920Z 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-08-26T20:12:01.3812060Z 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-08-26T20:12:01.3818124Z 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-08-26T20:12:01.3824221Z 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-08-26T20:12:01.3830732Z 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-08-26T20:12:01.3836719Z 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-08-26T20:12:01.3842485Z 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-08-26T20:12:01.3848837Z 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-08-26T20:12:01.3855213Z 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-08-26T20:12:01.3861209Z 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-08-26T20:12:01.3867314Z 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-08-26T20:12:01.3873500Z 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-08-26T20:12:01.3880030Z 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-08-26T20:12:01.3885863Z 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-08-26T20:12:01.3903150Z 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-08-26T20:12:01.3909396Z 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-08-26T20:12:01.3915958Z 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-08-26T20:12:01.3922254Z 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-08-26T20:12:01.3928614Z 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-08-26T20:12:01.3934540Z 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-08-26T20:12:01.3940882Z 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-08-26T20:12:01.3974009Z 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-08-26T20:12:01.3974571Z 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-08-26T20:12:01.3975091Z 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-08-26T20:12:01.3975594Z 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-08-26T20:12:01.3976208Z 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-08-26T20:12:01.3981698Z 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-08-26T20:12:01.3987876Z 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-08-26T20:12:01.3993937Z 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-08-26T20:12:01.4000401Z 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-08-26T20:12:01.4006995Z 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-08-26T20:12:01.4013253Z 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-08-26T20:12:01.4019316Z 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-08-26T20:12:01.4026233Z 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-08-26T20:12:01.4032671Z 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-08-26T20:12:01.4038662Z 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-08-26T20:12:01.4044944Z 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-08-26T20:12:01.4050837Z 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-08-26T20:12:01.4058812Z 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-08-26T20:12:01.4065328Z 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-08-26T20:12:01.4071347Z 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-08-26T20:12:01.4077951Z 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-08-26T20:12:01.4084090Z 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-08-26T20:12:01.4090061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4095786Z 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-08-26T20:12:01.4102323Z 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-08-26T20:12:01.4108301Z 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-08-26T20:12:01.4113958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4119790Z 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-08-26T20:12:01.4125725Z 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-08-26T20:12:01.4131765Z 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-08-26T20:12:01.4138555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4145357Z 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-08-26T20:12:01.4152049Z 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-08-26T20:12:01.4158845Z 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-08-26T20:12:01.4165183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4171975Z 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-08-26T20:12:01.4178098Z 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-08-26T20:12:01.4184368Z 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-08-26T20:12:01.4191720Z 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-08-26T20:12:01.4206497Z 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-08-26T20:12:01.4212466Z 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-08-26T20:12:01.4218688Z 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-08-26T20:12:01.4225417Z 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-08-26T20:12:01.4231999Z 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-08-26T20:12:01.4238526Z 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-08-26T20:12:01.4244473Z 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-08-26T20:12:01.4250520Z 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-08-26T20:12:01.4256723Z 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-08-26T20:12:01.4262731Z 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-08-26T20:12:01.4268758Z 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-08-26T20:12:01.4275215Z 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-08-26T20:12:01.4281136Z 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-08-26T20:12:01.4287806Z 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-08-26T20:12:01.4293651Z 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-08-26T20:12:01.4299599Z 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-08-26T20:12:01.4305780Z 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-08-26T20:12:01.4311845Z 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-08-26T20:12:01.4317724Z 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-08-26T20:12:01.4324490Z 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-08-26T20:12:01.4330652Z 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-08-26T20:12:01.4336369Z 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-08-26T20:12:01.4342145Z 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-08-26T20:12:01.4347783Z 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-08-26T20:12:01.4353756Z 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-08-26T20:12:01.4359616Z 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-08-26T20:12:01.4365629Z 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-08-26T20:12:01.4371785Z 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-08-26T20:12:01.4377357Z 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-08-26T20:12:01.4383466Z 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-08-26T20:12:01.4389519Z 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-08-26T20:12:01.4395494Z 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-08-26T20:12:01.4401478Z 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-08-26T20:12:01.4407591Z 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-08-26T20:12:01.4413459Z 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-08-26T20:12:01.4419303Z 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-08-26T20:12:01.4425556Z 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-08-26T20:12:01.4431497Z 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-08-26T20:12:01.4437723Z 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-08-26T20:12:01.4443828Z 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-08-26T20:12:01.4449898Z 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-08-26T20:12:01.4455886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4462634Z 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-08-26T20:12:01.4468254Z 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-08-26T20:12:01.4474281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4479980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4485791Z 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-08-26T20:12:01.4492113Z 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-08-26T20:12:01.4497984Z 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-08-26T20:12:01.4504536Z 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-08-26T20:12:01.4511229Z 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-08-26T20:12:01.4517397Z 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-08-26T20:12:01.4523846Z 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-08-26T20:12:01.4530070Z 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-08-26T20:12:01.4536092Z 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-08-26T20:12:01.4542572Z 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-08-26T20:12:01.4548597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4554547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4560472Z 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-08-26T20:12:01.4566595Z 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-08-26T20:12:01.4572653Z 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-08-26T20:12:01.4578922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4585209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4592916Z 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-08-26T20:12:01.4599522Z 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-08-26T20:12:01.4606541Z 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-08-26T20:12:01.4613614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4619547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4625167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4639954Z 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-08-26T20:12:01.4641123Z 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-08-26T20:12:01.4673598Z 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-08-26T20:12:01.4679480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4686739Z 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-08-26T20:12:01.4692487Z 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-08-26T20:12:01.4698249Z 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-08-26T20:12:01.4703941Z 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-08-26T20:12:01.4710012Z 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-08-26T20:12:01.4716163Z 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-08-26T20:12:01.4722267Z 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-08-26T20:12:01.4728036Z 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-08-26T20:12:01.4734189Z 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-08-26T20:12:01.4740077Z 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-08-26T20:12:01.4745948Z 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-08-26T20:12:01.4752275Z 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-08-26T20:12:01.4758525Z 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-08-26T20:12:01.4764570Z 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-08-26T20:12:01.4771149Z 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-08-26T20:12:01.4776997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.4784182Z 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-08-26T20:12:01.4790329Z 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-08-26T20:12:01.4796508Z 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-08-26T20:12:01.4802588Z 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-08-26T20:12:01.4808668Z 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-08-26T20:12:01.4815729Z 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-08-26T20:12:01.4822083Z 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-08-26T20:12:01.4828186Z 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-08-26T20:12:01.4834226Z 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-08-26T20:12:01.4840319Z 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-08-26T20:12:01.4846852Z 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-08-26T20:12:01.4852947Z 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-08-26T20:12:01.4859903Z 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-08-26T20:12:01.4865877Z 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-08-26T20:12:01.4873087Z 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-08-26T20:12:01.4878921Z 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-08-26T20:12:01.4884828Z 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-08-26T20:12:01.4891325Z 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-08-26T20:12:01.4897531Z 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-08-26T20:12:01.4903588Z 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-08-26T20:12:01.4909517Z 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-08-26T20:12:01.4915865Z 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-08-26T20:12:01.4922957Z 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-08-26T20:12:01.4929099Z 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-08-26T20:12:01.4935238Z 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-08-26T20:12:01.4941298Z 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-08-26T20:12:01.4947528Z 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-08-26T20:12:01.4954038Z 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-08-26T20:12:01.4960569Z 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-08-26T20:12:01.4967396Z 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-08-26T20:12:01.4973934Z 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-08-26T20:12:01.4979579Z 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-08-26T20:12:01.4985816Z 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-08-26T20:12:01.4992412Z 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-08-26T20:12:01.4998602Z 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-08-26T20:12:01.5004804Z 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-08-26T20:12:01.5043072Z 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-08-26T20:12:01.5048821Z 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-08-26T20:12:01.5054979Z 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-08-26T20:12:01.5061759Z 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-08-26T20:12:01.5067952Z 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-08-26T20:12:01.5074066Z 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-08-26T20:12:01.5080168Z 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-08-26T20:12:01.5086687Z 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-08-26T20:12:01.5093631Z 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-08-26T20:12:01.5099884Z 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-08-26T20:12:01.5106964Z 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-08-26T20:12:01.5113095Z 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-08-26T20:12:01.5119629Z 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-08-26T20:12:01.5125698Z 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-08-26T20:12:01.5132180Z 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-08-26T20:12:01.5138407Z 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-08-26T20:12:01.5144430Z 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-08-26T20:12:01.5150482Z 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-08-26T20:12:01.5156817Z 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-08-26T20:12:01.5163305Z 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-08-26T20:12:01.5169895Z 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-08-26T20:12:01.5175936Z 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-08-26T20:12:01.5182075Z 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-08-26T20:12:01.5188214Z 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-08-26T20:12:01.5194448Z 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-08-26T20:12:01.5200350Z 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-08-26T20:12:01.5206326Z 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-08-26T20:12:01.5212893Z 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-08-26T20:12:01.5219365Z 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-08-26T20:12:01.5225140Z 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-08-26T20:12:01.5231585Z 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-08-26T20:12:01.5237642Z 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-08-26T20:12:01.5243945Z 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-08-26T20:12:01.5250135Z 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-08-26T20:12:01.5256086Z 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-08-26T20:12:01.5262058Z 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-08-26T20:12:01.5268116Z 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-08-26T20:12:01.5274776Z 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-08-26T20:12:01.5280912Z 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-08-26T20:12:01.5287465Z 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-08-26T20:12:01.5293441Z 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-08-26T20:12:01.5299719Z 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-08-26T20:12:01.5305700Z 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-08-26T20:12:01.5311647Z 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-08-26T20:12:01.5318346Z 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-08-26T20:12:01.5324356Z 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-08-26T20:12:01.5330341Z 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-08-26T20:12:01.5336674Z 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-08-26T20:12:01.5342608Z 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-08-26T20:12:01.5348825Z 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-08-26T20:12:01.5354741Z 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-08-26T20:12:01.5360536Z 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-08-26T20:12:01.5366407Z 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-08-26T20:12:01.5372175Z 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-08-26T20:12:01.5377921Z 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-08-26T20:12:01.5383900Z 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-08-26T20:12:01.5389801Z 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-08-26T20:12:01.5396180Z 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-08-26T20:12:01.5402013Z 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-08-26T20:12:01.5407780Z 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-08-26T20:12:01.5413721Z 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-08-26T20:12:01.5419911Z 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-08-26T20:12:01.5425839Z 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-08-26T20:12:01.5431623Z 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-08-26T20:12:01.5437663Z 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-08-26T20:12:01.5443811Z 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-08-26T20:12:01.5450453Z 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-08-26T20:12:01.5456217Z 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-08-26T20:12:01.5462287Z 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-08-26T20:12:01.5468075Z 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-08-26T20:12:01.5474308Z 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-08-26T20:12:01.5480506Z 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-08-26T20:12:01.5486524Z 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-08-26T20:12:01.5492462Z 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-08-26T20:12:01.5498698Z 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-08-26T20:12:01.5504690Z 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-08-26T20:12:01.5510802Z 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-08-26T20:12:01.5516900Z 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-08-26T20:12:01.5523364Z 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-08-26T20:12:01.5529431Z 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-08-26T20:12:01.5535432Z 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-08-26T20:12:01.5541312Z 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-08-26T20:12:01.5547798Z 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-08-26T20:12:01.5553954Z 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-08-26T20:12:01.5559872Z 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-08-26T20:12:01.5565915Z 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-08-26T20:12:01.5572222Z 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-08-26T20:12:01.5578183Z 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-08-26T20:12:01.5584178Z 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-08-26T20:12:01.5590278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.5595331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.5601393Z 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-08-26T20:12:01.5607380Z 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-08-26T20:12:01.5613232Z 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-08-26T20:12:01.5618965Z 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-08-26T20:12:01.5624668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.5630390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.5636225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.5641997Z 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-08-26T20:12:01.5647648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.5653294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.5659562Z 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-08-26T20:12:01.5665331Z 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-08-26T20:12:01.5673761Z 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-08-26T20:12:01.5680145Z 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-08-26T20:12:01.5686452Z 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-08-26T20:12:01.5692592Z 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-08-26T20:12:01.5699073Z 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-08-26T20:12:01.5705259Z 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-08-26T20:12:01.5711442Z 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-08-26T20:12:01.5717761Z 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-08-26T20:12:01.5723823Z 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-08-26T20:12:01.5730325Z 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-08-26T20:12:01.5736971Z 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-08-26T20:12:01.5743075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.5752464Z 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-08-26T20:12:01.5758759Z 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-08-26T20:12:01.5765017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-08-26T20:12:01.5771704Z 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-08-26T20:12:01.5778142Z 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-08-26T20:12:01.5784970Z 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-08-26T20:12:01.5791415Z 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-08-26T20:12:01.5797693Z 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-08-26T20:12:01.5803873Z 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-08-26T20:12:01.5810533Z 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-08-26T20:12:01.5817366Z 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-08-26T20:12:01.5823793Z 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-08-26T20:12:01.5829739Z 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-08-26T20:12:01.5838325Z 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-08-26T20:12:01.5844671Z 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-08-26T20:12:01.5851310Z 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-08-26T20:12:01.5857519Z 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-08-26T20:12:01.5864100Z 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-08-26T20:12:01.5870497Z 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-08-26T20:12:01.5876938Z 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-08-26T20:12:01.5883153Z 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-08-26T20:12:01.5889779Z 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-08-26T20:12:01.5895454Z 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-08-26T20:12:01.5902303Z 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-08-26T20:12:01.5908602Z 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-08-26T20:12:01.5914685Z 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-08-26T20:12:01.5920776Z 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-08-26T20:12:01.5927592Z 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-08-26T20:12:01.5934355Z 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-08-26T20:12:01.5940977Z 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-08-26T20:12:01.5954715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PadNd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.5960222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.5966313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.5972050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelFuture.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.5977920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelNative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.5983503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelOpenMP.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.5989130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PTThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.5994763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PythonTorchFunctionTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6001698Z creating build\bdist.win-amd64\wheel\torch\include\ATen\quantized 2025-08-26T20:12:01.6005262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\QTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-08-26T20:12:01.6011128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\Quantizer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-08-26T20:12:01.6016749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\record_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6023069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6049341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6063595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ROCmFABackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6069209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SavedTensorHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6074938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6080013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6085518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6091067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SDPBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6097020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SequenceNumber.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6129002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6129984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6131088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6132084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6135589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6140985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\StorageUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6146980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6153065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6157438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorGeometry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6164142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6170426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6177104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIteratorInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6182721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6188237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorNames.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6193987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6199830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6205440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorSubclassLikeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6211013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6216972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalPythonObjects.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6222393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6243530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TracerMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6249522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TypeDefault.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6254462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6259590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6264735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\VmapGeneratedPlumbing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6286696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6292306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtilsMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-08-26T20:12:01.6307084Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu 2025-08-26T20:12:01.6310634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-08-26T20:12:01.6316457Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu\detail 2025-08-26T20:12:01.6319607Z 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-08-26T20:12:01.6325036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-08-26T20:12:01.6330161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-08-26T20:12:01.6349279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-08-26T20:12:01.6354347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-08-26T20:12:01.6360064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-08-26T20:12:01.6372672Z creating build\bdist.win-amd64\wheel\torch\include\c10 2025-08-26T20:12:01.6376799Z creating build\bdist.win-amd64\wheel\torch\include\c10\core 2025-08-26T20:12:01.6380489Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\alignment.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6385824Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Allocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6391502Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\AllocatorConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6397009Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\AutogradState.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6416804Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6422360Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CachingDeviceAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6428064Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CompileTimeFunctionPointer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6433599Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ConstantSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6438941Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Contiguity.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6445184Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CopyBytes.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6450713Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CPUAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6456044Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultDtype.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6461422Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6466901Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6472533Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceArray.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6478258Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6484198Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6489889Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKey.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6496292Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKeySet.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6502587Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DynamicCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6521744Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6527292Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6532802Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GradMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6539142Z creating build\bdist.win-amd64\wheel\torch\include\c10\core\impl 2025-08-26T20:12:01.6542321Z 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-08-26T20:12:01.6547703Z 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-08-26T20:12:01.6553121Z 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-08-26T20:12:01.6558798Z 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-08-26T20:12:01.6578266Z 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-08-26T20:12:01.6583716Z 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-08-26T20:12:01.6589082Z 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-08-26T20:12:01.6594594Z 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-08-26T20:12:01.6600646Z 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-08-26T20:12:01.6620340Z 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-08-26T20:12:01.6621467Z 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-08-26T20:12:01.6622613Z 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-08-26T20:12:01.6626106Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\PyInterpreterHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-08-26T20:12:01.6630284Z 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-08-26T20:12:01.6635898Z 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-08-26T20:12:01.6641476Z 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-08-26T20:12:01.6647144Z 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-08-26T20:12:01.6652507Z 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-08-26T20:12:01.6657904Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\InferenceMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6662999Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6668719Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6675550Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\OptionalRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6681270Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\PyHandleCache.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6687115Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6692776Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6698215Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\RefcountedDeleter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6716581Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SafePyObject.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6721771Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6763736Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6769737Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6775162Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6780268Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6786658Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6792530Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StreamGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6798283Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymbolicShapeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6803820Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymBool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6809795Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymFloat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6815197Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymInt.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6821221Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymIntArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6833593Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6839157Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6846288Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6852379Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\thread_pool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6859265Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6863591Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\WrapDimMinimal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-08-26T20:12:01.6870923Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda 2025-08-26T20:12:01.6873563Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAlgorithm.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6879148Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6885125Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDACachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6891131Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertion.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6910788Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6915184Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6920669Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6928531Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6934019Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6939203Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6945660Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMathCompat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6951388Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMiscFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6955581Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6961119Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\driver_api.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-08-26T20:12:01.6968620Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda\impl 2025-08-26T20:12:01.6971738Z 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-08-26T20:12:01.6977499Z 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-08-26T20:12:01.6982998Z 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-08-26T20:12:01.6988507Z creating build\bdist.win-amd64\wheel\torch\include\c10\macros 2025-08-26T20:12:01.6991866Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-08-26T20:12:01.6997596Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-08-26T20:12:01.7003337Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-08-26T20:12:01.7008861Z creating build\bdist.win-amd64\wheel\torch\include\c10\metal 2025-08-26T20:12:01.7011657Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\atomic.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-08-26T20:12:01.7017182Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-08-26T20:12:01.7022801Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\expm1f.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-08-26T20:12:01.7028198Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-08-26T20:12:01.7034669Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\random.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-08-26T20:12:01.7039937Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\reduction_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-08-26T20:12:01.7058096Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\special_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-08-26T20:12:01.7071862Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-08-26T20:12:01.7073246Z creating build\bdist.win-amd64\wheel\torch\include\c10\mobile 2025-08-26T20:12:01.7076823Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-08-26T20:12:01.7082392Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUProfilingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-08-26T20:12:01.7088358Z creating build\bdist.win-amd64\wheel\torch\include\c10\test 2025-08-26T20:12:01.7091733Z creating build\bdist.win-amd64\wheel\torch\include\c10\test\util 2025-08-26T20:12:01.7095343Z 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-08-26T20:12:01.7102303Z 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-08-26T20:12:01.7109031Z 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-08-26T20:12:01.7116234Z creating build\bdist.win-amd64\wheel\torch\include\c10\util 2025-08-26T20:12:01.7119487Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AbortHandler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7125280Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\accumulate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7130860Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AlignOf.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7137404Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ApproximateClock.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7156400Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7161613Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7167204Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7173025Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7178907Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7184813Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7190050Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7194928Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7200744Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bit_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7205813Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\C++17.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7211036Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\CallOnce.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7216065Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7223248Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7229982Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7236221Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ConstexprCrc.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7242289Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7248449Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DeadlockDetection.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7254858Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Deprecated.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7260450Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7265668Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DynamicCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7282961Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Enumerate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7288620Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\env.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7293757Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\error.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7305401Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Exception.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7311402Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7316783Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7323380Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FbcodeMaps.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7328972Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Flags.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7335224Z 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-08-26T20:12:01.7342861Z 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-08-26T20:12:01.7348897Z 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-08-26T20:12:01.7366002Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fn.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7371681Z 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-08-26T20:12:01.7376958Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7382341Z 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-08-26T20:12:01.7387837Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7392960Z 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-08-26T20:12:01.7398202Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7403450Z 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-08-26T20:12:01.7408936Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e8m0fnu.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7426185Z 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-08-26T20:12:01.7431107Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FunctionRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7436713Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Gauge.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7442321Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\generic_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7448543Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7454435Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7459635Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7465613Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IdWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7471198Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\int128.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7476773Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IntrusiveList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7482160Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\intrusive_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7488371Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\irange.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7493708Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Lazy.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7499148Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\LeftRight.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7516908Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\llvmMathExtras.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7523599Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Load.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7529560Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Logging.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7535244Z 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-08-26T20:12:01.7540681Z 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-08-26T20:12:01.7546170Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MathConstants.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7552822Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MaybeOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7558488Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Metaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7564943Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\NetworkFlow.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7572111Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\numa.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7578572Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Optional.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7608682Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\OptionalArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7614736Z 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-08-26T20:12:01.7622066Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overflows.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7627786Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overloaded.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7633780Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ParallelGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7639363Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\python_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7645481Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint32.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7650794Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7655850Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint2x4.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7661069Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint4x2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7665905Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7670756Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Registry.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7676411Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\safe_numerics.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7693463Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ScopeExit.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7698605Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Semaphore.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7704593Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\signal_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7709886Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallBuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7715799Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7723028Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\sparse_bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7728896Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ssize.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7734270Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\static_tracepoint.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7739702Z 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-08-26T20:12:01.7745206Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strides.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7750123Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\StringUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7767583Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7772516Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_view.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7778052Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strong_type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7784085Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Synchronized.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7789238Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\tempfile.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7794454Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7814215Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocalDebugInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7819742Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\thread_name.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7824841Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7830081Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7835338Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7841179Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeIndex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7846399Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7854810Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeSafeSignMath.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7860221Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7872432Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unicode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7877422Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\UniqueVoidPtr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7883162Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unroll.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7888376Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7894209Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounterDynamicBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7899542Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\win32-headers.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-08-26T20:12:01.7907011Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu 2025-08-26T20:12:01.7922656Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\impl 2025-08-26T20:12:01.7926020Z 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-08-26T20:12:01.7931849Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test 2025-08-26T20:12:01.7935932Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test\impl 2025-08-26T20:12:01.7939154Z 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-08-26T20:12:01.7944871Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-08-26T20:12:01.7950905Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUDeviceProp.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-08-26T20:12:01.7956282Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-08-26T20:12:01.7973313Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-08-26T20:12:01.7978635Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-08-26T20:12:01.7984184Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-08-26T20:12:01.7990401Z creating build\bdist.win-amd64\wheel\torch\include\caffe2 2025-08-26T20:12:01.7995145Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\core 2025-08-26T20:12:01.7998462Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-08-26T20:12:01.8003839Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-08-26T20:12:01.8010148Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\timer.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-08-26T20:12:01.8016171Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\perfkernels 2025-08-26T20:12:01.8019625Z 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-08-26T20:12:01.8025490Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-08-26T20:12:01.8031259Z 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-08-26T20:12:01.8037091Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\serialize 2025-08-26T20:12:01.8040484Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\crc_alt.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-08-26T20:12:01.8047130Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\file_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-08-26T20:12:01.8052506Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\inline_container.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-08-26T20:12:01.8058475Z 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-08-26T20:12:01.8076197Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\istream_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-08-26T20:12:01.8081898Z 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-08-26T20:12:01.8087132Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\versions.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-08-26T20:12:01.8092761Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils 2025-08-26T20:12:01.8096358Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\fixed_divisor.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-08-26T20:12:01.8102026Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\proto_wrap.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-08-26T20:12:01.8107401Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-08-26T20:12:01.8113500Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils\threadpool 2025-08-26T20:12:01.8129042Z 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-08-26T20:12:01.8135123Z 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-08-26T20:12:01.8140615Z 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-08-26T20:12:01.8157394Z 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-08-26T20:12:01.8163105Z 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-08-26T20:12:01.8168631Z 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-08-26T20:12:01.8174130Z copying build\lib.win-amd64-cpython-39\torch\include\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8180701Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8197926Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8203292Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8208638Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8214349Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8219676Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8224833Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8230188Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8236001Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8241265Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8252719Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8258537Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8263949Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8269301Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8278173Z copying build\lib.win-amd64-cpython-39\torch\include\experiments-config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8288695Z creating build\bdist.win-amd64\wheel\torch\include\fmt 2025-08-26T20:12:01.8291829Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\args.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8297372Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\base.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8303736Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8309970Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\color.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8315967Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\compile.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8321496Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\core.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8326570Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8344018Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8350942Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\os.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8357165Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ostream.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8362546Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\printf.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8367803Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ranges.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8374031Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\std.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8379876Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\xchar.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-08-26T20:12:01.8385724Z creating build\bdist.win-amd64\wheel\torch\include\fp16 2025-08-26T20:12:01.8388916Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\bitcasts.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-08-26T20:12:01.8394674Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-08-26T20:12:01.8400482Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-08-26T20:12:01.8405665Z copying build\lib.win-amd64-cpython-39\torch\include\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8410756Z copying build\lib.win-amd64-cpython-39\torch\include\fxdiv.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.8416591Z creating build\bdist.win-amd64\wheel\torch\include\google 2025-08-26T20:12:01.8420554Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf 2025-08-26T20:12:01.8423821Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8429485Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8435002Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\api.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8441497Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8447478Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arenastring.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8491123Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8497669Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler 2025-08-26T20:12:01.8501287Z 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-08-26T20:12:01.8507141Z 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-08-26T20:12:01.8513386Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\cpp 2025-08-26T20:12:01.8517727Z 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-08-26T20:12:01.8523311Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\csharp 2025-08-26T20:12:01.8526419Z 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-08-26T20:12:01.8532069Z 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-08-26T20:12:01.8538131Z 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-08-26T20:12:01.8554462Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\java 2025-08-26T20:12:01.8558134Z 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-08-26T20:12:01.8564157Z 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-08-26T20:12:01.8569900Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\js 2025-08-26T20:12:01.8573211Z 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-08-26T20:12:01.8579139Z 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-08-26T20:12:01.8584960Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\objectivec 2025-08-26T20:12:01.8588622Z 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-08-26T20:12:01.8594104Z 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-08-26T20:12:01.8599773Z 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-08-26T20:12:01.8618963Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\php 2025-08-26T20:12:01.8619574Z 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-08-26T20:12:01.8620117Z 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-08-26T20:12:01.8622187Z 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-08-26T20:12:01.8630814Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\python 2025-08-26T20:12:01.8633022Z 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-08-26T20:12:01.8639146Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\ruby 2025-08-26T20:12:01.8643595Z 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-08-26T20:12:01.8648310Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8655039Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8665433Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor_database.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8671762Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\duration.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8677357Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\dynamic_message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8682808Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\empty.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8688895Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\extension_set.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8695340Z 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-08-26T20:12:01.8701762Z 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-08-26T20:12:01.8706491Z 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-08-26T20:12:01.8712626Z 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-08-26T20:12:01.8718076Z 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-08-26T20:12:01.8723673Z 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-08-26T20:12:01.8740527Z 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-08-26T20:12:01.8746120Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\has_bits.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8762379Z 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-08-26T20:12:01.8767562Z 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-08-26T20:12:01.8773382Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\io 2025-08-26T20:12:01.8777199Z 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-08-26T20:12:01.8783489Z 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-08-26T20:12:01.8789036Z 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-08-26T20:12:01.8795388Z 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-08-26T20:12:01.8800939Z 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-08-26T20:12:01.8818338Z 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-08-26T20:12:01.8824494Z 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-08-26T20:12:01.8829926Z 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-08-26T20:12:01.8835564Z 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-08-26T20:12:01.8841827Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8848092Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8853784Z 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-08-26T20:12:01.8859996Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8866343Z 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-08-26T20:12:01.8871813Z 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-08-26T20:12:01.8888881Z 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-08-26T20:12:01.8894998Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8901310Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8907973Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8913834Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8919734Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\parse_context.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8926375Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\port.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8931949Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8938078Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8943908Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\repeated_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8950565Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\service.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8956575Z 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-08-26T20:12:01.8974380Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\struct.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.8981034Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\stubs 2025-08-26T20:12:01.8984574Z 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-08-26T20:12:01.8990140Z 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-08-26T20:12:01.8996123Z 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-08-26T20:12:01.9001313Z 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-08-26T20:12:01.9008011Z 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-08-26T20:12:01.9013763Z 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-08-26T20:12:01.9030413Z 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-08-26T20:12:01.9036034Z 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-08-26T20:12:01.9041188Z 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-08-26T20:12:01.9047477Z 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-08-26T20:12:01.9052892Z 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-08-26T20:12:01.9058651Z 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-08-26T20:12:01.9063850Z 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-08-26T20:12:01.9069252Z 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-08-26T20:12:01.9074437Z 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-08-26T20:12:01.9079708Z 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-08-26T20:12:01.9085432Z 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-08-26T20:12:01.9091419Z 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-08-26T20:12:01.9097039Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\text_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.9103104Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\timestamp.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.9109118Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\type.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.9116040Z 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-08-26T20:12:01.9122341Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\util 2025-08-26T20:12:01.9125783Z 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-08-26T20:12:01.9131772Z 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-08-26T20:12:01.9137392Z 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-08-26T20:12:01.9153288Z 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-08-26T20:12:01.9158941Z 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-08-26T20:12:01.9164925Z 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-08-26T20:12:01.9170667Z 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-08-26T20:12:01.9176329Z 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-08-26T20:12:01.9182160Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wire_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.9188060Z 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-08-26T20:12:01.9194603Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wrappers.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-08-26T20:12:01.9212810Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify-zca.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.9229624Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.9238918Z copying build\lib.win-amd64-cpython-39\torch\include\jitprofiling.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.9246292Z creating build\bdist.win-amd64\wheel\torch\include\kineto 2025-08-26T20:12:01.9249931Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\AbstractConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9256080Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityProfilerInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9261979Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityTraceInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9277680Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityType.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9283420Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ClientInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9288930Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9294268Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\GenericTraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9300324Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\IActivityProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9305909Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ILoggerObserver.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9312155Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ITraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9317547Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\libkineto.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9323698Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\LoggingAPI.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9329036Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\output_base.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9334319Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ThreadUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9339777Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\time_since_epoch.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9345077Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\TraceSpan.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-08-26T20:12:01.9351129Z creating build\bdist.win-amd64\wheel\torch\include\legacy 2025-08-26T20:12:01.9354303Z copying build\lib.win-amd64-cpython-39\torch\include\legacy\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include\legacy 2025-08-26T20:12:01.9360635Z copying build\lib.win-amd64-cpython-39\torch\include\libittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.9365767Z copying build\lib.win-amd64-cpython-39\torch\include\libshm.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.9371623Z creating build\bdist.win-amd64\wheel\torch\include\mimalloc-2.2 2025-08-26T20:12:01.9374990Z 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-08-26T20:12:01.9380578Z 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-08-26T20:12:01.9386040Z 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-08-26T20:12:01.9402565Z 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-08-26T20:12:01.9408718Z creating build\bdist.win-amd64\wheel\torch\include\oneapi 2025-08-26T20:12:01.9412317Z creating build\bdist.win-amd64\wheel\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9415484Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9423125Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9434107Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9439623Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9445017Z 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-08-26T20:12:01.9460641Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9473019Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9478265Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9484435Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9491012Z 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-08-26T20:12:01.9496911Z 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-08-26T20:12:01.9502471Z 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-08-26T20:12:01.9508015Z 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-08-26T20:12:01.9514098Z 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-08-26T20:12:01.9519946Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9525180Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9531085Z 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-08-26T20:12:01.9536276Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9541827Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9547474Z 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-08-26T20:12:01.9553329Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9569170Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9574804Z 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-08-26T20:12:01.9580315Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9587255Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9592841Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9598627Z 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-08-26T20:12:01.9604945Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-08-26T20:12:01.9614980Z 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-08-26T20:12:01.9618755Z copying build\lib.win-amd64-cpython-39\torch\include\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.9625736Z copying build\lib.win-amd64-cpython-39\torch\include\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:01.9633969Z creating build\bdist.win-amd64\wheel\torch\include\pybind11 2025-08-26T20:12:01.9637717Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\attr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9644584Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\buffer_info.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9650592Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\cast.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9657813Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9663595Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9668744Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9684583Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\conduit 2025-08-26T20:12:01.9688148Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit\pybind11_conduit_v1.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\conduit 2025-08-26T20:12:01.9693605Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit\pybind11_platform_abi_id.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\conduit 2025-08-26T20:12:01.9699505Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit\wrap_include_python_h.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\conduit 2025-08-26T20:12:01.9715574Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\critical_section.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9721200Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\detail 2025-08-26T20:12:01.9724403Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\class.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9730462Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9736616Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\cpp_conduit.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9742253Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\descr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9747896Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\dynamic_raw_ptr_cast_if_possible.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9769552Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\exception_translation.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9775089Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\function_record_pyobject.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9780865Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\init.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9786568Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\internals.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9792564Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\native_enum_data.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9798192Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\pybind11_namespace_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9803842Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\struct_smart_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9809399Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9814733Z 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-08-26T20:12:01.9821667Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\using_smart_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-08-26T20:12:01.9827205Z 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-08-26T20:12:01.9833032Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\eigen 2025-08-26T20:12:01.9836231Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-08-26T20:12:01.9841711Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\matrix.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-08-26T20:12:01.9848474Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-08-26T20:12:01.9854310Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9859889Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\embed.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9865246Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9870865Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9876296Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9881680Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil_safe_call_once.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9887026Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil_simple.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9892674Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\iostream.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9898035Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\native_enum.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9904079Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9910537Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9916723Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\options.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9922099Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pybind11.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9929899Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pytypes.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9937338Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\stl 2025-08-26T20:12:01.9940839Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl\filesystem.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\stl 2025-08-26T20:12:01.9946450Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9952801Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl_bind.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9958681Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\subinterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9964333Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\trampoline_self_life_support.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9970465Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\type_caster_pyobject_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9986739Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\typing.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9992453Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\warnings.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-08-26T20:12:01.9997417Z copying build\lib.win-amd64-cpython-39\torch\include\sleef.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:02.0006425Z creating build\bdist.win-amd64\wheel\torch\include\THC 2025-08-26T20:12:02.0010118Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCAtomics.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-08-26T20:12:02.0015785Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCDeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-08-26T20:12:02.0021262Z creating build\bdist.win-amd64\wheel\torch\include\torch 2025-08-26T20:12:02.0034941Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc 2025-08-26T20:12:02.0038514Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api 2025-08-26T20:12:02.0041934Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include 2025-08-26T20:12:02.0045564Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch 2025-08-26T20:12:02.0049838Z 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-08-26T20:12:02.0054516Z 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-08-26T20:12:02.0060175Z 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-08-26T20:12:02.0065293Z 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-08-26T20:12:02.0071489Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data 2025-08-26T20:12:02.0075402Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-08-26T20:12:02.0078978Z 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-08-26T20:12:02.0084918Z 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-08-26T20:12:02.0090665Z 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-08-26T20:12:02.0096299Z 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-08-26T20:12:02.0102040Z 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-08-26T20:12:02.0107587Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\datasets 2025-08-26T20:12:02.0121290Z 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-08-26T20:12:02.0127080Z 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-08-26T20:12:02.0133249Z 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-08-26T20:12:02.0138663Z 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-08-26T20:12:02.0144211Z 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-08-26T20:12:02.0149482Z 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-08-26T20:12:02.0155008Z 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-08-26T20:12:02.0171037Z 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-08-26T20:12:02.0210990Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\detail 2025-08-26T20:12:02.0214431Z 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-08-26T20:12:02.0220106Z 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-08-26T20:12:02.0225406Z 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-08-26T20:12:02.0230724Z 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-08-26T20:12:02.0236319Z 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-08-26T20:12:02.0242059Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\samplers 2025-08-26T20:12:02.0245711Z 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-08-26T20:12:02.0251107Z 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-08-26T20:12:02.0257184Z 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-08-26T20:12:02.0263689Z 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-08-26T20:12:02.0269148Z 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-08-26T20:12:02.0278533Z 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-08-26T20:12:02.0283960Z 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-08-26T20:12:02.0289301Z 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-08-26T20:12:02.0294858Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\transforms 2025-08-26T20:12:02.0298460Z 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-08-26T20:12:02.0303868Z 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-08-26T20:12:02.0309264Z 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-08-26T20:12:02.0315215Z 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-08-26T20:12:02.0320631Z 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-08-26T20:12:02.0326296Z 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-08-26T20:12:02.0331550Z 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-08-26T20:12:02.0337369Z 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-08-26T20:12:02.0342820Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\detail 2025-08-26T20:12:02.0349034Z 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-08-26T20:12:02.0352145Z 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-08-26T20:12:02.0357985Z 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-08-26T20:12:02.0373879Z 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-08-26T20:12:02.0379456Z 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-08-26T20:12:02.0385330Z 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-08-26T20:12:02.0390655Z 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-08-26T20:12:02.0396239Z 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-08-26T20:12:02.0402001Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nativert 2025-08-26T20:12:02.0406510Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nativert\ModelRunnerHandle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nativert 2025-08-26T20:12:02.0412120Z 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-08-26T20:12:02.0417999Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn 2025-08-26T20:12:02.0421759Z 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-08-26T20:12:02.0428728Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\functional 2025-08-26T20:12:02.0431511Z 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-08-26T20:12:02.0438171Z 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-08-26T20:12:02.0443826Z 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-08-26T20:12:02.0449466Z 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-08-26T20:12:02.0465683Z 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-08-26T20:12:02.0471385Z 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-08-26T20:12:02.0477127Z 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-08-26T20:12:02.0482758Z 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-08-26T20:12:02.0488328Z 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-08-26T20:12:02.0494004Z 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-08-26T20:12:02.0500402Z 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-08-26T20:12:02.0505722Z 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-08-26T20:12:02.0511283Z 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-08-26T20:12:02.0516713Z 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-08-26T20:12:02.0522749Z 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-08-26T20:12:02.0528619Z 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-08-26T20:12:02.0534014Z 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-08-26T20:12:02.0539865Z 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-08-26T20:12:02.0555012Z 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-08-26T20:12:02.0562710Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules 2025-08-26T20:12:02.0566484Z 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-08-26T20:12:02.0572915Z 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-08-26T20:12:02.0578473Z 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-08-26T20:12:02.0583976Z 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-08-26T20:12:02.0589957Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-08-26T20:12:02.0603691Z 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-08-26T20:12:02.0610103Z 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-08-26T20:12:02.0615830Z 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-08-26T20:12:02.0621846Z 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-08-26T20:12:02.0637900Z 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-08-26T20:12:02.0643553Z 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-08-26T20:12:02.0649166Z 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-08-26T20:12:02.0654736Z 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-08-26T20:12:02.0660319Z 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-08-26T20:12:02.0666202Z 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-08-26T20:12:02.0671741Z 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-08-26T20:12:02.0678398Z 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-08-26T20:12:02.0683016Z 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-08-26T20:12:02.0688953Z 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-08-26T20:12:02.0695775Z 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-08-26T20:12:02.0701153Z 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-08-26T20:12:02.0706569Z 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-08-26T20:12:02.0713648Z 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-08-26T20:12:02.0719651Z 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-08-26T20:12:02.0725517Z 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-08-26T20:12:02.0731110Z 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-08-26T20:12:02.0736592Z 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-08-26T20:12:02.0742736Z 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-08-26T20:12:02.0748157Z 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-08-26T20:12:02.0753970Z 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-08-26T20:12:02.0759369Z 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-08-26T20:12:02.0766395Z 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-08-26T20:12:02.0771987Z 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-08-26T20:12:02.0778363Z 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-08-26T20:12:02.0784515Z 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-08-26T20:12:02.0790273Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\options 2025-08-26T20:12:02.0794205Z 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-08-26T20:12:02.0799980Z 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-08-26T20:12:02.0805079Z 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-08-26T20:12:02.0810878Z 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-08-26T20:12:02.0816212Z 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-08-26T20:12:02.0832062Z 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-08-26T20:12:02.0837226Z 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-08-26T20:12:02.0842638Z 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-08-26T20:12:02.0856682Z 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-08-26T20:12:02.0858108Z 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-08-26T20:12:02.0859451Z 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-08-26T20:12:02.0865301Z 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-08-26T20:12:02.0870610Z 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-08-26T20:12:02.0876429Z 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-08-26T20:12:02.0882055Z 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-08-26T20:12:02.0888124Z 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-08-26T20:12:02.0893443Z 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-08-26T20:12:02.0899408Z 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-08-26T20:12:02.0904795Z 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-08-26T20:12:02.0910225Z 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-08-26T20:12:02.0915515Z 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-08-26T20:12:02.0920841Z 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-08-26T20:12:02.0926725Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-08-26T20:12:02.0930167Z 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-08-26T20:12:02.0936018Z 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-08-26T20:12:02.0941214Z 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-08-26T20:12:02.0946808Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\utils 2025-08-26T20:12:02.0950375Z 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-08-26T20:12:02.0956139Z 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-08-26T20:12:02.0961271Z 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-08-26T20:12:02.0966910Z 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-08-26T20:12:02.0972559Z 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-08-26T20:12:02.0978363Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim 2025-08-26T20:12:02.0982096Z 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-08-26T20:12:02.0987789Z 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-08-26T20:12:02.0992993Z 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-08-26T20:12:02.0998630Z 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-08-26T20:12:02.1003796Z 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-08-26T20:12:02.1009598Z 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-08-26T20:12:02.1025218Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-08-26T20:12:02.1029196Z 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-08-26T20:12:02.1034728Z 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-08-26T20:12:02.1040243Z 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-08-26T20:12:02.1055731Z 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-08-26T20:12:02.1062328Z 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-08-26T20:12:02.1068236Z 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-08-26T20:12:02.1073776Z 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-08-26T20:12:02.1080359Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\python 2025-08-26T20:12:02.1084361Z 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-08-26T20:12:02.1090161Z 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-08-26T20:12:02.1096211Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\serialize 2025-08-26T20:12:02.1100186Z 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-08-26T20:12:02.1105732Z 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-08-26T20:12:02.1111680Z 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-08-26T20:12:02.1117148Z 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-08-26T20:12:02.1132973Z 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-08-26T20:12:02.1138358Z 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-08-26T20:12:02.1143733Z 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-08-26T20:12:02.1149977Z 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-08-26T20:12:02.1154760Z 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-08-26T20:12:02.1160201Z 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-08-26T20:12:02.1165854Z 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-08-26T20:12:02.1170896Z 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-08-26T20:12:02.1177641Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd 2025-08-26T20:12:02.1180969Z 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-08-26T20:12:02.1186153Z 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-08-26T20:12:02.1205503Z 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-08-26T20:12:02.1210953Z 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-08-26T20:12:02.1226341Z 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-08-26T20:12:02.1232176Z 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-08-26T20:12:02.1237556Z 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-08-26T20:12:02.1242829Z 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-08-26T20:12:02.1248562Z 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-08-26T20:12:02.1255098Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\functions 2025-08-26T20:12:02.1258549Z 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-08-26T20:12:02.1264114Z 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-08-26T20:12:02.1269589Z 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-08-26T20:12:02.1274913Z 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-08-26T20:12:02.1290015Z 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-08-26T20:12:02.1295588Z 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-08-26T20:12:02.1300883Z 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-08-26T20:12:02.1307033Z 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-08-26T20:12:02.1312981Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\generated 2025-08-26T20:12:02.1316710Z 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-08-26T20:12:02.1327694Z 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-08-26T20:12:02.1333586Z 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-08-26T20:12:02.1349438Z 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-08-26T20:12:02.1354772Z 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-08-26T20:12:02.1361004Z 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-08-26T20:12:02.1367486Z 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-08-26T20:12:02.1372616Z 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-08-26T20:12:02.1378336Z 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-08-26T20:12:02.1383369Z 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-08-26T20:12:02.1389172Z 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-08-26T20:12:02.1394834Z 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-08-26T20:12:02.1400242Z 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-08-26T20:12:02.1405414Z 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-08-26T20:12:02.1411174Z 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-08-26T20:12:02.1431168Z 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-08-26T20:12:02.1436509Z 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-08-26T20:12:02.1442068Z 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-08-26T20:12:02.1447790Z 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-08-26T20:12:02.1453744Z 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-08-26T20:12:02.1459282Z 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-08-26T20:12:02.1464680Z 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-08-26T20:12:02.1470479Z 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-08-26T20:12:02.1476301Z 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-08-26T20:12:02.1491492Z 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-08-26T20:12:02.1497077Z 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-08-26T20:12:02.1502463Z 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-08-26T20:12:02.1508040Z 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-08-26T20:12:02.1513700Z 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-08-26T20:12:02.1519559Z 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-08-26T20:12:02.1524888Z 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-08-26T20:12:02.1530368Z 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-08-26T20:12:02.1536174Z 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-08-26T20:12:02.1552107Z 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-08-26T20:12:02.1557939Z 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-08-26T20:12:02.1563814Z 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-08-26T20:12:02.1569831Z 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-08-26T20:12:02.1575149Z 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-08-26T20:12:02.1580853Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\utils 2025-08-26T20:12:02.1584365Z 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-08-26T20:12:02.1589752Z 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-08-26T20:12:02.1595483Z 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-08-26T20:12:02.1601152Z 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-08-26T20:12:02.1617123Z 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-08-26T20:12:02.1622375Z 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-08-26T20:12:02.1634135Z 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-08-26T20:12:02.1635323Z 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-08-26T20:12:02.1645495Z 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-08-26T20:12:02.1647908Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\copy_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.1653720Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cpu 2025-08-26T20:12:02.1657511Z 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-08-26T20:12:02.1668019Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cuda 2025-08-26T20:12:02.1673130Z 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-08-26T20:12:02.1678640Z 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-08-26T20:12:02.1686513Z 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-08-26T20:12:02.1691762Z 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-08-26T20:12:02.1698388Z 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-08-26T20:12:02.1714055Z 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-08-26T20:12:02.1719113Z 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-08-26T20:12:02.1724022Z 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-08-26T20:12:02.1730034Z 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-08-26T20:12:02.1735398Z 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-08-26T20:12:02.1740732Z 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-08-26T20:12:02.1745638Z 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-08-26T20:12:02.1751075Z 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-08-26T20:12:02.1756194Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\CudaIPCTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.1771705Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DataLoader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.1776699Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.1782058Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.1787468Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed 2025-08-26T20:12:02.1790991Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd 2025-08-26T20:12:02.1794319Z 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-08-26T20:12:02.1799891Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\context 2025-08-26T20:12:02.1803418Z 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-08-26T20:12:02.1809306Z 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-08-26T20:12:02.1815147Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\engine 2025-08-26T20:12:02.1818533Z 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-08-26T20:12:02.1824197Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\functions 2025-08-26T20:12:02.1860839Z 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-08-26T20:12:02.1866655Z 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-08-26T20:12:02.1872251Z 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-08-26T20:12:02.1881848Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-08-26T20:12:02.1892647Z 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-08-26T20:12:02.1894264Z 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-08-26T20:12:02.1899172Z 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-08-26T20:12:02.1993233Z 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-08-26T20:12:02.1998745Z 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-08-26T20:12:02.2003914Z 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-08-26T20:12:02.2009707Z 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-08-26T20:12:02.2015991Z 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-08-26T20:12:02.2021795Z 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-08-26T20:12:02.2027384Z 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-08-26T20:12:02.2032433Z 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-08-26T20:12:02.2038782Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d 2025-08-26T20:12:02.2042251Z 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-08-26T20:12:02.2048299Z 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-08-26T20:12:02.2053442Z 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-08-26T20:12:02.2058378Z 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-08-26T20:12:02.2064102Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-08-26T20:12:02.2067784Z 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-08-26T20:12:02.2073269Z 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-08-26T20:12:02.2079077Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_plane 2025-08-26T20:12:02.2122433Z 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-08-26T20:12:02.2128815Z 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-08-26T20:12:02.2134996Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\cuda 2025-08-26T20:12:02.2138166Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\cuda 2025-08-26T20:12:02.2143701Z 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-08-26T20:12:02.2148830Z 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-08-26T20:12:02.2153754Z 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-08-26T20:12:02.2159369Z 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-08-26T20:12:02.2180009Z 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-08-26T20:12:02.2185146Z 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-08-26T20:12:02.2190527Z 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-08-26T20:12:02.2196141Z 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-08-26T20:12:02.2202506Z 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-08-26T20:12:02.2208347Z 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-08-26T20:12:02.2214269Z 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-08-26T20:12:02.2219784Z 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-08-26T20:12:02.2225457Z 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-08-26T20:12:02.2230581Z 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-08-26T20:12:02.2236243Z 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-08-26T20:12:02.2241508Z 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-08-26T20:12:02.2247654Z 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-08-26T20:12:02.2252434Z 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-08-26T20:12:02.2258366Z 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-08-26T20:12:02.3260317Z 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-08-26T20:12:02.3265501Z 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-08-26T20:12:02.3272190Z 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-08-26T20:12:02.3278066Z 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-08-26T20:12:02.3283995Z 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-08-26T20:12:02.3290080Z 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-08-26T20:12:02.3296451Z 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-08-26T20:12:02.3302175Z 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-08-26T20:12:02.3320382Z 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-08-26T20:12:02.3325885Z 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-08-26T20:12:02.3332474Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\quantization 2025-08-26T20:12:02.3336137Z 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-08-26T20:12:02.3341307Z 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-08-26T20:12:02.3346848Z 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-08-26T20:12:02.3365093Z 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-08-26T20:12:02.3370891Z 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-08-26T20:12:02.3376921Z 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-08-26T20:12:02.3382384Z 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-08-26T20:12:02.3387749Z 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-08-26T20:12:02.3392977Z 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-08-26T20:12:02.3398334Z 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-08-26T20:12:02.3404179Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-08-26T20:12:02.3408033Z 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-08-26T20:12:02.3413699Z 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-08-26T20:12:02.3419379Z 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-08-26T20:12:02.3436932Z 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-08-26T20:12:02.3442429Z 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-08-26T20:12:02.3447949Z 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-08-26T20:12:02.3453594Z 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-08-26T20:12:02.3459144Z 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-08-26T20:12:02.3476961Z 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-08-26T20:12:02.3482632Z 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-08-26T20:12:02.3488400Z 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-08-26T20:12:02.3494151Z 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-08-26T20:12:02.3499642Z 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-08-26T20:12:02.3505131Z 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-08-26T20:12:02.3510323Z 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-08-26T20:12:02.3516659Z 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-08-26T20:12:02.3521695Z 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-08-26T20:12:02.3527972Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc 2025-08-26T20:12:02.3531515Z 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-08-26T20:12:02.3537129Z 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-08-26T20:12:02.3542858Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\metrics 2025-08-26T20:12:02.3546411Z 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-08-26T20:12:02.3552247Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\profiler 2025-08-26T20:12:02.3555801Z 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-08-26T20:12:02.3561607Z 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-08-26T20:12:02.3566966Z 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-08-26T20:12:02.3585364Z 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-08-26T20:12:02.3590953Z 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-08-26T20:12:02.3596635Z 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-08-26T20:12:02.3602894Z 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-08-26T20:12:02.3608628Z 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-08-26T20:12:02.3613943Z 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-08-26T20:12:02.3619461Z 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-08-26T20:12:02.3625145Z 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-08-26T20:12:02.3631240Z 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-08-26T20:12:02.3636670Z 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-08-26T20:12:02.3642867Z 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-08-26T20:12:02.3649161Z 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-08-26T20:12:02.3654979Z 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-08-26T20:12:02.3661431Z 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-08-26T20:12:02.3667060Z 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-08-26T20:12:02.3672760Z 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-08-26T20:12:02.3690467Z 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-08-26T20:12:02.3695986Z 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-08-26T20:12:02.3702104Z 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-08-26T20:12:02.3708823Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\testing 2025-08-26T20:12:02.3712120Z 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-08-26T20:12:02.3717456Z 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-08-26T20:12:02.3722567Z 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-08-26T20:12:02.3728131Z 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-08-26T20:12:02.3734265Z 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-08-26T20:12:02.3739835Z 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-08-26T20:12:02.3745169Z 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-08-26T20:12:02.3750777Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Dtype.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.3756479Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DynamicTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.3762257Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\dynamo 2025-08-26T20:12:02.3765612Z 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-08-26T20:12:02.3771117Z 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-08-26T20:12:02.3777189Z 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-08-26T20:12:02.3789867Z 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-08-26T20:12:02.3807394Z 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-08-26T20:12:02.3813449Z 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-08-26T20:12:02.3819619Z 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-08-26T20:12:02.3825247Z 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-08-26T20:12:02.3830713Z 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-08-26T20:12:02.3836613Z 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-08-26T20:12:02.3842118Z 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-08-26T20:12:02.3847959Z 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-08-26T20:12:02.3853267Z 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-08-26T20:12:02.3858429Z 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-08-26T20:12:02.3863507Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.3868635Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.3874655Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\export 2025-08-26T20:12:02.3878007Z 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-08-26T20:12:02.3883522Z 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-08-26T20:12:02.3889425Z 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-08-26T20:12:02.3894619Z 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-08-26T20:12:02.3900786Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.3906244Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\functorch 2025-08-26T20:12:02.3910129Z 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-08-26T20:12:02.3915571Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\fx 2025-08-26T20:12:02.3918818Z 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-08-26T20:12:02.3924038Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.3930151Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor 2025-08-26T20:12:02.3934324Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_eager 2025-08-26T20:12:02.3938023Z 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-08-26T20:12:02.3943935Z 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-08-26T20:12:02.3949716Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_include 2025-08-26T20:12:02.3953167Z 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-08-26T20:12:02.3958177Z 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-08-26T20:12:02.3963207Z 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-08-26T20:12:02.3968413Z 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-08-26T20:12:02.3973364Z 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-08-26T20:12:02.3991222Z 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-08-26T20:12:02.3996693Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_package 2025-08-26T20:12:02.4000318Z 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-08-26T20:12:02.4005795Z 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-08-26T20:12:02.4011442Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runner 2025-08-26T20:12:02.4027453Z 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-08-26T20:12:02.4033138Z 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-08-26T20:12:02.4038603Z 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-08-26T20:12:02.4055998Z 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-08-26T20:12:02.4061574Z 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-08-26T20:12:02.4066845Z 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-08-26T20:12:02.4072503Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runtime 2025-08-26T20:12:02.4075982Z 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-08-26T20:12:02.4082028Z 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-08-26T20:12:02.4087626Z 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-08-26T20:12:02.4105448Z 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-08-26T20:12:02.4111404Z 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-08-26T20:12:02.4116458Z 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-08-26T20:12:02.4121902Z 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-08-26T20:12:02.4128247Z 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-08-26T20:12:02.4136351Z 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-08-26T20:12:02.4168176Z 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-08-26T20:12:02.4175501Z 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-08-26T20:12:02.4182722Z 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-08-26T20:12:02.4189825Z 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-08-26T20:12:02.4195196Z 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-08-26T20:12:02.4202924Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch 2025-08-26T20:12:02.4206589Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\c 2025-08-26T20:12:02.4209900Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-08-26T20:12:02.4216940Z 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-08-26T20:12:02.4222832Z 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-08-26T20:12:02.4228139Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-08-26T20:12:02.4233922Z 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-08-26T20:12:02.4239928Z 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-08-26T20:12:02.4257478Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-08-26T20:12:02.4260872Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-08-26T20:12:02.4266232Z 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-08-26T20:12:02.4272140Z 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-08-26T20:12:02.4290285Z 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-08-26T20:12:02.4296045Z 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-08-26T20:12:02.4307299Z 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-08-26T20:12:02.4312372Z 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-08-26T20:12:02.4330282Z 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-08-26T20:12:02.4336235Z 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-08-26T20:12:02.4341555Z 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-08-26T20:12:02.4346863Z 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-08-26T20:12:02.4352893Z 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-08-26T20:12:02.4359517Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper 2025-08-26T20:12:02.4363098Z 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-08-26T20:12:02.4368483Z 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-08-26T20:12:02.4373437Z 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-08-26T20:12:02.4378571Z 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-08-26T20:12:02.4384540Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-08-26T20:12:02.4399483Z 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-08-26T20:12:02.4404882Z 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-08-26T20:12:02.4410034Z 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-08-26T20:12:02.4414973Z 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-08-26T20:12:02.4419989Z 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-08-26T20:12:02.4425326Z 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-08-26T20:12:02.4430229Z 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-08-26T20:12:02.4436161Z 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-08-26T20:12:02.4441206Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\instruction_counter 2025-08-26T20:12:02.4444575Z 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-08-26T20:12:02.4449943Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.4455102Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.4460823Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit 2025-08-26T20:12:02.4464570Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\api 2025-08-26T20:12:02.4467870Z 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-08-26T20:12:02.4473421Z 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-08-26T20:12:02.4478790Z 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-08-26T20:12:02.4484322Z 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-08-26T20:12:02.4490127Z 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-08-26T20:12:02.4506972Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends 2025-08-26T20:12:02.4510386Z 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-08-26T20:12:02.4515896Z 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-08-26T20:12:02.4521682Z 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-08-26T20:12:02.4527171Z 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-08-26T20:12:02.4543657Z 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-08-26T20:12:02.4549459Z 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-08-26T20:12:02.4554758Z 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-08-26T20:12:02.4560473Z 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-08-26T20:12:02.4565734Z 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-08-26T20:12:02.4572158Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml 2025-08-26T20:12:02.4575964Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-08-26T20:12:02.4579742Z 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-08-26T20:12:02.4585029Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\objc 2025-08-26T20:12:02.4588464Z 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-08-26T20:12:02.4593719Z 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-08-26T20:12:02.4599258Z 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-08-26T20:12:02.4615963Z 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-08-26T20:12:02.4621507Z 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-08-26T20:12:02.4627260Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack 2025-08-26T20:12:02.4630946Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-08-26T20:12:02.4634329Z 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-08-26T20:12:02.4676422Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-08-26T20:12:02.4680447Z 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-08-26T20:12:02.4686363Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-08-26T20:12:02.4689938Z 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-08-26T20:12:02.4695325Z 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-08-26T20:12:02.4700959Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen 2025-08-26T20:12:02.4704398Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\cuda 2025-08-26T20:12:02.4707717Z 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-08-26T20:12:02.4713500Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser 2025-08-26T20:12:02.4716740Z 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-08-26T20:12:02.4722033Z 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-08-26T20:12:02.4727131Z 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-08-26T20:12:02.4748148Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-08-26T20:12:02.4751920Z 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-08-26T20:12:02.4757343Z 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-08-26T20:12:02.4762628Z 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-08-26T20:12:02.4768874Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-08-26T20:12:02.4772220Z 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-08-26T20:12:02.4777668Z 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-08-26T20:12:02.4783112Z 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-08-26T20:12:02.4788182Z 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-08-26T20:12:02.4799276Z 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-08-26T20:12:02.4805043Z 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-08-26T20:12:02.4810761Z 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-08-26T20:12:02.4815748Z 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-08-26T20:12:02.4821291Z 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-08-26T20:12:02.4826660Z 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-08-26T20:12:02.4832433Z 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-08-26T20:12:02.4838087Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\onednn 2025-08-26T20:12:02.4841586Z 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-08-26T20:12:02.4847314Z 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-08-26T20:12:02.4852457Z 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-08-26T20:12:02.4858251Z 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-08-26T20:12:02.4875274Z 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-08-26T20:12:02.4880579Z 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-08-26T20:12:02.4886140Z 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-08-26T20:12:02.4891604Z 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-08-26T20:12:02.4896831Z 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-08-26T20:12:02.4902661Z 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-08-26T20:12:02.4908142Z 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-08-26T20:12:02.4913408Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\cuda 2025-08-26T20:12:02.4916518Z 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-08-26T20:12:02.4922684Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\frontend 2025-08-26T20:12:02.4926483Z 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-08-26T20:12:02.4931911Z 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-08-26T20:12:02.4937206Z 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-08-26T20:12:02.4954304Z 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-08-26T20:12:02.4959644Z 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-08-26T20:12:02.4964455Z 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-08-26T20:12:02.4969890Z 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-08-26T20:12:02.4975610Z 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-08-26T20:12:02.4981468Z 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-08-26T20:12:02.4986610Z 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-08-26T20:12:02.4991901Z 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-08-26T20:12:02.4997974Z 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-08-26T20:12:02.5003983Z 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-08-26T20:12:02.5009661Z 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-08-26T20:12:02.5014878Z 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-08-26T20:12:02.5020280Z 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-08-26T20:12:02.5025596Z 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-08-26T20:12:02.5031381Z 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-08-26T20:12:02.5036906Z 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-08-26T20:12:02.5042483Z 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-08-26T20:12:02.5058922Z 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-08-26T20:12:02.5064918Z 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-08-26T20:12:02.5070371Z 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-08-26T20:12:02.5075713Z 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-08-26T20:12:02.5082177Z 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-08-26T20:12:02.5087764Z 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-08-26T20:12:02.5093402Z 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-08-26T20:12:02.5099559Z 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-08-26T20:12:02.5105453Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\ir 2025-08-26T20:12:02.5108915Z 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-08-26T20:12:02.5114483Z 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-08-26T20:12:02.5120048Z 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-08-26T20:12:02.5125350Z 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-08-26T20:12:02.5142178Z 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-08-26T20:12:02.5147821Z 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-08-26T20:12:02.5154019Z 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-08-26T20:12:02.5159371Z 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-08-26T20:12:02.5164713Z 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-08-26T20:12:02.5170124Z 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-08-26T20:12:02.5175143Z 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-08-26T20:12:02.5180739Z 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-08-26T20:12:02.5186060Z 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-08-26T20:12:02.5191088Z 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-08-26T20:12:02.5196312Z 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-08-26T20:12:02.5213176Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile 2025-08-26T20:12:02.5216439Z 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-08-26T20:12:02.5222998Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\compatibility 2025-08-26T20:12:02.5226376Z 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-08-26T20:12:02.5231755Z 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-08-26T20:12:02.5237439Z 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-08-26T20:12:02.5254365Z 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-08-26T20:12:02.5259478Z 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-08-26T20:12:02.5264740Z 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-08-26T20:12:02.5281729Z 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-08-26T20:12:02.5286924Z 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-08-26T20:12:02.5292295Z 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-08-26T20:12:02.5297526Z 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-08-26T20:12:02.5312863Z 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-08-26T20:12:02.5318176Z 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-08-26T20:12:02.5323282Z 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-08-26T20:12:02.5328776Z 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-08-26T20:12:02.5335073Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\model_tracer 2025-08-26T20:12:02.5338382Z 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-08-26T20:12:02.5343710Z 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-08-26T20:12:02.5349102Z 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-08-26T20:12:02.5365361Z 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-08-26T20:12:02.5370864Z 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-08-26T20:12:02.5376012Z 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-08-26T20:12:02.5381116Z 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-08-26T20:12:02.5386398Z 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-08-26T20:12:02.5391942Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\nnc 2025-08-26T20:12:02.5395279Z 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-08-26T20:12:02.5400565Z 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-08-26T20:12:02.5406456Z 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-08-26T20:12:02.5411706Z 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-08-26T20:12:02.5417099Z 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-08-26T20:12:02.5422588Z 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-08-26T20:12:02.5428023Z 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-08-26T20:12:02.5433375Z 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-08-26T20:12:02.5438835Z 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-08-26T20:12:02.5444107Z 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-08-26T20:12:02.5449641Z 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-08-26T20:12:02.5466141Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train 2025-08-26T20:12:02.5469609Z 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-08-26T20:12:02.5475538Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train\optim 2025-08-26T20:12:02.5479510Z 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-08-26T20:12:02.5484338Z 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-08-26T20:12:02.5489726Z 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-08-26T20:12:02.5495194Z 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-08-26T20:12:02.5500820Z 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-08-26T20:12:02.5506694Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\operator_upgraders 2025-08-26T20:12:02.5510244Z 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-08-26T20:12:02.5516247Z 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-08-26T20:12:02.5521369Z 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-08-26T20:12:02.5527291Z 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-08-26T20:12:02.5545033Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes 2025-08-26T20:12:02.5548511Z 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-08-26T20:12:02.5553845Z 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-08-26T20:12:02.5558887Z 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-08-26T20:12:02.5563908Z 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-08-26T20:12:02.5579927Z 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-08-26T20:12:02.5585212Z 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-08-26T20:12:02.5590511Z 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-08-26T20:12:02.5595931Z 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-08-26T20:12:02.5601299Z 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-08-26T20:12:02.5606776Z 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-08-26T20:12:02.5612481Z 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-08-26T20:12:02.5617482Z 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-08-26T20:12:02.5622539Z 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-08-26T20:12:02.5630940Z 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-08-26T20:12:02.5636527Z 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-08-26T20:12:02.5641821Z 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-08-26T20:12:02.5648231Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-08-26T20:12:02.5652183Z 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-08-26T20:12:02.5658004Z 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-08-26T20:12:02.5664101Z 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-08-26T20:12:02.5680253Z 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-08-26T20:12:02.5685713Z 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-08-26T20:12:02.5690884Z 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-08-26T20:12:02.5696504Z 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-08-26T20:12:02.5702219Z 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-08-26T20:12:02.5707502Z 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-08-26T20:12:02.5713090Z 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-08-26T20:12:02.5718473Z 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-08-26T20:12:02.5723866Z 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-08-26T20:12:02.5740359Z 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-08-26T20:12:02.5745707Z 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-08-26T20:12:02.5751260Z 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-08-26T20:12:02.5756729Z 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-08-26T20:12:02.5761919Z 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-08-26T20:12:02.5767165Z 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-08-26T20:12:02.5772269Z 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-08-26T20:12:02.5777639Z 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-08-26T20:12:02.5782725Z 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-08-26T20:12:02.5799199Z 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-08-26T20:12:02.5804628Z 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-08-26T20:12:02.5810145Z 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-08-26T20:12:02.5815218Z 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-08-26T20:12:02.5820543Z 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-08-26T20:12:02.5825546Z 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-08-26T20:12:02.5830637Z 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-08-26T20:12:02.5836010Z 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-08-26T20:12:02.5841406Z 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-08-26T20:12:02.5857157Z 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-08-26T20:12:02.5862326Z 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-08-26T20:12:02.5867570Z 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-08-26T20:12:02.5872962Z 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-08-26T20:12:02.5878258Z 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-08-26T20:12:02.5883388Z 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-08-26T20:12:02.5888874Z 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-08-26T20:12:02.5894176Z 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-08-26T20:12:02.5905512Z 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-08-26T20:12:02.5911385Z 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-08-26T20:12:02.5916547Z 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-08-26T20:12:02.5941701Z 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-08-26T20:12:02.5948148Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx 2025-08-26T20:12:02.5951656Z 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-08-26T20:12:02.5956881Z 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-08-26T20:12:02.5962313Z 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-08-26T20:12:02.5968045Z 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-08-26T20:12:02.5984213Z 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-08-26T20:12:02.5989587Z 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-08-26T20:12:02.5994780Z 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-08-26T20:12:02.5999970Z 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-08-26T20:12:02.6005595Z 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-08-26T20:12:02.6010620Z 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-08-26T20:12:02.6016087Z 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-08-26T20:12:02.6021261Z 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-08-26T20:12:02.6027400Z 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-08-26T20:12:02.6033366Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-08-26T20:12:02.6037118Z 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-08-26T20:12:02.6042280Z 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-08-26T20:12:02.6047622Z 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-08-26T20:12:02.6064470Z 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-08-26T20:12:02.6069878Z 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-08-26T20:12:02.6075273Z 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-08-26T20:12:02.6080468Z 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-08-26T20:12:02.6085910Z 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-08-26T20:12:02.6091456Z 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-08-26T20:12:02.6096748Z 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-08-26T20:12:02.6112880Z 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-08-26T20:12:02.6118405Z 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-08-26T20:12:02.6124459Z 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-08-26T20:12:02.6129951Z 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-08-26T20:12:02.6135461Z 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-08-26T20:12:02.6140776Z 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-08-26T20:12:02.6147096Z 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-08-26T20:12:02.6153448Z 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-08-26T20:12:02.6159390Z 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-08-26T20:12:02.6175728Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\quantization 2025-08-26T20:12:02.6179350Z 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-08-26T20:12:02.6185022Z 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-08-26T20:12:02.6190237Z 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-08-26T20:12:02.6195296Z 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-08-26T20:12:02.6211134Z 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-08-26T20:12:02.6216804Z 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-08-26T20:12:02.6222320Z 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-08-26T20:12:02.6228647Z 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-08-26T20:12:02.6233774Z 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-08-26T20:12:02.6238852Z 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-08-26T20:12:02.6269801Z 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-08-26T20:12:02.6274953Z 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-08-26T20:12:02.6280477Z 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-08-26T20:12:02.6286040Z 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-08-26T20:12:02.6291141Z 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-08-26T20:12:02.6296987Z 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-08-26T20:12:02.6302353Z 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-08-26T20:12:02.6319062Z 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-08-26T20:12:02.6324574Z 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-08-26T20:12:02.6330056Z 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-08-26T20:12:02.6335812Z 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-08-26T20:12:02.6341750Z 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-08-26T20:12:02.6347484Z 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-08-26T20:12:02.6386824Z 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-08-26T20:12:02.6392515Z 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-08-26T20:12:02.6398609Z 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-08-26T20:12:02.6404531Z 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-08-26T20:12:02.6410945Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\utils 2025-08-26T20:12:02.6414278Z 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-08-26T20:12:02.6419803Z 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-08-26T20:12:02.6425298Z 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-08-26T20:12:02.6435815Z 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-08-26T20:12:02.6441501Z 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-08-26T20:12:02.6447728Z 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-08-26T20:12:02.6453701Z 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-08-26T20:12:02.6459194Z 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-08-26T20:12:02.6465477Z 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-08-26T20:12:02.6471724Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\python 2025-08-26T20:12:02.6475315Z 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-08-26T20:12:02.6480420Z 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-08-26T20:12:02.6485753Z 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-08-26T20:12:02.6491229Z 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-08-26T20:12:02.6497859Z 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-08-26T20:12:02.6514064Z 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-08-26T20:12:02.6519418Z 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-08-26T20:12:02.6524860Z 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-08-26T20:12:02.6530779Z 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-08-26T20:12:02.6536325Z 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-08-26T20:12:02.6542483Z 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-08-26T20:12:02.6547922Z 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-08-26T20:12:02.6553667Z 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-08-26T20:12:02.6558874Z 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-08-26T20:12:02.6564133Z 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-08-26T20:12:02.6570051Z 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-08-26T20:12:02.6575645Z 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-08-26T20:12:02.6581720Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime 2025-08-26T20:12:02.6585262Z 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-08-26T20:12:02.6591097Z 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-08-26T20:12:02.6596587Z 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-08-26T20:12:02.6602321Z 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-08-26T20:12:02.6623146Z 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-08-26T20:12:02.6630553Z 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-08-26T20:12:02.6637195Z 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-08-26T20:12:02.6643279Z 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-08-26T20:12:02.6650893Z 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-08-26T20:12:02.6656376Z 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-08-26T20:12:02.6663331Z 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-08-26T20:12:02.6668994Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\interpreter 2025-08-26T20:12:02.6672484Z 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-08-26T20:12:02.6677780Z 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-08-26T20:12:02.6683638Z 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-08-26T20:12:02.6689074Z 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-08-26T20:12:02.6704666Z 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-08-26T20:12:02.6710066Z 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-08-26T20:12:02.6715631Z 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-08-26T20:12:02.6720783Z 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-08-26T20:12:02.6726116Z 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-08-26T20:12:02.6731590Z 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-08-26T20:12:02.6737287Z 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-08-26T20:12:02.6743133Z 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-08-26T20:12:02.6758970Z 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-08-26T20:12:02.6764267Z 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-08-26T20:12:02.6770434Z 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-08-26T20:12:02.6776149Z 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-08-26T20:12:02.6781291Z 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-08-26T20:12:02.6786480Z 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-08-26T20:12:02.6791875Z 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-08-26T20:12:02.6797859Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\static 2025-08-26T20:12:02.6801417Z 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-08-26T20:12:02.6806801Z 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-08-26T20:12:02.6812561Z 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-08-26T20:12:02.6817901Z 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-08-26T20:12:02.6823156Z 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-08-26T20:12:02.6828280Z 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-08-26T20:12:02.6844634Z 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-08-26T20:12:02.6851272Z 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-08-26T20:12:02.6855991Z 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-08-26T20:12:02.6861952Z 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-08-26T20:12:02.6867484Z 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-08-26T20:12:02.6883540Z 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-08-26T20:12:02.6889645Z 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-08-26T20:12:02.6894880Z 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-08-26T20:12:02.6900418Z 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-08-26T20:12:02.6906467Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\serialization 2025-08-26T20:12:02.6911831Z 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-08-26T20:12:02.6918581Z 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-08-26T20:12:02.6925687Z 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-08-26T20:12:02.6942961Z 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-08-26T20:12:02.6948499Z 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-08-26T20:12:02.6953758Z 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-08-26T20:12:02.6959706Z 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-08-26T20:12:02.6965074Z 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-08-26T20:12:02.6970500Z 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-08-26T20:12:02.6984661Z 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-08-26T20:12:02.6990498Z 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-08-26T20:12:02.6996339Z 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-08-26T20:12:02.7003606Z 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-08-26T20:12:02.7008720Z 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-08-26T20:12:02.7014185Z 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-08-26T20:12:02.7020294Z 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-08-26T20:12:02.7025854Z 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-08-26T20:12:02.7031338Z 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-08-26T20:12:02.7036956Z 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-08-26T20:12:02.7042775Z 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-08-26T20:12:02.7059106Z 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-08-26T20:12:02.7064612Z 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-08-26T20:12:02.7071027Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr 2025-08-26T20:12:02.7074801Z 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-08-26T20:12:02.7080121Z 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-08-26T20:12:02.7085634Z 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-08-26T20:12:02.7091103Z 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-08-26T20:12:02.7107319Z 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-08-26T20:12:02.7112932Z 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-08-26T20:12:02.7118626Z 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-08-26T20:12:02.7124052Z 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-08-26T20:12:02.7129716Z 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-08-26T20:12:02.7135159Z 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-08-26T20:12:02.7140742Z 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-08-26T20:12:02.7146021Z 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-08-26T20:12:02.7186626Z 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-08-26T20:12:02.7192242Z 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-08-26T20:12:02.7197949Z 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-08-26T20:12:02.7203638Z 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-08-26T20:12:02.7209769Z 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-08-26T20:12:02.7215224Z 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-08-26T20:12:02.7220851Z 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-08-26T20:12:02.7226398Z 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-08-26T20:12:02.7231592Z 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-08-26T20:12:02.7247314Z 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-08-26T20:12:02.7253380Z 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-08-26T20:12:02.7258787Z 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-08-26T20:12:02.7264221Z 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-08-26T20:12:02.7269872Z 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-08-26T20:12:02.7275350Z 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-08-26T20:12:02.7280631Z 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-08-26T20:12:02.7286558Z 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-08-26T20:12:02.7291928Z 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-08-26T20:12:02.7297058Z 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-08-26T20:12:02.7302884Z 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-08-26T20:12:02.7318172Z 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-08-26T20:12:02.7323654Z 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-08-26T20:12:02.7329653Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr\operators 2025-08-26T20:12:02.7333186Z 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-08-26T20:12:02.7338422Z 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-08-26T20:12:02.7343367Z 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-08-26T20:12:02.7349159Z 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-08-26T20:12:02.7354141Z 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-08-26T20:12:02.7369250Z 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-08-26T20:12:02.7374599Z 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-08-26T20:12:02.7380067Z 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-08-26T20:12:02.7385347Z 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-08-26T20:12:02.7390302Z 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-08-26T20:12:02.7395772Z 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-08-26T20:12:02.7401517Z 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-08-26T20:12:02.7407382Z 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-08-26T20:12:02.7412794Z 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-08-26T20:12:02.7418677Z 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-08-26T20:12:02.7424052Z 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-08-26T20:12:02.7429590Z 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-08-26T20:12:02.7435365Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\testing 2025-08-26T20:12:02.7438775Z 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-08-26T20:12:02.7443943Z 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-08-26T20:12:02.7449503Z 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-08-26T20:12:02.7454937Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.7460422Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy 2025-08-26T20:12:02.7464183Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\backend 2025-08-26T20:12:02.7467521Z 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-08-26T20:12:02.7472947Z 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-08-26T20:12:02.7478281Z 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-08-26T20:12:02.7483848Z 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-08-26T20:12:02.7499688Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core 2025-08-26T20:12:02.7502902Z 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-08-26T20:12:02.7508142Z 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-08-26T20:12:02.7513746Z 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-08-26T20:12:02.7518964Z 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-08-26T20:12:02.7524133Z 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-08-26T20:12:02.7540329Z 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-08-26T20:12:02.7545976Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\internal_ops 2025-08-26T20:12:02.7549359Z 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-08-26T20:12:02.7554512Z 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-08-26T20:12:02.7560480Z 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-08-26T20:12:02.7566016Z 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-08-26T20:12:02.7571284Z 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-08-26T20:12:02.7576639Z 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-08-26T20:12:02.7582532Z 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-08-26T20:12:02.7587916Z 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-08-26T20:12:02.7593136Z 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-08-26T20:12:02.7598831Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\ops 2025-08-26T20:12:02.7602166Z 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-08-26T20:12:02.7608138Z 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-08-26T20:12:02.7614187Z 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-08-26T20:12:02.7619589Z 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-08-26T20:12:02.7624978Z 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-08-26T20:12:02.7630726Z 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-08-26T20:12:02.7635767Z 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-08-26T20:12:02.7641112Z 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-08-26T20:12:02.7646543Z 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-08-26T20:12:02.7651860Z 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-08-26T20:12:02.7673135Z 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-08-26T20:12:02.7688068Z 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-08-26T20:12:02.7693841Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\generated 2025-08-26T20:12:02.7697154Z 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-08-26T20:12:02.7705701Z 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-08-26T20:12:02.7711780Z 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-08-26T20:12:02.7717597Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\python 2025-08-26T20:12:02.7720855Z 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-08-26T20:12:02.7725953Z 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-08-26T20:12:02.7731472Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend 2025-08-26T20:12:02.7745242Z 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-08-26T20:12:02.7750179Z 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-08-26T20:12:02.7755641Z 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-08-26T20:12:02.7761323Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend\ops 2025-08-26T20:12:02.7775208Z 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-08-26T20:12:02.7803031Z 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-08-26T20:12:02.7803586Z 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-08-26T20:12:02.7804229Z 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-08-26T20:12:02.7804816Z 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-08-26T20:12:02.7805849Z 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-08-26T20:12:02.7824444Z 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-08-26T20:12:02.7825212Z 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-08-26T20:12:02.7826458Z 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-08-26T20:12:02.7833187Z 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-08-26T20:12:02.7840069Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.7856192Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.7861864Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\monitor 2025-08-26T20:12:02.7866070Z 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-08-26T20:12:02.7871488Z 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-08-26T20:12:02.7875882Z 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-08-26T20:12:02.7881284Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mps 2025-08-26T20:12:02.7884588Z 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-08-26T20:12:02.7890347Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia 2025-08-26T20:12:02.7894893Z 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-08-26T20:12:02.7899278Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia\profiler 2025-08-26T20:12:02.7902741Z 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-08-26T20:12:02.7908389Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\multiprocessing 2025-08-26T20:12:02.7912389Z 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-08-26T20:12:02.7917560Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\onnx 2025-08-26T20:12:02.7920493Z 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-08-26T20:12:02.7925824Z 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-08-26T20:12:02.7931091Z 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-08-26T20:12:02.7936513Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler 2025-08-26T20:12:02.7939733Z 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-08-26T20:12:02.7944948Z 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-08-26T20:12:02.7951208Z 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-08-26T20:12:02.7957431Z 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-08-26T20:12:02.7973032Z 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-08-26T20:12:02.7978395Z 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-08-26T20:12:02.7983629Z 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-08-26T20:12:02.8009438Z 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-08-26T20:12:02.8015131Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\orchestration 2025-08-26T20:12:02.8018703Z 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-08-26T20:12:02.8024109Z 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-08-26T20:12:02.8029270Z 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-08-26T20:12:02.8034857Z 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-08-26T20:12:02.8040047Z 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-08-26T20:12:02.8045477Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\python 2025-08-26T20:12:02.8049001Z 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-08-26T20:12:02.8054206Z 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-08-26T20:12:02.8059924Z 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-08-26T20:12:02.8100431Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\standalone 2025-08-26T20:12:02.8103953Z 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-08-26T20:12:02.8109289Z 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-08-26T20:12:02.8114342Z 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-08-26T20:12:02.8125179Z 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-08-26T20:12:02.8131037Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\stubs 2025-08-26T20:12:02.8134355Z 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-08-26T20:12:02.8140160Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\unwind 2025-08-26T20:12:02.8143674Z 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-08-26T20:12:02.8149087Z 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-08-26T20:12:02.8154402Z 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-08-26T20:12:02.8159811Z 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-08-26T20:12:02.8177053Z 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-08-26T20:12:02.8183686Z 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-08-26T20:12:02.8189771Z 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-08-26T20:12:02.8207227Z 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-08-26T20:12:02.8207793Z 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-08-26T20:12:02.8208401Z 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-08-26T20:12:02.8214013Z 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-08-26T20:12:02.8219848Z 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-08-26T20:12:02.8225446Z 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-08-26T20:12:02.8231450Z 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-08-26T20:12:02.8236733Z 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-08-26T20:12:02.8242278Z 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-08-26T20:12:02.8247727Z 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-08-26T20:12:02.8253081Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\PyInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8258424Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\PyInterpreterHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8264971Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8271273Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_headers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8276538Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8281640Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8297040Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Size.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8302810Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\stable 2025-08-26T20:12:02.8306224Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\accelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-08-26T20:12:02.8311632Z 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-08-26T20:12:02.8317051Z 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-08-26T20:12:02.8322409Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\stableivalue_conversions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-08-26T20:12:02.8327925Z 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-08-26T20:12:02.8343263Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\tensor_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-08-26T20:12:02.8348686Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\tensor_struct.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-08-26T20:12:02.8354088Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8359301Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageMethods.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8364473Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageSharing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8369612Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8375303Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\tensor 2025-08-26T20:12:02.8378626Z 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-08-26T20:12:02.8383899Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THConcat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8389050Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THP.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8394391Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\TypeInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8399309Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8405237Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\utils 2025-08-26T20:12:02.8408638Z 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-08-26T20:12:02.8414782Z 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-08-26T20:12:02.8419856Z 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-08-26T20:12:02.8424849Z 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-08-26T20:12:02.8440909Z 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-08-26T20:12:02.8446502Z 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-08-26T20:12:02.8453919Z 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-08-26T20:12:02.8458990Z 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-08-26T20:12:02.8464044Z 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-08-26T20:12:02.8469024Z 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-08-26T20:12:02.8474280Z 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-08-26T20:12:02.8479659Z 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-08-26T20:12:02.8485159Z 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-08-26T20:12:02.8490810Z 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-08-26T20:12:02.8505695Z 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-08-26T20:12:02.8511068Z 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-08-26T20:12:02.8517431Z 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-08-26T20:12:02.8523427Z 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-08-26T20:12:02.8529094Z 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-08-26T20:12:02.8542429Z 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-08-26T20:12:02.8557748Z 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-08-26T20:12:02.8563583Z 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-08-26T20:12:02.8569200Z 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-08-26T20:12:02.8574696Z 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-08-26T20:12:02.8580820Z 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-08-26T20:12:02.8586456Z 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-08-26T20:12:02.8592161Z 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-08-26T20:12:02.8597690Z 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-08-26T20:12:02.8603025Z 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-08-26T20:12:02.8608769Z 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-08-26T20:12:02.8624141Z 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-08-26T20:12:02.8629324Z 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-08-26T20:12:02.8634636Z 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-08-26T20:12:02.8640232Z 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-08-26T20:12:02.8645564Z 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-08-26T20:12:02.8650982Z 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-08-26T20:12:02.8656358Z 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-08-26T20:12:02.8665357Z 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-08-26T20:12:02.8668210Z 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-08-26T20:12:02.8832842Z 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-08-26T20:12:02.8838470Z 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-08-26T20:12:02.8843926Z 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-08-26T20:12:02.8849408Z 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-08-26T20:12:02.8854749Z 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-08-26T20:12:02.8859998Z 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-08-26T20:12:02.8865105Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-08-26T20:12:02.8871325Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\xpu 2025-08-26T20:12:02.8875130Z 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-08-26T20:12:02.8880089Z 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-08-26T20:12:02.8885714Z 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-08-26T20:12:02.8891931Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-08-26T20:12:02.8897699Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class_detail.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-08-26T20:12:02.8903280Z copying build\lib.win-amd64-cpython-39\torch\include\torch\extension.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-08-26T20:12:02.8918879Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly 2025-08-26T20:12:02.8922250Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\core 2025-08-26T20:12:02.8925600Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\core 2025-08-26T20:12:02.8931308Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\cpu 2025-08-26T20:12:02.8934726Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\cpu\vec 2025-08-26T20:12:02.8938029Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\intrinsics.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\cpu\vec 2025-08-26T20:12:02.8943945Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\cpu\vec\vec256 2025-08-26T20:12:02.8947405Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec256\missing_vld1_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\cpu\vec\vec256 2025-08-26T20:12:02.8952974Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec256\missing_vst1_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\cpu\vec\vec256 2025-08-26T20:12:02.8957946Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec_half.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\cpu\vec 2025-08-26T20:12:02.8963425Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\macros 2025-08-26T20:12:02.8967220Z 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-08-26T20:12:02.8972037Z 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-08-26T20:12:02.8977538Z 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-08-26T20:12:02.8983504Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\util 2025-08-26T20:12:02.8986832Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\BFloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.8992954Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\bits.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.8997630Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\bit_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9003055Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9008845Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9014348Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float4_e2m1fn_x2.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9030084Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_e4m3fn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9036115Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_e4m3fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9041827Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_e5m2.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9047482Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_e5m2fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9053083Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_e8m0fnu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9058674Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_fnuz_cvt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9064473Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\floating_point_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9069820Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Half.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9075667Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\qint32.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9080928Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\qint8.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9086183Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\quint2x4.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9091237Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\quint4x2.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9096392Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\quint8.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9101812Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\shim_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9107589Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\TypeSafeSignMath.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-08-26T20:12:02.9113117Z copying build\lib.win-amd64-cpython-39\torch\include\torch\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-08-26T20:12:02.9118890Z copying build\lib.win-amd64-cpython-39\torch\include\torch\script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-08-26T20:12:02.9124809Z copying build\lib.win-amd64-cpython-39\torch\include\xnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-08-26T20:12:02.9141092Z creating build\bdist.win-amd64\wheel\torch\jit 2025-08-26T20:12:02.9144266Z copying build\lib.win-amd64-cpython-39\torch\jit\annotations.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9150933Z copying build\lib.win-amd64-cpython-39\torch\jit\frontend.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9156736Z copying build\lib.win-amd64-cpython-39\torch\jit\generate_bytecode.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9162252Z creating build\bdist.win-amd64\wheel\torch\jit\mobile 2025-08-26T20:12:02.9174942Z copying build\lib.win-amd64-cpython-39\torch\jit\mobile\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\mobile 2025-08-26T20:12:02.9175748Z copying build\lib.win-amd64-cpython-39\torch\jit\quantized.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9188931Z copying build\lib.win-amd64-cpython-39\torch\jit\supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9194823Z copying build\lib.win-amd64-cpython-39\torch\jit\unsupported_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9200062Z copying build\lib.win-amd64-cpython-39\torch\jit\_async.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9205286Z copying build\lib.win-amd64-cpython-39\torch\jit\_await.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9211408Z copying build\lib.win-amd64-cpython-39\torch\jit\_builtins.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9217108Z copying build\lib.win-amd64-cpython-39\torch\jit\_check.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9222418Z copying build\lib.win-amd64-cpython-39\torch\jit\_dataclass_impls.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9227972Z copying build\lib.win-amd64-cpython-39\torch\jit\_decompositions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9233344Z copying build\lib.win-amd64-cpython-39\torch\jit\_decomposition_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9238365Z copying build\lib.win-amd64-cpython-39\torch\jit\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9245713Z copying build\lib.win-amd64-cpython-39\torch\jit\_fuser.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9250972Z copying build\lib.win-amd64-cpython-39\torch\jit\_ir_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9256244Z copying build\lib.win-amd64-cpython-39\torch\jit\_logging.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9261224Z copying build\lib.win-amd64-cpython-39\torch\jit\_monkeytype_config.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9266821Z creating build\bdist.win-amd64\wheel\torch\jit\_passes 2025-08-26T20:12:02.9270199Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\_property_propagation.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-08-26T20:12:02.9275936Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-08-26T20:12:02.9280089Z copying build\lib.win-amd64-cpython-39\torch\jit\_pickle.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9285425Z copying build\lib.win-amd64-cpython-39\torch\jit\_recursive.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9291590Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9298317Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.pyi -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9303210Z copying build\lib.win-amd64-cpython-39\torch\jit\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9318779Z copying build\lib.win-amd64-cpython-39\torch\jit\_shape_functions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9324693Z copying build\lib.win-amd64-cpython-39\torch\jit\_state.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9330249Z copying build\lib.win-amd64-cpython-39\torch\jit\_trace.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9336249Z copying build\lib.win-amd64-cpython-39\torch\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-08-26T20:12:02.9342248Z creating build\bdist.win-amd64\wheel\torch\lib 2025-08-26T20:12:02.9345448Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:02.9353078Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:02.9360042Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:02.9378250Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:02.9383990Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:02.9399206Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:02.9411375Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:02.9420346Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:02.9426954Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:02.9433327Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:02.9438681Z copying build\lib.win-amd64-cpython-39\torch\lib\cpuinfo.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:02.9446445Z copying build\lib.win-amd64-cpython-39\torch\lib\dnnl.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.5380467Z copying build\lib.win-amd64-cpython-39\torch\lib\fmt.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.5398273Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.5406001Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.5412209Z copying build\lib.win-amd64-cpython-39\torch\lib\kineto.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.5739153Z copying build\lib.win-amd64-cpython-39\torch\lib\libittnotify.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.5748112Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf-lite.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.5805434Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.6131061Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotoc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.6476949Z creating build\bdist.win-amd64\wheel\torch\lib\libshm 2025-08-26T20:12:03.6480199Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\alloc_info.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-08-26T20:12:03.6485515Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\err.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-08-26T20:12:03.6491011Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-08-26T20:12:03.6497047Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\socket.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-08-26T20:12:03.6502670Z creating build\bdist.win-amd64\wheel\torch\lib\libshm_windows 2025-08-26T20:12:03.6506124Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm_windows\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm_windows 2025-08-26T20:12:03.6511719Z copying build\lib.win-amd64-cpython-39\torch\lib\microkernels-prod.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.6552348Z copying build\lib.win-amd64-cpython-39\torch\lib\pthreadpool.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.6560053Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.6565647Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.6571290Z copying build\lib.win-amd64-cpython-39\torch\lib\sleef.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.6655068Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.6660583Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.6666028Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.6677714Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.6683881Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.9044234Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:03.9310958Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:04.1474269Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:04.6650706Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_global_deps.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:04.6655978Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:04.6825816Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:04.6834513Z copying build\lib.win-amd64-cpython-39\torch\lib\XNNPACK.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:04.6864508Z copying build\lib.win-amd64-cpython-39\torch\lib\_C.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-08-26T20:12:04.6871697Z copying build\lib.win-amd64-cpython-39\torch\library.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:04.6879014Z creating build\bdist.win-amd64\wheel\torch\linalg 2025-08-26T20:12:04.6882412Z copying build\lib.win-amd64-cpython-39\torch\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\linalg 2025-08-26T20:12:04.6889770Z creating build\bdist.win-amd64\wheel\torch\masked 2025-08-26T20:12:04.6893388Z creating build\bdist.win-amd64\wheel\torch\masked\maskedtensor 2025-08-26T20:12:04.6896654Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\binary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-08-26T20:12:04.6902524Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\core.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-08-26T20:12:04.6909072Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\creation.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-08-26T20:12:04.6914350Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\passthrough.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-08-26T20:12:04.6919808Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\reductions.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-08-26T20:12:04.7015886Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\unary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-08-26T20:12:04.7021242Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\_ops_refs.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-08-26T20:12:04.7027246Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-08-26T20:12:04.7034304Z copying build\lib.win-amd64-cpython-39\torch\masked\_docs.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-08-26T20:12:04.7043248Z copying build\lib.win-amd64-cpython-39\torch\masked\_ops.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-08-26T20:12:04.7051381Z copying build\lib.win-amd64-cpython-39\torch\masked\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-08-26T20:12:04.7058440Z creating build\bdist.win-amd64\wheel\torch\monitor 2025-08-26T20:12:04.7062931Z copying build\lib.win-amd64-cpython-39\torch\monitor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\monitor 2025-08-26T20:12:04.7070203Z creating build\bdist.win-amd64\wheel\torch\mps 2025-08-26T20:12:04.7075392Z copying build\lib.win-amd64-cpython-39\torch\mps\event.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-08-26T20:12:04.7081033Z copying build\lib.win-amd64-cpython-39\torch\mps\profiler.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-08-26T20:12:04.7086456Z copying build\lib.win-amd64-cpython-39\torch\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-08-26T20:12:04.7092322Z creating build\bdist.win-amd64\wheel\torch\mtia 2025-08-26T20:12:04.7095590Z copying build\lib.win-amd64-cpython-39\torch\mtia\memory.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-08-26T20:12:04.7100994Z copying build\lib.win-amd64-cpython-39\torch\mtia\_utils.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-08-26T20:12:04.7106364Z copying build\lib.win-amd64-cpython-39\torch\mtia\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-08-26T20:12:04.7112092Z creating build\bdist.win-amd64\wheel\torch\multiprocessing 2025-08-26T20:12:04.7115563Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\pool.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-08-26T20:12:04.7120955Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\queue.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-08-26T20:12:04.7126896Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\reductions.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-08-26T20:12:04.7133498Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\spawn.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-08-26T20:12:04.7141674Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\_atfork.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-08-26T20:12:04.7256457Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-08-26T20:12:04.7261774Z creating build\bdist.win-amd64\wheel\torch\nested 2025-08-26T20:12:04.7383048Z creating build\bdist.win-amd64\wheel\torch\nested\_internal 2025-08-26T20:12:04.7386130Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_int.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-08-26T20:12:04.7391686Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_tensor.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-08-26T20:12:04.7397218Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\ops.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-08-26T20:12:04.7404188Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-08-26T20:12:04.7517157Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-08-26T20:12:04.7521279Z copying build\lib.win-amd64-cpython-39\torch\nested\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested 2025-08-26T20:12:04.7527379Z creating build\bdist.win-amd64\wheel\torch\nn 2025-08-26T20:12:04.7530559Z creating build\bdist.win-amd64\wheel\torch\nn\attention 2025-08-26T20:12:04.7533931Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\bias.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-08-26T20:12:04.7540178Z creating build\bdist.win-amd64\wheel\torch\nn\attention\experimental 2025-08-26T20:12:04.7543631Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\_paged_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-08-26T20:12:04.7549128Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-08-26T20:12:04.7554268Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-08-26T20:12:04.7563582Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-08-26T20:12:04.7699076Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-08-26T20:12:04.7704686Z creating build\bdist.win-amd64\wheel\torch\nn\backends 2025-08-26T20:12:04.7707837Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\thnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-08-26T20:12:04.7713161Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-08-26T20:12:04.7717476Z copying build\lib.win-amd64-cpython-39\torch\nn\common_types.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-08-26T20:12:04.7722785Z copying build\lib.win-amd64-cpython-39\torch\nn\cpp.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-08-26T20:12:04.7729234Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-08-26T20:12:05.0514186Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-08-26T20:12:05.0519992Z copying build\lib.win-amd64-cpython-39\torch\nn\grad.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-08-26T20:12:05.0525364Z copying build\lib.win-amd64-cpython-39\torch\nn\init.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-08-26T20:12:05.0531841Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic 2025-08-26T20:12:05.0535958Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\modules 2025-08-26T20:12:05.0538881Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-08-26T20:12:05.0544428Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-08-26T20:12:05.0549836Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat 2025-08-26T20:12:05.0553168Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat\modules 2025-08-26T20:12:05.0556541Z 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-08-26T20:12:05.0562639Z 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-08-26T20:12:05.0570483Z 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-08-26T20:12:05.0581539Z 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-08-26T20:12:05.0699070Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat 2025-08-26T20:12:05.0704099Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized 2025-08-26T20:12:05.0707915Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic 2025-08-26T20:12:05.0711080Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic\modules 2025-08-26T20:12:05.0714717Z 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-08-26T20:12:05.0720285Z 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-08-26T20:12:05.0725508Z 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-08-26T20:12:05.0731322Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\modules 2025-08-26T20:12:05.0734692Z 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-08-26T20:12:05.0740227Z 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-08-26T20:12:05.0745228Z 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-08-26T20:12:05.0751051Z 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-08-26T20:12:05.0755955Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized 2025-08-26T20:12:05.0760953Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic 2025-08-26T20:12:05.0766890Z creating build\bdist.win-amd64\wheel\torch\nn\modules 2025-08-26T20:12:05.0770106Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0776909Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\adaptive.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0782218Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0788739Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\channelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0906358Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\container.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0913175Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0919884Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\distance.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0926054Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0932994Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\flatten.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0938938Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\fold.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0945094Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\instancenorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0950860Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\lazy.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0956546Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0962583Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\loss.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0969447Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\module.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0976647Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0982212Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\padding.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0988084Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pixelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.0993576Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pooling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.1000053Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.1007153Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.1013603Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\transformer.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.1019572Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\upsampling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.1026187Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.1031845Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.1038314Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-08-26T20:12:05.1044507Z creating build\bdist.win-amd64\wheel\torch\nn\parallel 2025-08-26T20:12:05.1048088Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\comm.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-08-26T20:12:05.1053753Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-08-26T20:12:05.1059358Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\distributed.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-08-26T20:12:05.1065615Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\parallel_apply.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-08-26T20:12:05.1183321Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\replicate.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-08-26T20:12:05.1188873Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\scatter_gather.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-08-26T20:12:05.1194238Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-08-26T20:12:05.1238905Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-08-26T20:12:05.1303693Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-08-26T20:12:05.1309487Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-08-26T20:12:05.1348522Z creating build\bdist.win-amd64\wheel\torch\nn\qat 2025-08-26T20:12:05.1348944Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic 2025-08-26T20:12:05.1349401Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic\modules 2025-08-26T20:12:05.1350148Z 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-08-26T20:12:05.1351251Z 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-08-26T20:12:05.1352182Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic 2025-08-26T20:12:05.1352834Z creating build\bdist.win-amd64\wheel\torch\nn\qat\modules 2025-08-26T20:12:05.1353560Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-08-26T20:12:05.1356388Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-08-26T20:12:05.1361400Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-08-26T20:12:05.1366516Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-08-26T20:12:05.1371601Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat 2025-08-26T20:12:05.1376953Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable 2025-08-26T20:12:05.1380442Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable\modules 2025-08-26T20:12:05.1383849Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-08-26T20:12:05.1389149Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-08-26T20:12:05.1394212Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-08-26T20:12:05.1400481Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable 2025-08-26T20:12:05.1405747Z creating build\bdist.win-amd64\wheel\torch\nn\quantized 2025-08-26T20:12:05.1409090Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic 2025-08-26T20:12:05.1413331Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic\modules 2025-08-26T20:12:05.1416437Z 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-08-26T20:12:05.1422713Z 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-08-26T20:12:05.1428004Z 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-08-26T20:12:05.1433286Z 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-08-26T20:12:05.1438451Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic 2025-08-26T20:12:05.1443557Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-08-26T20:12:05.1448961Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\modules 2025-08-26T20:12:05.1452161Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-08-26T20:12:05.1457398Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-08-26T20:12:05.1462257Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-08-26T20:12:05.1467200Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-08-26T20:12:05.1472177Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-08-26T20:12:05.1579678Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\functional_modules.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-08-26T20:12:05.1584807Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-08-26T20:12:05.1590177Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-08-26T20:12:05.1596439Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-08-26T20:12:05.1601278Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-08-26T20:12:05.1607500Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-08-26T20:12:05.1614472Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference 2025-08-26T20:12:06.2352863Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference\modules 2025-08-26T20:12:06.2356317Z 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-08-26T20:12:06.2362284Z 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-08-26T20:12:06.2368723Z 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-08-26T20:12:06.2374010Z 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-08-26T20:12:06.2379009Z 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-08-26T20:12:06.2384067Z 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-08-26T20:12:06.2389641Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference 2025-08-26T20:12:06.2394685Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-08-26T20:12:06.2400491Z creating build\bdist.win-amd64\wheel\torch\nn\utils 2025-08-26T20:12:06.2403931Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\clip_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2409642Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\convert_parameters.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2414867Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\fusion.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2420269Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\init.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2426507Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\memory_format.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2446294Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrizations.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2460803Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrize.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2501338Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\prune.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2507337Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2513489Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\spectral_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2519616Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\stateless.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2525219Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\weight_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2531109Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_deprecation_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2536948Z creating build\bdist.win-amd64\wheel\torch\nn\utils\_expanded_weights 2025-08-26T20:12:06.2540315Z 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-08-26T20:12:06.2546097Z 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-08-26T20:12:06.2552581Z 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-08-26T20:12:06.2571545Z 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-08-26T20:12:06.2577071Z 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-08-26T20:12:06.2582555Z 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-08-26T20:12:06.2588133Z 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-08-26T20:12:06.2593475Z 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-08-26T20:12:06.2598877Z 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-08-26T20:12:06.2604345Z 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-08-26T20:12:06.2609557Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_named_member_accessor.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2615268Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_per_sample_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2620562Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-08-26T20:12:06.2625900Z copying build\lib.win-amd64-cpython-39\torch\nn\_reduction.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-08-26T20:12:06.2631187Z copying build\lib.win-amd64-cpython-39\torch\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-08-26T20:12:06.2636940Z creating build\bdist.win-amd64\wheel\torch\numa 2025-08-26T20:12:06.2640261Z copying build\lib.win-amd64-cpython-39\torch\numa\binding.py -> build\bdist.win-amd64\wheel\.\torch\numa 2025-08-26T20:12:06.2646182Z copying build\lib.win-amd64-cpython-39\torch\numa\__init__.py -> build\bdist.win-amd64\wheel\.\torch\numa 2025-08-26T20:12:06.2651392Z creating build\bdist.win-amd64\wheel\torch\onnx 2025-08-26T20:12:06.2655625Z copying build\lib.win-amd64-cpython-39\torch\onnx\errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2661482Z copying build\lib.win-amd64-cpython-39\torch\onnx\operators.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2667047Z creating build\bdist.win-amd64\wheel\torch\onnx\ops 2025-08-26T20:12:06.2670301Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_dtype_mappings.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-08-26T20:12:06.2675665Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-08-26T20:12:06.2681108Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_symbolic_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-08-26T20:12:06.2686709Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-08-26T20:12:06.2692641Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_helper.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2699309Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset10.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2719677Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset11.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2726937Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset12.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2732800Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset13.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2739025Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset14.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2745178Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset15.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2751479Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset16.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2757209Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset17.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2762946Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset18.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2768768Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset19.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2774764Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset20.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2781038Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset7.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2786814Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset8.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2792662Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset9.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2805575Z copying build\lib.win-amd64-cpython-39\torch\onnx\utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2812470Z copying build\lib.win-amd64-cpython-39\torch\onnx\verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2938868Z copying build\lib.win-amd64-cpython-39\torch\onnx\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2944042Z copying build\lib.win-amd64-cpython-39\torch\onnx\_experimental.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2949811Z copying build\lib.win-amd64-cpython-39\torch\onnx\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2955716Z copying build\lib.win-amd64-cpython-39\torch\onnx\_globals.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.2961214Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal 2025-08-26T20:12:06.2964757Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter 2025-08-26T20:12:06.2968216Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_analysis.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.2973994Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_building.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.2980072Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_capture_strategies.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.2985542Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_compat.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3005580Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3010878Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_core.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3017617Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_decomp.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3023357Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dispatching.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3029009Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3035045Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3040347Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3046053Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_fx_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3051792Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_ir_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3057598Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_isolated.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3063335Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_onnx_program.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3069437Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3075264Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_reporting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3080975Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_schemas.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3087005Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_tensors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3092530Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_testing.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3098352Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib 2025-08-26T20:12:06.3102053Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib\ops 2025-08-26T20:12:06.3105392Z 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-08-26T20:12:06.3111074Z 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-08-26T20:12:06.3116777Z 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-08-26T20:12:06.3122214Z 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-08-26T20:12:06.3128332Z 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-08-26T20:12:06.3134114Z 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-08-26T20:12:06.3139395Z 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-08-26T20:12:06.3145091Z 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-08-26T20:12:06.3150828Z 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-08-26T20:12:06.3206688Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_type_casting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3212314Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3276848Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-08-26T20:12:06.3281499Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx 2025-08-26T20:12:06.3285171Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx\passes 2025-08-26T20:12:06.3288506Z 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-08-26T20:12:06.3295565Z 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-08-26T20:12:06.3301050Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-08-26T20:12:06.3306704Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\_pass.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-08-26T20:12:06.3312795Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-08-26T20:12:06.3317357Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-08-26T20:12:06.3323084Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\onnx_proto_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-08-26T20:12:06.3346083Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-08-26T20:12:06.3351601Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_lazy_import.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-08-26T20:12:06.3357418Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-08-26T20:12:06.3362170Z copying build\lib.win-amd64-cpython-39\torch\onnx\_type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.3368096Z copying build\lib.win-amd64-cpython-39\torch\onnx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-08-26T20:12:06.3374550Z creating build\bdist.win-amd64\wheel\torch\optim 2025-08-26T20:12:06.3377770Z copying build\lib.win-amd64-cpython-39\torch\optim\adadelta.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3385419Z copying build\lib.win-amd64-cpython-39\torch\optim\adagrad.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3389549Z copying build\lib.win-amd64-cpython-39\torch\optim\adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3395600Z copying build\lib.win-amd64-cpython-39\torch\optim\adamax.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3401341Z copying build\lib.win-amd64-cpython-39\torch\optim\adamw.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3406761Z copying build\lib.win-amd64-cpython-39\torch\optim\asgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3412428Z copying build\lib.win-amd64-cpython-39\torch\optim\lbfgs.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3477066Z copying build\lib.win-amd64-cpython-39\torch\optim\lr_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3483988Z copying build\lib.win-amd64-cpython-39\torch\optim\nadam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3489813Z copying build\lib.win-amd64-cpython-39\torch\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3496176Z copying build\lib.win-amd64-cpython-39\torch\optim\radam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3502085Z copying build\lib.win-amd64-cpython-39\torch\optim\rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3507502Z copying build\lib.win-amd64-cpython-39\torch\optim\rprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3512930Z copying build\lib.win-amd64-cpython-39\torch\optim\sgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3518506Z copying build\lib.win-amd64-cpython-39\torch\optim\sparse_adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3523988Z copying build\lib.win-amd64-cpython-39\torch\optim\swa_utils.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3529806Z copying build\lib.win-amd64-cpython-39\torch\optim\_adafactor.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3535568Z copying build\lib.win-amd64-cpython-39\torch\optim\_functional.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3541765Z creating build\bdist.win-amd64\wheel\torch\optim\_multi_tensor 2025-08-26T20:12:06.3545017Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-08-26T20:12:06.3550533Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-08-26T20:12:06.3555409Z copying build\lib.win-amd64-cpython-39\torch\optim\_muon.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3560679Z copying build\lib.win-amd64-cpython-39\torch\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-08-26T20:12:06.3565969Z copying build\lib.win-amd64-cpython-39\torch\overrides.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.3590049Z creating build\bdist.win-amd64\wheel\torch\package 2025-08-26T20:12:06.3593521Z creating build\bdist.win-amd64\wheel\torch\package\analyze 2025-08-26T20:12:06.3596714Z 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-08-26T20:12:06.3602067Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\is_from_package.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-08-26T20:12:06.3607120Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\trace_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-08-26T20:12:06.3627249Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-08-26T20:12:06.3632499Z copying build\lib.win-amd64-cpython-39\torch\package\file_structure_representation.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3637788Z copying build\lib.win-amd64-cpython-39\torch\package\find_file_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3643159Z copying build\lib.win-amd64-cpython-39\torch\package\glob_group.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3665066Z copying build\lib.win-amd64-cpython-39\torch\package\importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3670403Z copying build\lib.win-amd64-cpython-39\torch\package\package_exporter.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3676694Z copying build\lib.win-amd64-cpython-39\torch\package\package_importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3682651Z copying build\lib.win-amd64-cpython-39\torch\package\_digraph.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3688629Z copying build\lib.win-amd64-cpython-39\torch\package\_directory_reader.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3694310Z copying build\lib.win-amd64-cpython-39\torch\package\_importlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3699620Z copying build\lib.win-amd64-cpython-39\torch\package\_mangling.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3705119Z copying build\lib.win-amd64-cpython-39\torch\package\_mock.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3710470Z copying build\lib.win-amd64-cpython-39\torch\package\_package_pickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3716378Z copying build\lib.win-amd64-cpython-39\torch\package\_package_unpickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3721991Z copying build\lib.win-amd64-cpython-39\torch\package\_stdlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3726924Z copying build\lib.win-amd64-cpython-39\torch\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-08-26T20:12:06.3732226Z creating build\bdist.win-amd64\wheel\torch\profiler 2025-08-26T20:12:06.3735711Z copying build\lib.win-amd64-cpython-39\torch\profiler\itt.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-08-26T20:12:06.3741090Z copying build\lib.win-amd64-cpython-39\torch\profiler\profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-08-26T20:12:06.3781272Z copying build\lib.win-amd64-cpython-39\torch\profiler\python_tracer.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-08-26T20:12:06.3786364Z copying build\lib.win-amd64-cpython-39\torch\profiler\_memory_profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-08-26T20:12:06.3793895Z copying build\lib.win-amd64-cpython-39\torch\profiler\_pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-08-26T20:12:06.3928170Z copying build\lib.win-amd64-cpython-39\torch\profiler\_utils.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-08-26T20:12:06.3935157Z copying build\lib.win-amd64-cpython-39\torch\profiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-08-26T20:12:06.3940782Z copying build\lib.win-amd64-cpython-39\torch\py.typed -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.3946068Z creating build\bdist.win-amd64\wheel\torch\quantization 2025-08-26T20:12:06.3949283Z copying build\lib.win-amd64-cpython-39\torch\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.3956672Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.3963466Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4032967Z creating build\bdist.win-amd64\wheel\torch\quantization\fx 2025-08-26T20:12:06.4036504Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4042820Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4047950Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fusion_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4052930Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4058497Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4128872Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4134708Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4139729Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4145079Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_types.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4150643Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4155827Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4161118Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-08-26T20:12:06.4166209Z copying build\lib.win-amd64-cpython-39\torch\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4171479Z copying build\lib.win-amd64-cpython-39\torch\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4177961Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4223780Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4230327Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4238768Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4246233Z copying build\lib.win-amd64-cpython-39\torch\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4253277Z copying build\lib.win-amd64-cpython-39\torch\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4260148Z copying build\lib.win-amd64-cpython-39\torch\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4268619Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4275919Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4283352Z copying build\lib.win-amd64-cpython-39\torch\quantization\_quantized_conversions.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4292202Z copying build\lib.win-amd64-cpython-39\torch\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-08-26T20:12:06.4299390Z copying build\lib.win-amd64-cpython-39\torch\quasirandom.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.4306773Z copying build\lib.win-amd64-cpython-39\torch\random.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.4315680Z copying build\lib.win-amd64-cpython-39\torch\return_types.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.4321086Z copying build\lib.win-amd64-cpython-39\torch\return_types.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.4327812Z copying build\lib.win-amd64-cpython-39\torch\serialization.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.4338179Z creating build\bdist.win-amd64\wheel\torch\share 2025-08-26T20:12:06.4341220Z creating build\bdist.win-amd64\wheel\torch\share\cmake 2025-08-26T20:12:06.4344995Z creating build\bdist.win-amd64\wheel\torch\share\cmake\ATen 2025-08-26T20:12:06.4349064Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\ATen\ATenConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\ATen 2025-08-26T20:12:06.4355491Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2 2025-08-26T20:12:06.4358062Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-08-26T20:12:06.4363822Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-08-26T20:12:06.4369442Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-08-26T20:12:06.4395922Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-08-26T20:12:06.4408533Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-08-26T20:12:06.4409590Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-08-26T20:12:06.4414870Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-08-26T20:12:06.4420825Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-08-26T20:12:06.4424450Z 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-08-26T20:12:06.4429959Z 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-08-26T20:12:06.4435820Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-08-26T20:12:06.4456508Z 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-08-26T20:12:06.4462139Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-08-26T20:12:06.4465625Z 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-08-26T20:12:06.4471352Z 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-08-26T20:12:06.4476785Z 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-08-26T20:12:06.4497311Z 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-08-26T20:12:06.4503189Z 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-08-26T20:12:06.4509174Z 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-08-26T20:12:06.4525431Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\public 2025-08-26T20:12:06.4528836Z 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-08-26T20:12:06.4534281Z 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-08-26T20:12:06.4539497Z 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-08-26T20:12:06.4545204Z 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-08-26T20:12:06.4561813Z 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-08-26T20:12:06.4567307Z 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-08-26T20:12:06.4572640Z 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-08-26T20:12:06.4577942Z 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-08-26T20:12:06.4584294Z 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-08-26T20:12:06.4590130Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Torch 2025-08-26T20:12:06.4593577Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-08-26T20:12:06.4599527Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-08-26T20:12:06.4605378Z creating build\bdist.win-amd64\wheel\torch\signal 2025-08-26T20:12:06.4608840Z creating build\bdist.win-amd64\wheel\torch\signal\windows 2025-08-26T20:12:06.4612206Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\windows.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-08-26T20:12:06.4618782Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-08-26T20:12:06.4624311Z copying build\lib.win-amd64-cpython-39\torch\signal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal 2025-08-26T20:12:06.4630308Z creating build\bdist.win-amd64\wheel\torch\sparse 2025-08-26T20:12:06.4633726Z copying build\lib.win-amd64-cpython-39\torch\sparse\semi_structured.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-08-26T20:12:06.4640703Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_conversions.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-08-26T20:12:06.4647721Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-08-26T20:12:06.4666635Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-08-26T20:12:06.4676412Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops_meta.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-08-26T20:12:06.4697409Z copying build\lib.win-amd64-cpython-39\torch\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-08-26T20:12:06.4704351Z creating build\bdist.win-amd64\wheel\torch\special 2025-08-26T20:12:06.4723227Z copying build\lib.win-amd64-cpython-39\torch\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\special 2025-08-26T20:12:06.4730596Z copying build\lib.win-amd64-cpython-39\torch\storage.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.4739478Z creating build\bdist.win-amd64\wheel\torch\test 2025-08-26T20:12:06.4742958Z copying build\lib.win-amd64-cpython-39\torch\test\apply_utils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4752939Z copying build\lib.win-amd64-cpython-39\torch\test\atest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4762779Z copying build\lib.win-amd64-cpython-39\torch\test\backend_fallback_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4772320Z copying build\lib.win-amd64-cpython-39\torch\test\basic.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4884696Z copying build\lib.win-amd64-cpython-39\torch\test\broadcast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4898657Z copying build\lib.win-amd64-cpython-39\torch\test\c10_accumulate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4905065Z copying build\lib.win-amd64-cpython-39\torch\test\c10_AllocatorConfig_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4914166Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ArrayRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4923150Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bfloat16_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4932330Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Bitset_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4941223Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bit_cast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4950024Z copying build\lib.win-amd64-cpython-39\torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4958386Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4967500Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4976510Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ConstexprCrc_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4985084Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.4994270Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5003266Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5023114Z 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-08-26T20:12:06.5031740Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5040898Z 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-08-26T20:12:06.5049972Z 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-08-26T20:12:06.5058801Z 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-08-26T20:12:06.5067207Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDATest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5075585Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeadlockDetection_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5094798Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5103568Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5112730Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DispatchKeySet_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5121826Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Enumerate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5130669Z copying build\lib.win-amd64-cpython-39\torch\test\c10_error_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5143069Z copying build\lib.win-amd64-cpython-39\torch\test\c10_exception_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5154678Z copying build\lib.win-amd64-cpython-39\torch\test\c10_flags_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5163196Z copying build\lib.win-amd64-cpython-39\torch\test\c10_generic_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5182348Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5191016Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineDeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5199829Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineStreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5208553Z copying build\lib.win-amd64-cpython-39\torch\test\c10_IntrusiveList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5217351Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_benchmark.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5225180Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5240191Z copying build\lib.win-amd64-cpython-39\torch\test\c10_irange_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5248727Z copying build\lib.win-amd64-cpython-39\torch\test\c10_lazy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5279304Z copying build\lib.win-amd64-cpython-39\torch\test\c10_LeftRight_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5288400Z copying build\lib.win-amd64-cpython-39\torch\test\c10_logging_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5297017Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Metaprogramming_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5307174Z copying build\lib.win-amd64-cpython-39\torch\test\c10_NetworkFlow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5315676Z copying build\lib.win-amd64-cpython-39\torch\test\c10_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5326025Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ordered_preserving_dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5335299Z copying build\lib.win-amd64-cpython-39\torch\test\c10_registry_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5343811Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5352710Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Semaphore_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5372216Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SizesAndStrides_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5380883Z copying build\lib.win-amd64-cpython-39\torch\test\c10_small_vector_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5394979Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ssize_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5447349Z copying build\lib.win-amd64-cpython-39\torch\test\c10_StreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5448256Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_util_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5449091Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_view_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5450032Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SymInt_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5453065Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Synchronized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5471662Z copying build\lib.win-amd64-cpython-39\torch\test\c10_tempfile_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5479610Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ThreadLocal_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5489209Z copying build\lib.win-amd64-cpython-39\torch\test\c10_typeid_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5498577Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeIndex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5506910Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5515569Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeTraits_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5524195Z copying build\lib.win-amd64-cpython-39\torch\test\CppSignature_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5532969Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5541849Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5561539Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_profiling_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5580617Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_rng_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5592212Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocatorTraceTracker_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5600563Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5609930Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_apply_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5618574Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_atomic_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5628414Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_caching_host_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5637865Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5647498Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5656693Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cub_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5666069Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cudnn_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5675629Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5684105Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_distributions_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5694657Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5703780Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_exchange_device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5712263Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5721607Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5741584Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_integer_divider_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5750411Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5759861Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5769054Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5778456Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_stream_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5787658Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_vectorized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5796982Z copying build\lib.win-amd64-cpython-39\torch\test\Dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5807286Z copying build\lib.win-amd64-cpython-39\torch\test\Dimname_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5816312Z copying build\lib.win-amd64-cpython-39\torch\test\dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5825496Z copying build\lib.win-amd64-cpython-39\torch\test\extension_backend_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5834700Z copying build\lib.win-amd64-cpython-39\torch\test\half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5844075Z copying build\lib.win-amd64-cpython-39\torch\test\IListRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5853870Z copying build\lib.win-amd64-cpython-39\torch\test\inline_container_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5863716Z copying build\lib.win-amd64-cpython-39\torch\test\ivalue_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5875119Z copying build\lib.win-amd64-cpython-39\torch\test\KernelFunction_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5885140Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5899147Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5932720Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5946123Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5957895Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_stackbased_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5967616Z copying build\lib.win-amd64-cpython-39\torch\test\lazy_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5976658Z copying build\lib.win-amd64-cpython-39\torch\test\legacy_vmap_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5987271Z copying build\lib.win-amd64-cpython-39\torch\test\List_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.5999435Z copying build\lib.win-amd64-cpython-39\torch\test\make_boxed_from_unboxed_functor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6011016Z copying build\lib.win-amd64-cpython-39\torch\test\math_kernel_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6020284Z copying build\lib.win-amd64-cpython-39\torch\test\MaybeOwned_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6030395Z copying build\lib.win-amd64-cpython-39\torch\test\memory_format_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6039710Z copying build\lib.win-amd64-cpython-39\torch\test\memory_overlapping_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6049131Z copying build\lib.win-amd64-cpython-39\torch\test\mobile_memory_cleanup.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6058132Z copying build\lib.win-amd64-cpython-39\torch\test\NamedTensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6067492Z copying build\lib.win-amd64-cpython-39\torch\test\native_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6077069Z copying build\lib.win-amd64-cpython-39\torch\test\operators_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6086829Z copying build\lib.win-amd64-cpython-39\torch\test\operator_name_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6095853Z copying build\lib.win-amd64-cpython-39\torch\test\op_allowlist_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6104396Z copying build\lib.win-amd64-cpython-39\torch\test\op_registration_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6130454Z copying build\lib.win-amd64-cpython-39\torch\test\packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6139568Z copying build\lib.win-amd64-cpython-39\torch\test\pow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6183127Z copying build\lib.win-amd64-cpython-39\torch\test\quantized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6192270Z copying build\lib.win-amd64-cpython-39\torch\test\reduce_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6201680Z copying build\lib.win-amd64-cpython-39\torch\test\reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6211543Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6220348Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6230109Z copying build\lib.win-amd64-cpython-39\torch\test\StorageUtils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6240017Z copying build\lib.win-amd64-cpython-39\torch\test\stride_properties_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6248831Z copying build\lib.win-amd64-cpython-39\torch\test\tensor_iterator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6260038Z copying build\lib.win-amd64-cpython-39\torch\test\test_parallel.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6269692Z copying build\lib.win-amd64-cpython-39\torch\test\thread_init_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6278564Z copying build\lib.win-amd64-cpython-39\torch\test\type_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6287551Z copying build\lib.win-amd64-cpython-39\torch\test\type_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6297693Z copying build\lib.win-amd64-cpython-39\torch\test\undefined_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6306990Z copying build\lib.win-amd64-cpython-39\torch\test\verify_api_visibility.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6320239Z copying build\lib.win-amd64-cpython-39\torch\test\weakref_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6329522Z copying build\lib.win-amd64-cpython-39\torch\test\wrapdim_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6338749Z copying build\lib.win-amd64-cpython-39\torch\test\xla_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-08-26T20:12:06.6348528Z creating build\bdist.win-amd64\wheel\torch\testing 2025-08-26T20:12:06.6351871Z copying build\lib.win-amd64-cpython-39\torch\testing\_comparison.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-08-26T20:12:06.6358544Z copying build\lib.win-amd64-cpython-39\torch\testing\_creation.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-08-26T20:12:06.6365892Z creating build\bdist.win-amd64\wheel\torch\testing\_internal 2025-08-26T20:12:06.6369362Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autocast_test_lists.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6375408Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autograd_function_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6381883Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\check_kernel_launches.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6398333Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\codegen 2025-08-26T20:12:06.6401538Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\codegen 2025-08-26T20:12:06.6407386Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_cuda.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6429320Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_device_type.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6430389Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_distributed.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6431450Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dist_composable.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6435233Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dtype.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6441327Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_fsdp.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6447854Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_jit.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6453643Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_methods_invocations.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6470571Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6476286Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_modules.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6484871Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mps.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6490889Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_nn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6498966Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_optimizers.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6505980Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_pruning.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6511762Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantization.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6529225Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantized.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6535208Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_subclass.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6540554Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6548734Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\composite_compliance.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6555329Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_op_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6561048Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6566774Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\data 2025-08-26T20:12:06.6570084Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network1.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-08-26T20:12:06.6575062Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-08-26T20:12:06.6589104Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-08-26T20:12:06.6589904Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed 2025-08-26T20:12:06.6590820Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\checkpoint_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-08-26T20:12:06.6594143Z 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-08-26T20:12:06.6599600Z 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-08-26T20:12:06.6616327Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-08-26T20:12:06.6625827Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-08-26T20:12:06.6631115Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\fake_pg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-08-26T20:12:06.6636373Z 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-08-26T20:12:06.6642403Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn 2025-08-26T20:12:06.6646096Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn\api 2025-08-26T20:12:06.6649436Z 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-08-26T20:12:06.6655412Z 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-08-26T20:12:06.6659897Z 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-08-26T20:12:06.6664571Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc 2025-08-26T20:12:06.6668494Z 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-08-26T20:12:06.6675320Z 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-08-26T20:12:06.6681263Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\examples 2025-08-26T20:12:06.6684950Z 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-08-26T20:12:06.6690820Z 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-08-26T20:12:06.6696450Z 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-08-26T20:12:06.6700853Z 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-08-26T20:12:06.6716985Z 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-08-26T20:12:06.6722954Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\jit 2025-08-26T20:12:06.6726985Z 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-08-26T20:12:06.6732169Z 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-08-26T20:12:06.6738170Z 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-08-26T20:12:06.6743719Z 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-08-26T20:12:06.6748216Z 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-08-26T20:12:06.6754311Z 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-08-26T20:12:06.6762418Z 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-08-26T20:12:06.6772564Z 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-08-26T20:12:06.6777019Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-08-26T20:12:06.6783028Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard 2025-08-26T20:12:06.6786551Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-08-26T20:12:06.6790185Z 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-08-26T20:12:06.6795736Z 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-08-26T20:12:06.6806801Z 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-08-26T20:12:06.6812137Z 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-08-26T20:12:06.6817515Z 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-08-26T20:12:06.6832861Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_tensor 2025-08-26T20:12:06.6836305Z 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-08-26T20:12:06.6842558Z 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-08-26T20:12:06.6847263Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-08-26T20:12:06.6852763Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dist_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6859163Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dynamo_test_failures.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6865080Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6870303Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6886049Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module3.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6891430Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\generated 2025-08-26T20:12:06.6894953Z 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-08-26T20:12:06.6906738Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\generated\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\generated 2025-08-26T20:12:06.6911509Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hop_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6917343Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hypothesis_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6923119Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\inductor_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6928893Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_metaprogramming_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6934861Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6941155Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6946893Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.6962621Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo 2025-08-26T20:12:06.6966031Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\core.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-08-26T20:12:06.6974176Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo\definitions 2025-08-26T20:12:06.6977392Z 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-08-26T20:12:06.6983404Z 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-08-26T20:12:06.6989918Z 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-08-26T20:12:06.6996239Z 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-08-26T20:12:06.7001496Z 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-08-26T20:12:06.7007429Z 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-08-26T20:12:06.7024324Z 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-08-26T20:12:06.7029953Z 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-08-26T20:12:06.7034857Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\refs.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-08-26T20:12:06.7040148Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-08-26T20:12:06.7045304Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-08-26T20:12:06.7050792Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\optests 2025-08-26T20:12:06.7054112Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-08-26T20:12:06.7059804Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\autograd_registration.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-08-26T20:12:06.7065140Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-08-26T20:12:06.7070350Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\generate_tests.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-08-26T20:12:06.7087077Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\make_fx.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-08-26T20:12:06.7092356Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-08-26T20:12:06.7097852Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\quantization_torch_package_models.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.7103026Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\static_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.7108556Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\subclasses.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.7114748Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\test_module 2025-08-26T20:12:06.7118074Z 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-08-26T20:12:06.7123331Z 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-08-26T20:12:06.7128627Z 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-08-26T20:12:06.7133395Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\torchbind_impls.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.7138910Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.7144981Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\two_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.7150598Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-08-26T20:12:06.7155146Z copying build\lib.win-amd64-cpython-39\torch\testing\_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-08-26T20:12:06.7171053Z copying build\lib.win-amd64-cpython-39\torch\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-08-26T20:12:06.7176230Z copying build\lib.win-amd64-cpython-39\torch\torch_version.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.7181654Z copying build\lib.win-amd64-cpython-39\torch\types.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.7187749Z creating build\bdist.win-amd64\wheel\torch\utils 2025-08-26T20:12:06.7191134Z creating build\bdist.win-amd64\wheel\torch\utils\backcompat 2025-08-26T20:12:06.7194414Z copying build\lib.win-amd64-cpython-39\torch\utils\backcompat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\backcompat 2025-08-26T20:12:06.7199608Z copying build\lib.win-amd64-cpython-39\torch\utils\backend_registration.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7205721Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark 2025-08-26T20:12:06.7209086Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\examples 2025-08-26T20:12:06.7212416Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-08-26T20:12:06.7217897Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-08-26T20:12:06.7223304Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\op_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-08-26T20:12:06.7228763Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\simple_timeit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-08-26T20:12:06.7234028Z 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-08-26T20:12:06.7249624Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-08-26T20:12:06.7254162Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\op_fuzzers 2025-08-26T20:12:06.7257434Z 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-08-26T20:12:06.7263292Z 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-08-26T20:12:06.7269285Z 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-08-26T20:12:06.7274546Z 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-08-26T20:12:06.7290735Z 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-08-26T20:12:06.7296445Z 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-08-26T20:12:06.7301237Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils 2025-08-26T20:12:06.7304556Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-08-26T20:12:06.7309938Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-08-26T20:12:06.7315581Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compile.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-08-26T20:12:06.7320852Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\cpp_jit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-08-26T20:12:06.7326179Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-08-26T20:12:06.7331948Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\sparse_fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-08-26T20:12:06.7347445Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timeit_template.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-08-26T20:12:06.7352832Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-08-26T20:12:06.7359168Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils\valgrind_wrapper 2025-08-26T20:12:06.7362928Z 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-08-26T20:12:06.7368544Z 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-08-26T20:12:06.7374019Z 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-08-26T20:12:06.7390307Z 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-08-26T20:12:06.7396481Z 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-08-26T20:12:06.7406399Z 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-08-26T20:12:06.7410720Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\_stubs.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-08-26T20:12:06.7415982Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-08-26T20:12:06.7420515Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark 2025-08-26T20:12:06.7425564Z creating build\bdist.win-amd64\wheel\torch\utils\bottleneck 2025-08-26T20:12:06.7439182Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-08-26T20:12:06.7443437Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-08-26T20:12:06.7448735Z copying build\lib.win-amd64-cpython-39\torch\utils\bundled_inputs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7454573Z copying build\lib.win-amd64-cpython-39\torch\utils\checkpoint.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7460990Z copying build\lib.win-amd64-cpython-39\torch\utils\collect_env.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7467006Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_backtrace.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7472036Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_extension.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7479187Z creating build\bdist.win-amd64\wheel\torch\utils\data 2025-08-26T20:12:06.7484989Z copying build\lib.win-amd64-cpython-39\torch\utils\data\backward_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-08-26T20:12:06.7490360Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataloader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-08-26T20:12:06.7497333Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes 2025-08-26T20:12:06.7500622Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\dataframe 2025-08-26T20:12:06.7503977Z 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-08-26T20:12:06.7509481Z 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-08-26T20:12:06.7514669Z 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-08-26T20:12:06.7530178Z 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-08-26T20:12:06.7535197Z 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-08-26T20:12:06.7539858Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-08-26T20:12:06.7545245Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.pyi -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-08-26T20:12:06.7551109Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\gen_pyi.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-08-26T20:12:06.7557268Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\iter 2025-08-26T20:12:06.7570722Z 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-08-26T20:12:06.7576964Z 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-08-26T20:12:06.7581690Z 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-08-26T20:12:06.7587412Z 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-08-26T20:12:06.7601987Z 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-08-26T20:12:06.7607595Z 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-08-26T20:12:06.7612709Z 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-08-26T20:12:06.7617855Z 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-08-26T20:12:06.7623198Z 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-08-26T20:12:06.7628598Z 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-08-26T20:12:06.7634002Z 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-08-26T20:12:06.7639279Z 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-08-26T20:12:06.7644753Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\map 2025-08-26T20:12:06.7647793Z 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-08-26T20:12:06.7653109Z 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-08-26T20:12:06.7658375Z 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-08-26T20:12:06.7663645Z 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-08-26T20:12:06.7668814Z 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-08-26T20:12:06.7685100Z 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-08-26T20:12:06.7690566Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\utils 2025-08-26T20:12:06.7693362Z 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-08-26T20:12:06.7698993Z 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-08-26T20:12:06.7704318Z 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-08-26T20:12:06.7709737Z 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-08-26T20:12:06.7714410Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_decorator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-08-26T20:12:06.7720205Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_hook_iterator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-08-26T20:12:06.7726518Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_typing.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-08-26T20:12:06.7732741Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-08-26T20:12:06.7737764Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataset.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-08-26T20:12:06.7754252Z copying build\lib.win-amd64-cpython-39\torch\utils\data\distributed.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-08-26T20:12:06.7759515Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-08-26T20:12:06.7764740Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph_settings.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-08-26T20:12:06.7771158Z copying build\lib.win-amd64-cpython-39\torch\utils\data\sampler.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-08-26T20:12:06.7776561Z creating build\bdist.win-amd64\wheel\torch\utils\data\_utils 2025-08-26T20:12:06.7779917Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\collate.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-08-26T20:12:06.7785594Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\fetch.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-08-26T20:12:06.7790830Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\pin_memory.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-08-26T20:12:06.7796898Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\signal_handling.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-08-26T20:12:06.7801923Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\worker.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-08-26T20:12:06.7817495Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-08-26T20:12:06.7822916Z copying build\lib.win-amd64-cpython-39\torch\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-08-26T20:12:06.7828020Z copying build\lib.win-amd64-cpython-39\torch\utils\deterministic.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7833705Z copying build\lib.win-amd64-cpython-39\torch\utils\dlpack.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7839316Z copying build\lib.win-amd64-cpython-39\torch\utils\file_baton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7844709Z copying build\lib.win-amd64-cpython-39\torch\utils\flop_counter.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7851304Z creating build\bdist.win-amd64\wheel\torch\utils\hipify 2025-08-26T20:12:06.7854558Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\constants.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-08-26T20:12:06.7860204Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\cuda_to_hip_mappings.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-08-26T20:12:06.7870449Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\hipify_python.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-08-26T20:12:06.7876206Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\version.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-08-26T20:12:06.7890872Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-08-26T20:12:06.7930397Z copying build\lib.win-amd64-cpython-39\torch\utils\hooks.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7936057Z creating build\bdist.win-amd64\wheel\torch\utils\jit 2025-08-26T20:12:06.7940328Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\log_extract.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-08-26T20:12:06.7944457Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-08-26T20:12:06.7948800Z copying build\lib.win-amd64-cpython-39\torch\utils\mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7954970Z copying build\lib.win-amd64-cpython-39\torch\utils\mobile_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.7960071Z creating build\bdist.win-amd64\wheel\torch\utils\model_dump 2025-08-26T20:12:06.7963600Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\code.js -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-08-26T20:12:06.7969719Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\htm.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-08-26T20:12:06.7975114Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\preact.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-08-26T20:12:06.7980384Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\skeleton.html -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-08-26T20:12:06.7985246Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-08-26T20:12:06.7995741Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-08-26T20:12:06.8001707Z copying build\lib.win-amd64-cpython-39\torch\utils\model_zoo.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8007108Z copying build\lib.win-amd64-cpython-39\torch\utils\module_tracker.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8022608Z creating build\bdist.win-amd64\wheel\torch\utils\serialization 2025-08-26T20:12:06.8025778Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\config.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-08-26T20:12:06.8030651Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-08-26T20:12:06.8035621Z copying build\lib.win-amd64-cpython-39\torch\utils\show_pickle.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8042033Z creating build\bdist.win-amd64\wheel\torch\utils\tensorboard 2025-08-26T20:12:06.8045258Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\summary.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-08-26T20:12:06.8051652Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\writer.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-08-26T20:12:06.8058160Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_convert_np.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-08-26T20:12:06.8063300Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_embedding.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-08-26T20:12:06.8078303Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_onnx_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-08-26T20:12:06.8083357Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_proto_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-08-26T20:12:06.8088793Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_pytorch_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-08-26T20:12:06.8093906Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-08-26T20:12:06.8099479Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-08-26T20:12:06.8104862Z copying build\lib.win-amd64-cpython-39\torch\utils\throughput_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8110175Z creating build\bdist.win-amd64\wheel\torch\utils\viz 2025-08-26T20:12:06.8113217Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\_cycles.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-08-26T20:12:06.8118839Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-08-26T20:12:06.8135367Z copying build\lib.win-amd64-cpython-39\torch\utils\weak.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8140578Z copying build\lib.win-amd64-cpython-39\torch\utils\_appending_byte_serializer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8146206Z copying build\lib.win-amd64-cpython-39\torch\utils\_backport_slots.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8151848Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_module.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8158401Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_typing.pyi -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8163906Z copying build\lib.win-amd64-cpython-39\torch\utils\_content_store.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8179916Z copying build\lib.win-amd64-cpython-39\torch\utils\_contextlib.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8185249Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_embed_headers.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8191260Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_extension_versioner.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8196573Z copying build\lib.win-amd64-cpython-39\torch\utils\_cxx_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8203042Z copying build\lib.win-amd64-cpython-39\torch\utils\_device.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8208361Z copying build\lib.win-amd64-cpython-39\torch\utils\_dtype_abbrs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8214775Z copying build\lib.win-amd64-cpython-39\torch\utils\_exposed_in.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8220187Z copying build\lib.win-amd64-cpython-39\torch\utils\_filelock.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8226391Z copying build\lib.win-amd64-cpython-39\torch\utils\_foreach_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8241641Z copying build\lib.win-amd64-cpython-39\torch\utils\_functools.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8247322Z copying build\lib.win-amd64-cpython-39\torch\utils\_get_clean_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8252955Z copying build\lib.win-amd64-cpython-39\torch\utils\_helion.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8257778Z copying build\lib.win-amd64-cpython-39\torch\utils\_import_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8264791Z copying build\lib.win-amd64-cpython-39\torch\utils\_mode_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8272226Z copying build\lib.win-amd64-cpython-39\torch\utils\_ordered_set.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8277773Z copying build\lib.win-amd64-cpython-39\torch\utils\_python_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8283826Z copying build\lib.win-amd64-cpython-39\torch\utils\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8290314Z copying build\lib.win-amd64-cpython-39\torch\utils\_stats.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8295837Z creating build\bdist.win-amd64\wheel\torch\utils\_strobelight 2025-08-26T20:12:06.8299415Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-08-26T20:12:06.8304805Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-08-26T20:12:06.8310249Z creating build\bdist.win-amd64\wheel\torch\utils\_sympy 2025-08-26T20:12:06.8313158Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\functions.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-08-26T20:12:06.8319553Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\interp.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-08-26T20:12:06.8324729Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\numbers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-08-26T20:12:06.8331029Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\printers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-08-26T20:12:06.8336923Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\reference.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-08-26T20:12:06.8355427Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\singleton_int.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-08-26T20:12:06.8363234Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\solve.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-08-26T20:12:06.8369984Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\symbol.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-08-26T20:12:06.8376436Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\value_ranges.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-08-26T20:12:06.8386626Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-08-26T20:12:06.8392835Z copying build\lib.win-amd64-cpython-39\torch\utils\_thunk.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8409589Z copying build\lib.win-amd64-cpython-39\torch\utils\_traceback.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8423459Z copying build\lib.win-amd64-cpython-39\torch\utils\_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8430393Z copying build\lib.win-amd64-cpython-39\torch\utils\_typing_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8437109Z copying build\lib.win-amd64-cpython-39\torch\utils\_zip.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8444993Z copying build\lib.win-amd64-cpython-39\torch\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-08-26T20:12:06.8451544Z copying build\lib.win-amd64-cpython-39\torch\version.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.8458980Z creating build\bdist.win-amd64\wheel\torch\xpu 2025-08-26T20:12:06.8462453Z copying build\lib.win-amd64-cpython-39\torch\xpu\memory.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-08-26T20:12:06.8468267Z copying build\lib.win-amd64-cpython-39\torch\xpu\random.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-08-26T20:12:06.8475028Z copying build\lib.win-amd64-cpython-39\torch\xpu\streams.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-08-26T20:12:06.8481520Z copying build\lib.win-amd64-cpython-39\torch\xpu\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-08-26T20:12:06.8487595Z copying build\lib.win-amd64-cpython-39\torch\xpu\_utils.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-08-26T20:12:06.8492637Z copying build\lib.win-amd64-cpython-39\torch\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-08-26T20:12:06.8509440Z copying build\lib.win-amd64-cpython-39\torch\_appdirs.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.8516113Z creating build\bdist.win-amd64\wheel\torch\_awaits 2025-08-26T20:12:06.8519191Z copying build\lib.win-amd64-cpython-39\torch\_awaits\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_awaits 2025-08-26T20:12:06.8524990Z creating build\bdist.win-amd64\wheel\torch\_C 2025-08-26T20:12:06.8528055Z copying build\lib.win-amd64-cpython-39\torch\_C\_aoti.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8533969Z copying build\lib.win-amd64-cpython-39\torch\_C\_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8539019Z copying build\lib.win-amd64-cpython-39\torch\_C\_cpu.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8545239Z copying build\lib.win-amd64-cpython-39\torch\_C\_cudnn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8554180Z copying build\lib.win-amd64-cpython-39\torch\_C\_cusparselt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8568690Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8573754Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_c10d.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8579942Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8585165Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc_testing.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8590555Z creating build\bdist.win-amd64\wheel\torch\_C\_dynamo 2025-08-26T20:12:06.8593661Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\compiled_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-08-26T20:12:06.8598652Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\eval_frame.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-08-26T20:12:06.8605192Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\guards.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-08-26T20:12:06.8610482Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-08-26T20:12:06.8616231Z creating build\bdist.win-amd64\wheel\torch\_C\_export 2025-08-26T20:12:06.8619475Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\pt2_archive_constants.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-08-26T20:12:06.8624619Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-08-26T20:12:06.8629629Z copying build\lib.win-amd64-cpython-39\torch\_C\_functions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8634678Z copying build\lib.win-amd64-cpython-39\torch\_C\_functorch.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8640233Z copying build\lib.win-amd64-cpython-39\torch\_C\_instruction_counter.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8645019Z copying build\lib.win-amd64-cpython-39\torch\_C\_itt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8649861Z copying build\lib.win-amd64-cpython-39\torch\_C\_jit_tree_views.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8654917Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8659981Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy_ts_backend.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8664807Z copying build\lib.win-amd64-cpython-39\torch\_C\_monitor.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8669764Z copying build\lib.win-amd64-cpython-39\torch\_C\_nn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8685203Z copying build\lib.win-amd64-cpython-39\torch\_C\_nvtx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8690226Z copying build\lib.win-amd64-cpython-39\torch\_C\_onnx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8695767Z copying build\lib.win-amd64-cpython-39\torch\_C\_profiler.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8701153Z copying build\lib.win-amd64-cpython-39\torch\_C\_VariableFunctions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8727211Z copying build\lib.win-amd64-cpython-39\torch\_C\_verbose.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8732605Z copying build\lib.win-amd64-cpython-39\torch\_C\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-08-26T20:12:06.8749619Z copying build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.8755330Z copying build\lib.win-amd64-cpython-39\torch\_classes.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.8765051Z copying build\lib.win-amd64-cpython-39\torch\_compile.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.8770714Z creating build\bdist.win-amd64\wheel\torch\_custom_op 2025-08-26T20:12:06.8773885Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-08-26T20:12:06.8779103Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\impl.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-08-26T20:12:06.8785083Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-08-26T20:12:06.8789376Z copying build\lib.win-amd64-cpython-39\torch\_custom_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:06.8804848Z creating build\bdist.win-amd64\wheel\torch\_C_flatbuffer 2025-08-26T20:12:06.8808460Z copying build\lib.win-amd64-cpython-39\torch\_C_flatbuffer\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C_flatbuffer 2025-08-26T20:12:06.8813428Z creating build\bdist.win-amd64\wheel\torch\_decomp 2025-08-26T20:12:06.8816625Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-08-26T20:12:06.8828743Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_jvp.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-08-26T20:12:06.8834048Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_rng.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-08-26T20:12:06.8849453Z copying build\lib.win-amd64-cpython-39\torch\_decomp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-08-26T20:12:06.8855212Z creating build\bdist.win-amd64\wheel\torch\_dispatch 2025-08-26T20:12:06.8858397Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\python.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-08-26T20:12:06.8864134Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-08-26T20:12:06.8869081Z creating build\bdist.win-amd64\wheel\torch\_dynamo 2025-08-26T20:12:06.8872200Z creating build\bdist.win-amd64\wheel\torch\_dynamo\backends 2025-08-26T20:12:06.8875320Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-08-26T20:12:06.8880605Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-08-26T20:12:06.8886720Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\debugging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-08-26T20:12:06.8892910Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-08-26T20:12:06.8908514Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\inductor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-08-26T20:12:06.8913773Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\onnxrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-08-26T20:12:06.8918840Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\registry.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-08-26T20:12:06.8924125Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-08-26T20:12:06.8942043Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\torchxla.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-08-26T20:12:06.8942992Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tvm.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-08-26T20:12:06.8943908Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-08-26T20:12:06.8945839Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.8951696Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_transformation.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.8958856Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\cache_size.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.8975954Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\callback.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.8982237Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\codegen.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.8988243Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\code_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.8993798Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\compiled_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9006566Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\comptime.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9011957Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\config.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9017811Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\convert_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9024959Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\create_parameter_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9030238Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\current_scope_id.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9036128Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9042217Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\decorators.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9048365Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\device_interface.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9054163Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9059458Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\eval_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9067149Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\exc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9073181Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\external_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9079006Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\funcname_cache.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:06.9085550Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_hints.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.4115358Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_registry.json -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.4122144Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_deduplication.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.4281250Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_region_tracker.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.4287143Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.4293035Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\guards.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.4300855Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.4306140Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\logging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.4311697Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\metrics_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.4317061Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\mutation_guard.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.4322777Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\output_graph.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8428219Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\package.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8434567Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\pgo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8441182Z creating build\bdist.win-amd64\wheel\torch\_dynamo\polyfills 2025-08-26T20:12:07.8444746Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\builtins.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8450384Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\functools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8456215Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\fx.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8461321Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\itertools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8482066Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\loader.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8491794Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\operator.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8497758Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\os.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8503541Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\pytree.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8509309Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\struct.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8514397Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\sys.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8519843Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8525527Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\_collections.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8530622Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-08-26T20:12:07.8535937Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\precompile_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8541843Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\profiler.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8547396Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\replay_record.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8553348Z creating build\bdist.win-amd64\wheel\torch\_dynamo\repro 2025-08-26T20:12:07.8557742Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_aot.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-08-26T20:12:07.8562798Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_dynamo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-08-26T20:12:07.8568615Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\aoti.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-08-26T20:12:07.8575179Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-08-26T20:12:07.8579581Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\resume_execution.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8585338Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\side_effects.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8592294Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\source.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8598091Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\symbolic_convert.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8606110Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\tensor_version_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8654414Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\testing.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8659924Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8665386Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_dont_skip_tracing_functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8670731Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_minifier_common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8676182Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\trace_rules.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8683410Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\types.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8688730Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8696406Z creating build\bdist.win-amd64\wheel\torch\_dynamo\variables 2025-08-26T20:12:07.8699939Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\base.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8705673Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builder.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8713050Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builtin.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8719646Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\constant.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8724866Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\ctx_manager.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8796555Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\dicts.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8802570Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8808474Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8815385Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\higher_order_ops.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8822406Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\iter.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8828511Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lazy.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8833914Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lists.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8839654Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\misc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8846068Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\nn_module.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8852511Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8858284Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\script_object.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8863733Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8869122Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8875386Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8883207Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch_function.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8889305Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\user_defined.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8895955Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-08-26T20:12:07.8901498Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8907003Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-08-26T20:12:07.8912860Z copying build\lib.win-amd64-cpython-39\torch\_environment.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:07.8918615Z creating build\bdist.win-amd64\wheel\torch\_export 2025-08-26T20:12:07.8921753Z copying build\lib.win-amd64-cpython-39\torch\_export\converter.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-08-26T20:12:07.8928359Z creating build\bdist.win-amd64\wheel\torch\_export\db 2025-08-26T20:12:07.8931612Z copying build\lib.win-amd64-cpython-39\torch\_export\db\case.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-08-26T20:12:07.8937944Z creating build\bdist.win-amd64\wheel\torch\_export\db\examples 2025-08-26T20:12:07.8941320Z 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-08-26T20:12:07.8946419Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:07.8951790Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\class_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:07.9060816Z 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-08-26T20:12:07.9066020Z 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-08-26T20:12:07.9071454Z 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-08-26T20:12:07.9788134Z 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-08-26T20:12:07.9793476Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_operands.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:07.9799170Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_predicate.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:07.9808918Z 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-08-26T20:12:07.9814733Z 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-08-26T20:12:07.9819874Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\decorator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:07.9825086Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dictionary.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:07.9830390Z 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-08-26T20:12:07.9835709Z 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-08-26T20:12:07.9840958Z 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-08-26T20:12:07.9846251Z 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-08-26T20:12:07.9855840Z 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-08-26T20:12:07.9932254Z 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-08-26T20:12:07.9937452Z 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-08-26T20:12:07.9943802Z 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-08-26T20:12:07.9949258Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_contains.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:07.9954609Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_unpack.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:07.9960144Z 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-08-26T20:12:07.9966283Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\nested_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:07.9971666Z 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-08-26T20:12:07.9993649Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\optional_input.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:07.9998964Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\pytree_flatten.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:08.0004068Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\scalar_output.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:08.0009326Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\specialized_attribute.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:08.0014371Z 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-08-26T20:12:08.0019842Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\static_if.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:08.0025053Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\tensor_setattr.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:08.0030282Z 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-08-26T20:12:08.0035595Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\unsupported_operator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:08.0053773Z 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-08-26T20:12:08.0059530Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-08-26T20:12:08.0064835Z copying build\lib.win-amd64-cpython-39\torch\_export\db\gen_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-08-26T20:12:08.0069925Z copying build\lib.win-amd64-cpython-39\torch\_export\db\logging.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-08-26T20:12:08.0075436Z copying build\lib.win-amd64-cpython-39\torch\_export\db\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-08-26T20:12:08.0080153Z copying build\lib.win-amd64-cpython-39\torch\_export\error.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-08-26T20:12:08.0085596Z copying build\lib.win-amd64-cpython-39\torch\_export\non_strict_utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-08-26T20:12:08.0092085Z creating build\bdist.win-amd64\wheel\torch\_export\passes 2025-08-26T20:12:08.0109975Z 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-08-26T20:12:08.0115286Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\collect_tracepoints_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-08-26T20:12:08.0120751Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-08-26T20:12:08.0140719Z 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-08-26T20:12:08.0146266Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\insert_custom_op_guards.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-08-26T20:12:08.0151529Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\lift_constants_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-08-26T20:12:08.0157278Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\remove_runtime_assertions.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-08-26T20:12:08.0162653Z 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-08-26T20:12:08.0168501Z 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-08-26T20:12:08.0174147Z 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-08-26T20:12:08.0179573Z 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-08-26T20:12:08.0185114Z 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-08-26T20:12:08.0190724Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\_node_metadata_hook.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-08-26T20:12:08.0199904Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-08-26T20:12:08.0204953Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-08-26T20:12:08.0211253Z creating build\bdist.win-amd64\wheel\torch\_export\pass_infra 2025-08-26T20:12:08.0214545Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\node_metadata.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-08-26T20:12:08.0220041Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\proxy_value.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-08-26T20:12:08.0225482Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-08-26T20:12:08.0230549Z creating build\bdist.win-amd64\wheel\torch\_export\serde 2025-08-26T20:12:08.0234050Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-08-26T20:12:08.0278419Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\export_schema.thrift -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-08-26T20:12:08.0279507Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-08-26T20:12:08.0280456Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.yaml -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-08-26T20:12:08.0345669Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema_check.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-08-26T20:12:08.0351347Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\serialize.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-08-26T20:12:08.0358282Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\union.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-08-26T20:12:08.0363781Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-08-26T20:12:08.0368262Z copying build\lib.win-amd64-cpython-39\torch\_export\tools.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-08-26T20:12:08.0373835Z copying build\lib.win-amd64-cpython-39\torch\_export\utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-08-26T20:12:08.0380737Z copying build\lib.win-amd64-cpython-39\torch\_export\verifier.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-08-26T20:12:08.0386315Z copying build\lib.win-amd64-cpython-39\torch\_export\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-08-26T20:12:08.0391814Z copying build\lib.win-amd64-cpython-39\torch\_export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-08-26T20:12:08.0397610Z creating build\bdist.win-amd64\wheel\torch\_functorch 2025-08-26T20:12:08.0400912Z copying build\lib.win-amd64-cpython-39\torch\_functorch\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0407710Z copying build\lib.win-amd64-cpython-39\torch\_functorch\apis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0413506Z copying build\lib.win-amd64-cpython-39\torch\_functorch\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0419087Z copying build\lib.win-amd64-cpython-39\torch\_functorch\batch_norm_replacement.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0437918Z copying build\lib.win-amd64-cpython-39\torch\_functorch\benchmark_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0443586Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compilers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0449153Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compile_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0455095Z copying build\lib.win-amd64-cpython-39\torch\_functorch\config.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0461272Z copying build\lib.win-amd64-cpython-39\torch\_functorch\deprecated.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0466697Z copying build\lib.win-amd64-cpython-39\torch\_functorch\eager_transforms.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0473251Z copying build\lib.win-amd64-cpython-39\torch\_functorch\functional_call.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0478565Z copying build\lib.win-amd64-cpython-39\torch\_functorch\fx_minifier.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0484814Z copying build\lib.win-amd64-cpython-39\torch\_functorch\make_functional.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0490457Z copying build\lib.win-amd64-cpython-39\torch\_functorch\partitioners.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0497441Z copying build\lib.win-amd64-cpython-39\torch\_functorch\predispatch.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0502816Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pyfunctorch.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0508350Z copying build\lib.win-amd64-cpython-39\torch\_functorch\python_key.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0513374Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pytree_hacks.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0518720Z copying build\lib.win-amd64-cpython-39\torch\_functorch\top_operators_github_usage.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.0524407Z copying build\lib.win-amd64-cpython-39\torch\_functorch\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.1136351Z copying build\lib.win-amd64-cpython-39\torch\_functorch\vmap.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.1142674Z creating build\bdist.win-amd64\wheel\torch\_functorch\_activation_checkpointing 2025-08-26T20:12:08.1146414Z 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-08-26T20:12:08.1152179Z 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-08-26T20:12:08.1157438Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-08-26T20:12:08.1232821Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-08-26T20:12:08.1238256Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-08-26T20:12:08.1243653Z creating build\bdist.win-amd64\wheel\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1248139Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\autograd_cache.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1254190Z 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-08-26T20:12:08.1260051Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\descriptors.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1279546Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\frontend_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1285293Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\functional_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1291309Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\fx_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1296817Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\graph_capture.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1302665Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\graph_capture_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1309191Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\graph_compile.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1315893Z 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-08-26T20:12:08.1321897Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1327518Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1335142Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\schemas.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1341581Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1347076Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1353079Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1359003Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-08-26T20:12:08.1364114Z copying build\lib.win-amd64-cpython-39\torch\_functorch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-08-26T20:12:08.1369450Z copying build\lib.win-amd64-cpython-39\torch\_guards.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:08.1376074Z creating build\bdist.win-amd64\wheel\torch\_higher_order_ops 2025-08-26T20:12:08.1379621Z 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-08-26T20:12:08.1385362Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\associative_scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1391178Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\auto_functionalize.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1411503Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\base_hop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1416932Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\cond.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1422983Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\effects.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1428303Z 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-08-26T20:12:08.1433587Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flat_apply.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1439754Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1445533Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\foreach_map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1451051Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\hints_wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1456673Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\invoke_subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1462427Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1467831Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\out_dtype.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1476884Z 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-08-26T20:12:08.1482801Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1488732Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\schema.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1494003Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\strict_mode.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1499507Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\torchbind.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1505163Z 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-08-26T20:12:08.1511497Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1517258Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\while_loop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1534176Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1540106Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\_invoke_quant.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1545454Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-08-26T20:12:08.1551946Z creating build\bdist.win-amd64\wheel\torch\_inductor 2025-08-26T20:12:08.1555302Z creating build\bdist.win-amd64\wheel\torch\_inductor\analysis 2025-08-26T20:12:08.1558569Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\device_info.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-08-26T20:12:08.1564371Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\profile_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-08-26T20:12:08.1570625Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-08-26T20:12:08.1575105Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analyze_preserves_zero_mask.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.1580846Z copying build\lib.win-amd64-cpython-39\torch\_inductor\aoti_eager.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.1597281Z copying build\lib.win-amd64-cpython-39\torch\_inductor\async_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.1603327Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic 2025-08-26T20:12:08.1606827Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:12:08.1610102Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:12:08.1616127Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:12:08.1622031Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:12:08.1641093Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:12:08.1647600Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:12:08.1653155Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-08-26T20:12:08.1657434Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-08-26T20:12:08.1662907Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-08-26T20:12:08.1679341Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-08-26T20:12:08.1685044Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-08-26T20:12:08.1690571Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-08-26T20:12:08.1694853Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autotune_process.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.1700836Z copying build\lib.win-amd64-cpython-39\torch\_inductor\await_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.1706463Z copying build\lib.win-amd64-cpython-39\torch\_inductor\bounds.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.1711584Z copying build\lib.win-amd64-cpython-39\torch\_inductor\choices.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.1717166Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codecache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.1725390Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen 2025-08-26T20:12:08.1728752Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_hipify_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1734517Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\aoti_runtime 2025-08-26T20:12:08.1737874Z 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-08-26T20:12:08.1743585Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\block_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1749208Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1766831Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1774798Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_bmm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1780393Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_flex_attention_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1786270Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1792864Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1799779Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_micro_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1805729Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1811298Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1817186Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1823207Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1830160Z 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-08-26T20:12:08.1836125Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1842136Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1847763Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpu_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.1853350Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda 2025-08-26T20:12:08.1856719Z 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-08-26T20:12:08.1862456Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_env.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-08-26T20:12:08.1867895Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-08-26T20:12:08.1873619Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-08-26T20:12:08.1890146Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-08-26T20:12:08.1895725Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-08-26T20:12:08.1899166Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports 2025-08-26T20:12:08.1902670Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-08-26T20:12:08.1906185Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cuda.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-08-26T20:12:08.1911667Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cudart.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-08-26T20:12:08.1954198Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-08-26T20:12:08.1955537Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot 2025-08-26T20:12:08.1956898Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot 2025-08-26T20:12:08.1958250Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-08-26T20:12:08.1959663Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\special.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-08-26T20:12:08.1961419Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-08-26T20:12:08.1963152Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports 2025-08-26T20:12:08.1964859Z 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-08-26T20:12:08.1966376Z 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-08-26T20:12:08.1976909Z 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-08-26T20:12:08.1981198Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_presets.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-08-26T20:12:08.1986771Z 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-08-26T20:12:08.1992329Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-08-26T20:12:08.1998174Z 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-08-26T20:12:08.2003930Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-08-26T20:12:08.2011009Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\serialization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-08-26T20:12:08.2017176Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-08-26T20:12:08.2021427Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda_combined_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2038096Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cutedsl 2025-08-26T20:12:08.2042374Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl\cutedsl_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cutedsl 2025-08-26T20:12:08.2048095Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl\cutedsl_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cutedsl 2025-08-26T20:12:08.2053575Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl\cutedsl_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cutedsl 2025-08-26T20:12:08.2059086Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cutedsl 2025-08-26T20:12:08.2075778Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2081380Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\halide.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2087457Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\memory_planning.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2097332Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2100443Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2141138Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\mtia 2025-08-26T20:12:08.2142070Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mtia\device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\mtia 2025-08-26T20:12:08.2143134Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mtia\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\mtia 2025-08-26T20:12:08.2144205Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\multi_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2145211Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\python_wrapper_mtia.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2146060Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\rocm 2025-08-26T20:12:08.2146844Z 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-08-26T20:12:08.2147910Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-08-26T20:12:08.2150397Z 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-08-26T20:12:08.2156427Z 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-08-26T20:12:08.2172620Z 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-08-26T20:12:08.2178778Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\compile_command.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-08-26T20:12:08.2184506Z 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-08-26T20:12:08.2190208Z 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-08-26T20:12:08.2200662Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-08-26T20:12:08.2206263Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-08-26T20:12:08.2211644Z 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-08-26T20:12:08.2217020Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-08-26T20:12:08.2222712Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-08-26T20:12:08.2227210Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\segmented_tree.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2232633Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2250097Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd_kernel_features.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2256321Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2261789Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2269038Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_combo_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2275437Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_split_scan.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2281381Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2327182Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2334214Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper_fxir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2340342Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\xpu 2025-08-26T20:12:08.2343782Z 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-08-26T20:12:08.2349104Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\xpu 2025-08-26T20:12:08.2353602Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-08-26T20:12:08.2358060Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comms.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2365001Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comms_debug.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2370548Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2375843Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2381340Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compiler_bisector.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2396434Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2403389Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_async.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2409218Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_ext.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2415246Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_subproc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2421079Z creating build\bdist.win-amd64\wheel\torch\_inductor\compile_worker 2025-08-26T20:12:08.2429402Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\subproc_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-08-26T20:12:08.2435041Z 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-08-26T20:12:08.2439999Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-08-26T20:12:08.2445597Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-08-26T20:12:08.2460986Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-08-26T20:12:08.2466300Z copying build\lib.win-amd64-cpython-39\torch\_inductor\config.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2473443Z copying build\lib.win-amd64-cpython-39\torch\_inductor\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2479090Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpp_builder.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2485824Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpu_vec_isa.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2491419Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_trees.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2514083Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2514984Z copying build\lib.win-amd64-cpython-39\torch\_inductor\custom_graph_pass.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2515846Z copying build\lib.win-amd64-cpython-39\torch\_inductor\debug.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2517027Z copying build\lib.win-amd64-cpython-39\torch\_inductor\decomposition.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2530180Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dependencies.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2531104Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dtype_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2548237Z copying build\lib.win-amd64-cpython-39\torch\_inductor\exc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2552761Z copying build\lib.win-amd64-cpython-39\torch\_inductor\extern_node_serializer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2558348Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2563574Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2569194Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:08.2575484Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes 2025-08-26T20:12:08.2578728Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\b2b_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2584759Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\binary_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2590566Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\bucketing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2596257Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\ddp_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2613589Z 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-08-26T20:12:08.2618830Z 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-08-26T20:12:08.2624134Z 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-08-26T20:12:08.2629590Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\freezing_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2634741Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2639817Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fuse_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2645993Z 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-08-26T20:12:08.2652445Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\joint_graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2658574Z 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-08-26T20:12:08.2665465Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\misc_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2671580Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\mkldnn_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2677677Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\numeric_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2683114Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pad_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2688915Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\post_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2695293Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pre_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2701222Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\quantization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.2708289Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.7910581Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\replace_random.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:08.7917721Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes\serialized_patterns 2025-08-26T20:12:08.7921437Z 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-08-26T20:12:08.7927233Z 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-08-26T20:12:08.7932706Z 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-08-26T20:12:08.8223505Z 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-08-26T20:12:08.8228972Z 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-08-26T20:12:08.8234541Z 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-08-26T20:12:08.8240104Z 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-08-26T20:12:08.8245820Z 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-08-26T20:12:08.8252442Z 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-08-26T20:12:08.8258083Z 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-08-26T20:12:08.8264787Z 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-08-26T20:12:08.8270991Z 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-08-26T20:12:08.8277247Z 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-08-26T20:12:08.8284480Z 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-08-26T20:12:08.8290860Z 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-08-26T20:12:08.8296823Z 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-08-26T20:12:08.8303541Z 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-08-26T20:12:08.8309007Z 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-08-26T20:12:08.8314548Z 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-08-26T20:12:09.1406234Z 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-08-26T20:12:09.1407721Z 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-08-26T20:12:09.1409060Z 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-08-26T20:12:09.1410392Z 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-08-26T20:12:09.1411827Z 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-08-26T20:12:09.1413253Z 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-08-26T20:12:09.1415937Z 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-08-26T20:12:09.1421772Z 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-08-26T20:12:09.1433236Z 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-08-26T20:12:09.1437691Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\split_cat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:09.1445169Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-08-26T20:12:09.1450160Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1455665Z copying build\lib.win-amd64-cpython-39\torch\_inductor\graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1462438Z copying build\lib.win-amd64-cpython-39\torch\_inductor\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1467657Z copying build\lib.win-amd64-cpython-39\torch\_inductor\index_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1473309Z copying build\lib.win-amd64-cpython-39\torch\_inductor\inductor_prims.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1478930Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1500905Z copying build\lib.win-amd64-cpython-39\torch\_inductor\jagged_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1507182Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel 2025-08-26T20:12:09.1510555Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\bmm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-08-26T20:12:09.1516100Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\conv.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-08-26T20:12:09.1522631Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel\flex 2025-08-26T20:12:09.1525969Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex 2025-08-26T20:12:09.1531503Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex 2025-08-26T20:12:09.1537682Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\flex_cpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex 2025-08-26T20:12:09.1543173Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\flex_decoding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex 2025-08-26T20:12:09.1549181Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel\flex\templates 2025-08-26T20:12:09.1566059Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates\common.py.jinja -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex\templates 2025-08-26T20:12:09.1583781Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates\flex_attention.py.jinja -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex\templates 2025-08-26T20:12:09.1592676Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates\flex_backwards.py.jinja -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex\templates 2025-08-26T20:12:09.1611612Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates\flex_decode.py.jinja -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex\templates 2025-08-26T20:12:09.1617361Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates\utilities.py.jinja -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex\templates 2025-08-26T20:12:09.1622885Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex 2025-08-26T20:12:09.1627690Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-08-26T20:12:09.1633548Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-08-26T20:12:09.1643798Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_grouped.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-08-26T20:12:09.1662079Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_plus_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-08-26T20:12:09.1667432Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-08-26T20:12:09.1672649Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel_inputs.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1678002Z copying build\lib.win-amd64-cpython-39\torch\_inductor\loop_body.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1684357Z copying build\lib.win-amd64-cpython-39\torch\_inductor\lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1692051Z copying build\lib.win-amd64-cpython-39\torch\_inductor\memory.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1697846Z copying build\lib.win-amd64-cpython-39\torch\_inductor\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1703148Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1709315Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1715723Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mock_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1721133Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ops_handler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1727335Z copying build\lib.win-amd64-cpython-39\torch\_inductor\optimize_indexing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1757019Z copying build\lib.win-amd64-cpython-39\torch\_inductor\output_code.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1763341Z creating build\bdist.win-amd64\wheel\torch\_inductor\package 2025-08-26T20:12:09.1766687Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\build_package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-08-26T20:12:09.1771785Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-08-26T20:12:09.1777327Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-08-26T20:12:09.1782373Z copying build\lib.win-amd64-cpython-39\torch\_inductor\pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1788921Z copying build\lib.win-amd64-cpython-39\torch\_inductor\quantized_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1794344Z copying build\lib.win-amd64-cpython-39\torch\_inductor\remote_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1800051Z copying build\lib.win-amd64-cpython-39\torch\_inductor\remote_gemm_autotune_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1805487Z creating build\bdist.win-amd64\wheel\torch\_inductor\runtime 2025-08-26T20:12:09.1809804Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\autotune_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1816128Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\benchmarking.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1821571Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\cache_dir_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1827229Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\compile_tasks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1845458Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\coordinate_descent_tuner.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1850933Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1856596Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\halide_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1861880Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\hints.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1867067Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1880789Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\static_cuda_launcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1881866Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_compat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1924429Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1925559Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1926546Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-08-26T20:12:09.1927459Z copying build\lib.win-amd64-cpython-39\torch\_inductor\scheduler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1928303Z copying build\lib.win-amd64-cpython-39\torch\_inductor\script.ld -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1930529Z copying build\lib.win-amd64-cpython-39\torch\_inductor\select_algorithm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1931457Z copying build\lib.win-amd64-cpython-39\torch\_inductor\shape_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1948349Z copying build\lib.win-amd64-cpython-39\torch\_inductor\sizevars.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1953246Z copying build\lib.win-amd64-cpython-39\torch\_inductor\standalone_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1959659Z copying build\lib.win-amd64-cpython-39\torch\_inductor\subgraph_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1964183Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1970807Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_registry.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1976430Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1983559Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_operators.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1988848Z copying build\lib.win-amd64-cpython-39\torch\_inductor\tiling_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.1995485Z copying build\lib.win-amd64-cpython-39\torch\_inductor\triton_bundler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.2001467Z copying build\lib.win-amd64-cpython-39\torch\_inductor\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.2020921Z copying build\lib.win-amd64-cpython-39\torch\_inductor\virtualized.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.2026482Z copying build\lib.win-amd64-cpython-39\torch\_inductor\wrapper_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.2032316Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__autotune_main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.2037951Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-08-26T20:12:09.2043346Z copying build\lib.win-amd64-cpython-39\torch\_jit_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2050648Z creating build\bdist.win-amd64\wheel\torch\_lazy 2025-08-26T20:12:09.2065637Z copying build\lib.win-amd64-cpython-39\torch\_lazy\closure.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-08-26T20:12:09.2071359Z copying build\lib.win-amd64-cpython-39\torch\_lazy\computation.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-08-26T20:12:09.2076539Z copying build\lib.win-amd64-cpython-39\torch\_lazy\config.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-08-26T20:12:09.2081387Z copying build\lib.win-amd64-cpython-39\torch\_lazy\debug.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-08-26T20:12:09.2087148Z copying build\lib.win-amd64-cpython-39\torch\_lazy\device_context.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-08-26T20:12:09.2103865Z copying build\lib.win-amd64-cpython-39\torch\_lazy\extract_compiled_graph.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-08-26T20:12:09.2109159Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ir_cache.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-08-26T20:12:09.2118310Z copying build\lib.win-amd64-cpython-39\torch\_lazy\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-08-26T20:12:09.2123314Z copying build\lib.win-amd64-cpython-39\torch\_lazy\tensor_factory_functions.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-08-26T20:12:09.2129034Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ts_backend.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-08-26T20:12:09.2134513Z copying build\lib.win-amd64-cpython-39\torch\_lazy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-08-26T20:12:09.2144212Z creating build\bdist.win-amd64\wheel\torch\_library 2025-08-26T20:12:09.2147385Z copying build\lib.win-amd64-cpython-39\torch\_library\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-08-26T20:12:09.2152634Z copying build\lib.win-amd64-cpython-39\torch\_library\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-08-26T20:12:09.2158656Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_class_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-08-26T20:12:09.2163896Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_impl.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-08-26T20:12:09.2217704Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_profile.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-08-26T20:12:09.2223319Z copying build\lib.win-amd64-cpython-39\torch\_library\infer_schema.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-08-26T20:12:09.2228965Z copying build\lib.win-amd64-cpython-39\torch\_library\simple_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-08-26T20:12:09.2234548Z copying build\lib.win-amd64-cpython-39\torch\_library\triton.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-08-26T20:12:09.2239793Z copying build\lib.win-amd64-cpython-39\torch\_library\utils.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-08-26T20:12:09.2245563Z copying build\lib.win-amd64-cpython-39\torch\_library\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-08-26T20:12:09.2251072Z copying build\lib.win-amd64-cpython-39\torch\_linalg_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2255964Z copying build\lib.win-amd64-cpython-39\torch\_lobpcg.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2266735Z creating build\bdist.win-amd64\wheel\torch\_logging 2025-08-26T20:12:09.2269790Z copying build\lib.win-amd64-cpython-39\torch\_logging\scribe.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-08-26T20:12:09.2275239Z copying build\lib.win-amd64-cpython-39\torch\_logging\structured.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-08-26T20:12:09.2280572Z copying build\lib.win-amd64-cpython-39\torch\_logging\_internal.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-08-26T20:12:09.2287044Z copying build\lib.win-amd64-cpython-39\torch\_logging\_registrations.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-08-26T20:12:09.2304227Z copying build\lib.win-amd64-cpython-39\torch\_logging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-08-26T20:12:09.2309818Z copying build\lib.win-amd64-cpython-39\torch\_lowrank.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2315795Z copying build\lib.win-amd64-cpython-39\torch\_meta_registrations.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2323745Z copying build\lib.win-amd64-cpython-39\torch\_namedtensor_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2329597Z creating build\bdist.win-amd64\wheel\torch\_numpy 2025-08-26T20:12:09.2332703Z copying build\lib.win-amd64-cpython-39\torch\_numpy\fft.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2337964Z copying build\lib.win-amd64-cpython-39\torch\_numpy\linalg.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2343201Z copying build\lib.win-amd64-cpython-39\torch\_numpy\random.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2348736Z creating build\bdist.win-amd64\wheel\torch\_numpy\testing 2025-08-26T20:12:09.2351863Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\utils.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-08-26T20:12:09.2358231Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-08-26T20:12:09.2363435Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_binary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2369286Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_casting_dicts.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2386797Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2392033Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2397302Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2402892Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2409058Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_getlimits.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2414556Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ndarray.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2420257Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_normalizations.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2426007Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_reductions_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2431248Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ufuncs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2436871Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_unary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2442232Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_util.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2447470Z copying build\lib.win-amd64-cpython-39\torch\_numpy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-08-26T20:12:09.2452712Z copying build\lib.win-amd64-cpython-39\torch\_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2459224Z creating build\bdist.win-amd64\wheel\torch\_prims 2025-08-26T20:12:09.2462378Z copying build\lib.win-amd64-cpython-39\torch\_prims\context.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-08-26T20:12:09.2467601Z copying build\lib.win-amd64-cpython-39\torch\_prims\debug_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-08-26T20:12:09.2472994Z copying build\lib.win-amd64-cpython-39\torch\_prims\executor.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-08-26T20:12:09.2478079Z copying build\lib.win-amd64-cpython-39\torch\_prims\rng_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-08-26T20:12:09.2483682Z copying build\lib.win-amd64-cpython-39\torch\_prims\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-08-26T20:12:09.2502459Z creating build\bdist.win-amd64\wheel\torch\_prims_common 2025-08-26T20:12:09.2505480Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-08-26T20:12:09.2511417Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-08-26T20:12:09.2517537Z copying build\lib.win-amd64-cpython-39\torch\_python_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2523038Z creating build\bdist.win-amd64\wheel\torch\_refs 2025-08-26T20:12:09.2526533Z copying build\lib.win-amd64-cpython-39\torch\_refs\fft.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-08-26T20:12:09.2537213Z creating build\bdist.win-amd64\wheel\torch\_refs\linalg 2025-08-26T20:12:09.2540382Z copying build\lib.win-amd64-cpython-39\torch\_refs\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\linalg 2025-08-26T20:12:09.2545851Z creating build\bdist.win-amd64\wheel\torch\_refs\nn 2025-08-26T20:12:09.2549262Z creating build\bdist.win-amd64\wheel\torch\_refs\nn\functional 2025-08-26T20:12:09.2552871Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\functional\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn\functional 2025-08-26T20:12:09.2559084Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn 2025-08-26T20:12:09.2569456Z creating build\bdist.win-amd64\wheel\torch\_refs\special 2025-08-26T20:12:09.2572630Z copying build\lib.win-amd64-cpython-39\torch\_refs\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\special 2025-08-26T20:12:09.2578462Z copying build\lib.win-amd64-cpython-39\torch\_refs\_conversions.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-08-26T20:12:09.2583659Z copying build\lib.win-amd64-cpython-39\torch\_refs\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-08-26T20:12:09.2602307Z copying build\lib.win-amd64-cpython-39\torch\_size_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2630098Z copying build\lib.win-amd64-cpython-39\torch\_sources.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2636061Z copying build\lib.win-amd64-cpython-39\torch\_storage_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2642308Z copying build\lib.win-amd64-cpython-39\torch\_streambase.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2648921Z creating build\bdist.win-amd64\wheel\torch\_strobelight 2025-08-26T20:12:09.2653025Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-08-26T20:12:09.2658673Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\compile_time_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-08-26T20:12:09.2723637Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-08-26T20:12:09.2731785Z creating build\bdist.win-amd64\wheel\torch\_subclasses 2025-08-26T20:12:09.2735038Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_impls.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-08-26T20:12:09.2741317Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-08-26T20:12:09.2753557Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-08-26T20:12:09.2769783Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\functional_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-08-26T20:12:09.2775819Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\meta_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-08-26T20:12:09.2782481Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\schema_check_mode.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-08-26T20:12:09.2788368Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\_fake_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-08-26T20:12:09.2793869Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-08-26T20:12:09.2798790Z copying build\lib.win-amd64-cpython-39\torch\_tensor.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2805163Z copying build\lib.win-amd64-cpython-39\torch\_tensor_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2812624Z copying build\lib.win-amd64-cpython-39\torch\_tensor_str.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2819187Z copying build\lib.win-amd64-cpython-39\torch\_thread_safe_fork.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2823354Z copying build\lib.win-amd64-cpython-39\torch\_torch_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2833143Z copying build\lib.win-amd64-cpython-39\torch\_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2850184Z copying build\lib.win-amd64-cpython-39\torch\_utils_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2855776Z creating build\bdist.win-amd64\wheel\torch\_vendor 2025-08-26T20:12:09.2859176Z creating build\bdist.win-amd64\wheel\torch\_vendor\packaging 2025-08-26T20:12:09.2862226Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\version.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-08-26T20:12:09.2867931Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\_structures.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-08-26T20:12:09.2873102Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-08-26T20:12:09.2878094Z copying build\lib.win-amd64-cpython-39\torch\_vendor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor 2025-08-26T20:12:09.2882492Z copying build\lib.win-amd64-cpython-39\torch\_VF.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2887757Z copying build\lib.win-amd64-cpython-39\torch\_VF.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2904736Z copying build\lib.win-amd64-cpython-39\torch\_vmap_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2910758Z copying build\lib.win-amd64-cpython-39\torch\_weights_only_unpickler.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2917206Z copying build\lib.win-amd64-cpython-39\torch\__config__.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2922120Z copying build\lib.win-amd64-cpython-39\torch\__future__.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2931839Z copying build\lib.win-amd64-cpython-39\torch\__init__.py -> build\bdist.win-amd64\wheel\.\torch 2025-08-26T20:12:09.2949747Z creating build\bdist.win-amd64\wheel\torchgen 2025-08-26T20:12:09.2953232Z creating build\bdist.win-amd64\wheel\torchgen\aoti 2025-08-26T20:12:09.2956485Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\fallback_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-08-26T20:12:09.2962137Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-08-26T20:12:09.2966816Z creating build\bdist.win-amd64\wheel\torchgen\api 2025-08-26T20:12:09.2970021Z copying build\lib.win-amd64-cpython-39\torchgen\api\autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.2976134Z copying build\lib.win-amd64-cpython-39\torchgen\api\cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.2982134Z copying build\lib.win-amd64-cpython-39\torchgen\api\dispatcher.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.2987613Z copying build\lib.win-amd64-cpython-39\torchgen\api\functionalization.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.2992940Z copying build\lib.win-amd64-cpython-39\torchgen\api\lazy.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.3009899Z copying build\lib.win-amd64-cpython-39\torchgen\api\meta.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.3015133Z copying build\lib.win-amd64-cpython-39\torchgen\api\native.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.3020453Z copying build\lib.win-amd64-cpython-39\torchgen\api\python.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.3026779Z copying build\lib.win-amd64-cpython-39\torchgen\api\structured.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.3032253Z copying build\lib.win-amd64-cpython-39\torchgen\api\translate.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.3038286Z creating build\bdist.win-amd64\wheel\torchgen\api\types 2025-08-26T20:12:09.3041582Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-08-26T20:12:09.3047991Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-08-26T20:12:09.3053213Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types_base.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-08-26T20:12:09.3058880Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-08-26T20:12:09.3063379Z copying build\lib.win-amd64-cpython-39\torchgen\api\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.3073728Z copying build\lib.win-amd64-cpython-39\torchgen\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.3093110Z copying build\lib.win-amd64-cpython-39\torchgen\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-08-26T20:12:09.3093906Z copying build\lib.win-amd64-cpython-39\torchgen\code_template.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3094688Z copying build\lib.win-amd64-cpython-39\torchgen\context.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3097095Z creating build\bdist.win-amd64\wheel\torchgen\dest 2025-08-26T20:12:09.3100840Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ir.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-08-26T20:12:09.3107077Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ts_lowering.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-08-26T20:12:09.3112945Z copying build\lib.win-amd64-cpython-39\torchgen\dest\native_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-08-26T20:12:09.3118511Z copying build\lib.win-amd64-cpython-39\torchgen\dest\register_dispatch_key.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-08-26T20:12:09.3139546Z copying build\lib.win-amd64-cpython-39\torchgen\dest\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-08-26T20:12:09.3145645Z copying build\lib.win-amd64-cpython-39\torchgen\dest\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-08-26T20:12:09.3151045Z copying build\lib.win-amd64-cpython-39\torchgen\gen.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3168711Z copying build\lib.win-amd64-cpython-39\torchgen\gen_aoti_c_shim.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3175207Z copying build\lib.win-amd64-cpython-39\torchgen\gen_backend_stubs.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3181133Z copying build\lib.win-amd64-cpython-39\torchgen\gen_functionalization_type.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3187320Z copying build\lib.win-amd64-cpython-39\torchgen\gen_lazy_tensor.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3193510Z copying build\lib.win-amd64-cpython-39\torchgen\gen_schema_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3199412Z copying build\lib.win-amd64-cpython-39\torchgen\gen_vmap_plumbing.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3204538Z copying build\lib.win-amd64-cpython-39\torchgen\local.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3209681Z copying build\lib.win-amd64-cpython-39\torchgen\model.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3216554Z copying build\lib.win-amd64-cpython-39\torchgen\native_function_generation.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3223640Z creating build\bdist.win-amd64\wheel\torchgen\operator_versions 2025-08-26T20:12:09.3227030Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-08-26T20:12:09.3232687Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-08-26T20:12:09.3238024Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-08-26T20:12:09.3258478Z creating build\bdist.win-amd64\wheel\torchgen\packaged 2025-08-26T20:12:09.3261799Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen 2025-08-26T20:12:09.3264909Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\native 2025-08-26T20:12:09.3268168Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\native_functions.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-08-26T20:12:09.3279408Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\tags.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-08-26T20:12:09.3285728Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3289109Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3294577Z 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-08-26T20:12:09.3299956Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3316519Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3322035Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3327656Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3333841Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3338550Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3343558Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\enum_tag.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3348459Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Function.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3353521Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3359176Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3364739Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3370654Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3375918Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3381035Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3386416Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3391716Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3397567Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3413469Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3418791Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operator.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3423693Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3428864Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3434442Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3439922Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3445636Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3451478Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3457043Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3463479Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3479717Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3485306Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3490744Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3495884Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorBody.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3501963Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3507767Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3512675Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3517990Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3527612Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3543679Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-08-26T20:12:09.3549605Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd 2025-08-26T20:12:09.3553343Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\BUILD.bazel -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3558463Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\build.bzl -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3563462Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\context.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3568888Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\deprecated.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3574652Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\derivatives.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3594049Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3600091Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3605842Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3612126Z 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-08-26T20:12:09.3618428Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_python_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3624458Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_trace_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3630549Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_factories.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3635972Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3643129Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_view_funcs.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3648787Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\load_derivatives.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3655291Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\README.md -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3661424Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3664916Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3670317Z 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-08-26T20:12:09.3675310Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3691258Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3696629Z 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-08-26T20:12:09.3702377Z 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-08-26T20:12:09.3707821Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3713165Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3718359Z 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-08-26T20:12:09.3723953Z 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-08-26T20:12:09.3729528Z 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-08-26T20:12:09.3734883Z 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-08-26T20:12:09.3740522Z 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-08-26T20:12:09.3745923Z 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-08-26T20:12:09.3751344Z 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-08-26T20:12:09.3756771Z 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-08-26T20:12:09.3762310Z 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-08-26T20:12:09.3779401Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\TraceType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3784734Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3789994Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3795581Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\variable_factories.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3801105Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3806224Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-08-26T20:12:09.3812383Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-08-26T20:12:09.3817051Z creating build\bdist.win-amd64\wheel\torchgen\selective_build 2025-08-26T20:12:09.3820531Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\operator.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-08-26T20:12:09.3825837Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\selector.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-08-26T20:12:09.3831076Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-08-26T20:12:09.3835567Z creating build\bdist.win-amd64\wheel\torchgen\static_runtime 2025-08-26T20:12:09.3838902Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\config.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-08-26T20:12:09.3844638Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\generator.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-08-26T20:12:09.3850504Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\gen_static_runtime_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-08-26T20:12:09.3866826Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-08-26T20:12:09.3870906Z copying build\lib.win-amd64-cpython-39\torchgen\utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3876594Z copying build\lib.win-amd64-cpython-39\torchgen\yaml_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3882027Z copying build\lib.win-amd64-cpython-39\torchgen\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-08-26T20:12:09.3893688Z running install_egg_info 2025-08-26T20:12:09.3976469Z running egg_info 2025-08-26T20:12:09.4055964Z creating torch.egg-info 2025-08-26T20:12:09.4058789Z writing torch.egg-info\PKG-INFO 2025-08-26T20:12:09.4098296Z writing dependency_links to torch.egg-info\dependency_links.txt 2025-08-26T20:12:09.4102802Z writing entry points to torch.egg-info\entry_points.txt 2025-08-26T20:12:09.4121923Z writing requirements to torch.egg-info\requires.txt 2025-08-26T20:12:09.4126151Z writing top-level names to torch.egg-info\top_level.txt 2025-08-26T20:12:09.4129618Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-08-26T20:12:10.6668139Z reading manifest file 'torch.egg-info\SOURCES.txt' 2025-08-26T20:12:10.7681928Z reading manifest template 'MANIFEST.in' 2025-08-26T20:12:10.7709969Z warning: no files found matching 'BUILD' 2025-08-26T20:12:10.7714470Z warning: no files found matching '*.BUILD' 2025-08-26T20:12:10.7721242Z warning: no files found matching 'BUCK' 2025-08-26T20:12:10.7745958Z warning: no files found matching '[Mm]akefile.*' 2025-08-26T20:12:10.7755503Z warning: no files found matching '*.[Dd]ockerfile' 2025-08-26T20:12:10.7759949Z warning: no files found matching '[Dd]ockerfile.*' 2025-08-26T20:12:20.0092891Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-08-26T20:12:20.1348623Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-08-26T20:12:20.2605449Z warning: no previously-included files matching '*.so' found anywhere in distribution 2025-08-26T20:12:20.3855494Z warning: no previously-included files matching '*.a' found anywhere in distribution 2025-08-26T20:12:20.5107963Z warning: no previously-included files matching '*.dylib' found anywhere in distribution 2025-08-26T20:12:21.0538843Z no previously-included directories found matching '*\.git' 2025-08-26T20:12:21.2744104Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-08-26T20:12:21.3992780Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-08-26T20:12:21.3993360Z adding license file 'LICENSE' 2025-08-26T20:12:21.3993960Z adding license file 'NOTICE' 2025-08-26T20:12:26.9251368Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-08-26T20:12:26.9728800Z Copying torch.egg-info to build\bdist.win-amd64\wheel\.\torch-2.9.0a0+git262640f-py3.9.egg-info 2025-08-26T20:12:26.9841166Z running install_scripts 2025-08-26T20:12:26.9862536Z 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-08-26T20:12:26.9863459Z if get_flag("Py_DEBUG", hasattr(sys, "gettotalrefcount"), warn=(impl == "cp")): 2025-08-26T20:12:26.9945311Z creating build\bdist.win-amd64\wheel\torch-2.9.0a0+git262640f.dist-info\WHEEL 2025-08-26T20:12:26.9959098Z creating 'dist\torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl' and adding 'build\bdist.win-amd64\wheel' to it 2025-08-26T20:12:27.0197774Z adding 'functorch/_C.cp39-win_amd64.pyd' 2025-08-26T20:12:27.0328429Z adding 'functorch/__init__.py' 2025-08-26T20:12:27.0332023Z adding 'functorch/_src/__init__.py' 2025-08-26T20:12:27.0336394Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-08-26T20:12:27.0339508Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-08-26T20:12:27.0343999Z adding 'functorch/_src/make_functional/__init__.py' 2025-08-26T20:12:27.0347365Z adding 'functorch/_src/vmap/__init__.py' 2025-08-26T20:12:27.0351080Z adding 'functorch/compile/__init__.py' 2025-08-26T20:12:27.0355675Z adding 'functorch/dim/__init__.py' 2025-08-26T20:12:27.0359075Z adding 'functorch/dim/magic_trace.py' 2025-08-26T20:12:27.0363208Z adding 'functorch/dim/op_properties.py' 2025-08-26T20:12:27.0366471Z adding 'functorch/dim/tree_map.py' 2025-08-26T20:12:27.0369643Z adding 'functorch/dim/wrap_type.py' 2025-08-26T20:12:27.0373211Z adding 'functorch/einops/__init__.py' 2025-08-26T20:12:27.0378915Z adding 'functorch/einops/_parsing.py' 2025-08-26T20:12:27.0384413Z adding 'functorch/einops/rearrange.py' 2025-08-26T20:12:27.0388333Z adding 'functorch/experimental/__init__.py' 2025-08-26T20:12:27.0391193Z adding 'functorch/experimental/control_flow.py' 2025-08-26T20:12:27.0393862Z adding 'functorch/experimental/ops.py' 2025-08-26T20:12:27.0402625Z adding 'torch/_C.cp39-win_amd64.pyd' 2025-08-26T20:12:27.0406413Z adding 'torch/_VF.py' 2025-08-26T20:12:27.0637196Z adding 'torch/_VF.pyi' 2025-08-26T20:12:27.0665911Z adding 'torch/__config__.py' 2025-08-26T20:12:27.0669170Z adding 'torch/__future__.py' 2025-08-26T20:12:27.0707127Z adding 'torch/__init__.py' 2025-08-26T20:12:27.0717461Z adding 'torch/_appdirs.py' 2025-08-26T20:12:27.0721415Z adding 'torch/_classes.py' 2025-08-26T20:12:27.0724788Z adding 'torch/_compile.py' 2025-08-26T20:12:27.0730631Z adding 'torch/_custom_ops.py' 2025-08-26T20:12:27.0733875Z adding 'torch/_environment.py' 2025-08-26T20:12:27.0749402Z adding 'torch/_guards.py' 2025-08-26T20:12:27.0772517Z adding 'torch/_jit_internal.py' 2025-08-26T20:12:27.0777789Z adding 'torch/_linalg_utils.py' 2025-08-26T20:12:27.0793561Z adding 'torch/_lobpcg.py' 2025-08-26T20:12:27.0800403Z adding 'torch/_lowrank.py' 2025-08-26T20:12:27.0879843Z adding 'torch/_meta_registrations.py' 2025-08-26T20:12:27.0889816Z adding 'torch/_namedtensor_internals.py' 2025-08-26T20:12:27.0912201Z adding 'torch/_ops.py' 2025-08-26T20:12:27.0918531Z adding 'torch/_python_dispatcher.py' 2025-08-26T20:12:27.0921615Z adding 'torch/_size_docs.py' 2025-08-26T20:12:27.0925926Z adding 'torch/_sources.py' 2025-08-26T20:12:27.0929420Z adding 'torch/_storage_docs.py' 2025-08-26T20:12:27.0932371Z adding 'torch/_streambase.py' 2025-08-26T20:12:27.0957442Z adding 'torch/_tensor.py' 2025-08-26T20:12:27.1002901Z adding 'torch/_tensor_docs.py' 2025-08-26T20:12:27.1016457Z adding 'torch/_tensor_str.py' 2025-08-26T20:12:27.1020030Z adding 'torch/_thread_safe_fork.py' 2025-08-26T20:12:27.1158786Z adding 'torch/_torch_docs.py' 2025-08-26T20:12:27.1184687Z adding 'torch/_utils.py' 2025-08-26T20:12:27.1192175Z adding 'torch/_utils_internal.py' 2025-08-26T20:12:27.1197807Z adding 'torch/_vmap_internals.py' 2025-08-26T20:12:27.1206976Z adding 'torch/_weights_only_unpickler.py' 2025-08-26T20:12:27.1240172Z adding 'torch/functional.py' 2025-08-26T20:12:27.1255145Z adding 'torch/hub.py' 2025-08-26T20:12:27.1279312Z adding 'torch/library.py' 2025-08-26T20:12:27.1307379Z adding 'torch/overrides.py' 2025-08-26T20:12:27.1312667Z adding 'torch/py.typed' 2025-08-26T20:12:27.1317398Z adding 'torch/quasirandom.py' 2025-08-26T20:12:27.1322165Z adding 'torch/random.py' 2025-08-26T20:12:27.1325669Z adding 'torch/return_types.py' 2025-08-26T20:12:27.1329981Z adding 'torch/return_types.pyi' 2025-08-26T20:12:27.1359671Z adding 'torch/serialization.py' 2025-08-26T20:12:27.1376723Z adding 'torch/storage.py' 2025-08-26T20:12:27.1381470Z adding 'torch/torch_version.py' 2025-08-26T20:12:27.1385233Z adding 'torch/types.py' 2025-08-26T20:12:27.1388183Z adding 'torch/version.py' 2025-08-26T20:12:27.1616887Z adding 'torch/_C/_VariableFunctions.pyi' 2025-08-26T20:12:27.1738535Z adding 'torch/_C/__init__.pyi' 2025-08-26T20:12:27.1751154Z adding 'torch/_C/_aoti.pyi' 2025-08-26T20:12:27.1755273Z adding 'torch/_C/_autograd.pyi' 2025-08-26T20:12:27.1758234Z adding 'torch/_C/_cpu.pyi' 2025-08-26T20:12:27.1761127Z adding 'torch/_C/_cudnn.pyi' 2025-08-26T20:12:27.1763872Z adding 'torch/_C/_cusparselt.pyi' 2025-08-26T20:12:27.1767229Z adding 'torch/_C/_distributed_autograd.pyi' 2025-08-26T20:12:27.1775706Z adding 'torch/_C/_distributed_c10d.pyi' 2025-08-26T20:12:27.1780247Z adding 'torch/_C/_distributed_rpc.pyi' 2025-08-26T20:12:27.1783595Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-08-26T20:12:27.1786504Z adding 'torch/_C/_functions.pyi' 2025-08-26T20:12:27.1789928Z adding 'torch/_C/_functorch.pyi' 2025-08-26T20:12:27.1792784Z adding 'torch/_C/_instruction_counter.pyi' 2025-08-26T20:12:27.1795950Z adding 'torch/_C/_itt.pyi' 2025-08-26T20:12:27.1799478Z adding 'torch/_C/_jit_tree_views.pyi' 2025-08-26T20:12:27.1802654Z adding 'torch/_C/_lazy.pyi' 2025-08-26T20:12:27.1805567Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-08-26T20:12:27.1808703Z adding 'torch/_C/_monitor.pyi' 2025-08-26T20:12:27.1812596Z adding 'torch/_C/_nn.pyi' 2025-08-26T20:12:27.1815735Z adding 'torch/_C/_nvtx.pyi' 2025-08-26T20:12:27.1818812Z adding 'torch/_C/_onnx.pyi' 2025-08-26T20:12:27.1822836Z adding 'torch/_C/_profiler.pyi' 2025-08-26T20:12:27.1825822Z adding 'torch/_C/_verbose.pyi' 2025-08-26T20:12:27.1829643Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-08-26T20:12:27.1832510Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-08-26T20:12:27.1835916Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-08-26T20:12:27.1840720Z adding 'torch/_C/_dynamo/guards.pyi' 2025-08-26T20:12:27.1844703Z adding 'torch/_C/_export/__init__.pyi' 2025-08-26T20:12:27.1848224Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-08-26T20:12:27.1856040Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-08-26T20:12:27.1856398Z adding 'torch/_awaits/__init__.py' 2025-08-26T20:12:27.1859861Z adding 'torch/_custom_op/__init__.py' 2025-08-26T20:12:27.1899500Z adding 'torch/_custom_op/autograd.py' 2025-08-26T20:12:27.1899830Z adding 'torch/_custom_op/impl.py' 2025-08-26T20:12:27.1900097Z adding 'torch/_decomp/__init__.py' 2025-08-26T20:12:27.1946569Z adding 'torch/_decomp/decompositions.py' 2025-08-26T20:12:27.1956239Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-08-26T20:12:27.1961534Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-08-26T20:12:27.1965410Z adding 'torch/_dispatch/__init__.py' 2025-08-26T20:12:27.1970002Z adding 'torch/_dispatch/python.py' 2025-08-26T20:12:27.1975928Z adding 'torch/_dynamo/__init__.py' 2025-08-26T20:12:27.1981378Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-08-26T20:12:27.1986675Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-08-26T20:12:27.2010641Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-08-26T20:12:27.2017829Z adding 'torch/_dynamo/cache_size.py' 2025-08-26T20:12:27.2022112Z adding 'torch/_dynamo/callback.py' 2025-08-26T20:12:27.2025568Z adding 'torch/_dynamo/code_context.py' 2025-08-26T20:12:27.2035781Z adding 'torch/_dynamo/codegen.py' 2025-08-26T20:12:27.2058352Z adding 'torch/_dynamo/compiled_autograd.py' 2025-08-26T20:12:27.2066286Z adding 'torch/_dynamo/comptime.py' 2025-08-26T20:12:27.2080774Z adding 'torch/_dynamo/config.py' 2025-08-26T20:12:27.2107280Z adding 'torch/_dynamo/convert_frame.py' 2025-08-26T20:12:27.2112501Z adding 'torch/_dynamo/create_parameter_op.py' 2025-08-26T20:12:27.2115810Z adding 'torch/_dynamo/current_scope_id.py' 2025-08-26T20:12:27.2129076Z adding 'torch/_dynamo/debug_utils.py' 2025-08-26T20:12:27.2143451Z adding 'torch/_dynamo/decorators.py' 2025-08-26T20:12:27.2151044Z adding 'torch/_dynamo/device_interface.py' 2025-08-26T20:12:27.2154929Z adding 'torch/_dynamo/distributed.py' 2025-08-26T20:12:27.2187181Z adding 'torch/_dynamo/eval_frame.py' 2025-08-26T20:12:27.2199369Z adding 'torch/_dynamo/exc.py' 2025-08-26T20:12:27.2204627Z adding 'torch/_dynamo/external_utils.py' 2025-08-26T20:12:27.2208596Z adding 'torch/_dynamo/funcname_cache.py' 2025-08-26T20:12:27.2211792Z adding 'torch/_dynamo/graph_break_hints.py' 2025-08-26T20:12:27.2237923Z adding 'torch/_dynamo/graph_break_registry.json' 2025-08-26T20:12:27.2250557Z adding 'torch/_dynamo/graph_deduplication.py' 2025-08-26T20:12:27.2259391Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-08-26T20:12:27.2263772Z adding 'torch/_dynamo/graph_utils.py' 2025-08-26T20:12:27.2325113Z adding 'torch/_dynamo/guards.py' 2025-08-26T20:12:27.2332288Z adding 'torch/_dynamo/hooks.py' 2025-08-26T20:12:27.2335946Z adding 'torch/_dynamo/logging.py' 2025-08-26T20:12:27.2340738Z adding 'torch/_dynamo/metrics_context.py' 2025-08-26T20:12:27.2345324Z adding 'torch/_dynamo/mutation_guard.py' 2025-08-26T20:12:27.2399833Z adding 'torch/_dynamo/output_graph.py' 2025-08-26T20:12:27.2415368Z adding 'torch/_dynamo/package.py' 2025-08-26T20:12:27.2429277Z adding 'torch/_dynamo/pgo.py' 2025-08-26T20:12:27.2435265Z adding 'torch/_dynamo/precompile_context.py' 2025-08-26T20:12:27.2439841Z adding 'torch/_dynamo/profiler.py' 2025-08-26T20:12:27.2443806Z adding 'torch/_dynamo/replay_record.py' 2025-08-26T20:12:27.2453526Z adding 'torch/_dynamo/resume_execution.py' 2025-08-26T20:12:27.2471060Z adding 'torch/_dynamo/side_effects.py' 2025-08-26T20:12:27.2482186Z adding 'torch/_dynamo/source.py' 2025-08-26T20:12:27.2545519Z adding 'torch/_dynamo/symbolic_convert.py' 2025-08-26T20:12:27.2552368Z adding 'torch/_dynamo/tensor_version_op.py' 2025-08-26T20:12:27.2557166Z adding 'torch/_dynamo/test_case.py' 2025-08-26T20:12:27.2560524Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-08-26T20:12:27.2566690Z adding 'torch/_dynamo/test_minifier_common.py' 2025-08-26T20:12:27.2574358Z adding 'torch/_dynamo/testing.py' 2025-08-26T20:12:27.2613374Z adding 'torch/_dynamo/trace_rules.py' 2025-08-26T20:12:27.2620924Z adding 'torch/_dynamo/types.py' 2025-08-26T20:12:27.2684760Z adding 'torch/_dynamo/utils.py' 2025-08-26T20:12:27.2692495Z adding 'torch/_dynamo/backends/__init__.py' 2025-08-26T20:12:27.2697065Z adding 'torch/_dynamo/backends/common.py' 2025-08-26T20:12:27.2702964Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-08-26T20:12:27.2710724Z adding 'torch/_dynamo/backends/debugging.py' 2025-08-26T20:12:27.2723315Z adding 'torch/_dynamo/backends/distributed.py' 2025-08-26T20:12:27.2727622Z adding 'torch/_dynamo/backends/inductor.py' 2025-08-26T20:12:27.2731301Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-08-26T20:12:27.2736159Z adding 'torch/_dynamo/backends/registry.py' 2025-08-26T20:12:27.2739337Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-08-26T20:12:27.2742691Z adding 'torch/_dynamo/backends/torchxla.py' 2025-08-26T20:12:27.2747558Z adding 'torch/_dynamo/backends/tvm.py' 2025-08-26T20:12:27.2754868Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-08-26T20:12:27.2758359Z adding 'torch/_dynamo/polyfills/_collections.py' 2025-08-26T20:12:27.2762169Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-08-26T20:12:27.2765641Z adding 'torch/_dynamo/polyfills/functools.py' 2025-08-26T20:12:27.2769016Z adding 'torch/_dynamo/polyfills/fx.py' 2025-08-26T20:12:27.2773619Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-08-26T20:12:27.2777176Z adding 'torch/_dynamo/polyfills/loader.py' 2025-08-26T20:12:27.2780668Z adding 'torch/_dynamo/polyfills/operator.py' 2025-08-26T20:12:27.2784052Z adding 'torch/_dynamo/polyfills/os.py' 2025-08-26T20:12:27.2790199Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-08-26T20:12:27.2793654Z adding 'torch/_dynamo/polyfills/struct.py' 2025-08-26T20:12:27.2796666Z adding 'torch/_dynamo/polyfills/sys.py' 2025-08-26T20:12:27.2799893Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-08-26T20:12:27.2803463Z adding 'torch/_dynamo/repro/__init__.py' 2025-08-26T20:12:27.2818777Z adding 'torch/_dynamo/repro/after_aot.py' 2025-08-26T20:12:27.2827966Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-08-26T20:12:27.2837271Z adding 'torch/_dynamo/repro/aoti.py' 2025-08-26T20:12:27.2843082Z adding 'torch/_dynamo/variables/__init__.py' 2025-08-26T20:12:27.2852593Z adding 'torch/_dynamo/variables/base.py' 2025-08-26T20:12:27.2906825Z adding 'torch/_dynamo/variables/builder.py' 2025-08-26T20:12:27.2942718Z adding 'torch/_dynamo/variables/builtin.py' 2025-08-26T20:12:27.2950576Z adding 'torch/_dynamo/variables/constant.py' 2025-08-26T20:12:27.2964956Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-08-26T20:12:27.2979927Z adding 'torch/_dynamo/variables/dicts.py' 2025-08-26T20:12:27.2987411Z adding 'torch/_dynamo/variables/distributed.py' 2025-08-26T20:12:27.3018986Z adding 'torch/_dynamo/variables/functions.py' 2025-08-26T20:12:27.3059675Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-08-26T20:12:27.3069515Z adding 'torch/_dynamo/variables/iter.py' 2025-08-26T20:12:27.3074652Z adding 'torch/_dynamo/variables/lazy.py' 2025-08-26T20:12:27.3088746Z adding 'torch/_dynamo/variables/lists.py' 2025-08-26T20:12:27.3113133Z adding 'torch/_dynamo/variables/misc.py' 2025-08-26T20:12:27.3131795Z adding 'torch/_dynamo/variables/nn_module.py' 2025-08-26T20:12:27.3139888Z adding 'torch/_dynamo/variables/optimizer.py' 2025-08-26T20:12:27.3144257Z adding 'torch/_dynamo/variables/script_object.py' 2025-08-26T20:12:27.3147963Z adding 'torch/_dynamo/variables/sdpa.py' 2025-08-26T20:12:27.3170878Z adding 'torch/_dynamo/variables/tensor.py' 2025-08-26T20:12:27.3196851Z adding 'torch/_dynamo/variables/torch.py' 2025-08-26T20:12:27.3208772Z adding 'torch/_dynamo/variables/torch_function.py' 2025-08-26T20:12:27.3237264Z adding 'torch/_dynamo/variables/user_defined.py' 2025-08-26T20:12:27.3244641Z adding 'torch/_export/__init__.py' 2025-08-26T20:12:27.3267177Z adding 'torch/_export/converter.py' 2025-08-26T20:12:27.3272139Z adding 'torch/_export/error.py' 2025-08-26T20:12:27.3287489Z adding 'torch/_export/non_strict_utils.py' 2025-08-26T20:12:27.3295185Z adding 'torch/_export/pass_base.py' 2025-08-26T20:12:27.3299572Z adding 'torch/_export/tools.py' 2025-08-26T20:12:27.3322281Z adding 'torch/_export/utils.py' 2025-08-26T20:12:27.3330750Z adding 'torch/_export/verifier.py' 2025-08-26T20:12:27.3336246Z adding 'torch/_export/wrappers.py' 2025-08-26T20:12:27.3340276Z adding 'torch/_export/db/__init__.py' 2025-08-26T20:12:27.3344378Z adding 'torch/_export/db/case.py' 2025-08-26T20:12:27.3347479Z adding 'torch/_export/db/gen_example.py' 2025-08-26T20:12:27.3350735Z adding 'torch/_export/db/logging.py' 2025-08-26T20:12:27.3355740Z adding 'torch/_export/db/examples/__init__.py' 2025-08-26T20:12:27.3359021Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-08-26T20:12:27.3361973Z adding 'torch/_export/db/examples/autograd_function.py' 2025-08-26T20:12:27.3364955Z adding 'torch/_export/db/examples/class_method.py' 2025-08-26T20:12:27.3368390Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-08-26T20:12:27.3371640Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-08-26T20:12:27.3374965Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-08-26T20:12:27.3378045Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-08-26T20:12:27.3381075Z adding 'torch/_export/db/examples/cond_operands.py' 2025-08-26T20:12:27.3384192Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-08-26T20:12:27.3387179Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-08-26T20:12:27.3390297Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-08-26T20:12:27.3393241Z adding 'torch/_export/db/examples/decorator.py' 2025-08-26T20:12:27.3396157Z adding 'torch/_export/db/examples/dictionary.py' 2025-08-26T20:12:27.3399079Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-08-26T20:12:27.3402006Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-08-26T20:12:27.3404983Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-08-26T20:12:27.3408085Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-08-26T20:12:27.3411035Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-08-26T20:12:27.3414018Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-08-26T20:12:27.3416973Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-08-26T20:12:27.3419961Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-08-26T20:12:27.3422838Z adding 'torch/_export/db/examples/list_contains.py' 2025-08-26T20:12:27.3425785Z adding 'torch/_export/db/examples/list_unpack.py' 2025-08-26T20:12:27.3428804Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-08-26T20:12:27.3431827Z adding 'torch/_export/db/examples/nested_function.py' 2025-08-26T20:12:27.3434803Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-08-26T20:12:27.3437746Z adding 'torch/_export/db/examples/optional_input.py' 2025-08-26T20:12:27.3440613Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-08-26T20:12:27.3443593Z adding 'torch/_export/db/examples/scalar_output.py' 2025-08-26T20:12:27.3446759Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-08-26T20:12:27.3449737Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-08-26T20:12:27.3452575Z adding 'torch/_export/db/examples/static_if.py' 2025-08-26T20:12:27.3455559Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-08-26T20:12:27.3458450Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-08-26T20:12:27.3461382Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-08-26T20:12:27.3464261Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-08-26T20:12:27.3467755Z adding 'torch/_export/pass_infra/__init__.py' 2025-08-26T20:12:27.3470753Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-08-26T20:12:27.3473893Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-08-26T20:12:27.3477602Z adding 'torch/_export/passes/__init__.py' 2025-08-26T20:12:27.3481379Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-08-26T20:12:27.3486780Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-08-26T20:12:27.3491208Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-08-26T20:12:27.3497006Z adding 'torch/_export/passes/constant_folding.py' 2025-08-26T20:12:27.3501021Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-08-26T20:12:27.3504591Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-08-26T20:12:27.3511930Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-08-26T20:12:27.3519125Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-08-26T20:12:27.3527315Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-08-26T20:12:27.3536654Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-08-26T20:12:27.3540975Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-08-26T20:12:27.3544710Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-08-26T20:12:27.3549525Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-08-26T20:12:27.3553348Z adding 'torch/_export/serde/__init__.py' 2025-08-26T20:12:27.3558892Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-08-26T20:12:27.3563988Z adding 'torch/_export/serde/export_schema.thrift' 2025-08-26T20:12:27.3570808Z adding 'torch/_export/serde/schema.py' 2025-08-26T20:12:27.3576267Z adding 'torch/_export/serde/schema.yaml' 2025-08-26T20:12:27.3585080Z adding 'torch/_export/serde/schema_check.py' 2025-08-26T20:12:27.3631856Z adding 'torch/_export/serde/serialize.py' 2025-08-26T20:12:27.3638935Z adding 'torch/_export/serde/union.py' 2025-08-26T20:12:27.3643147Z adding 'torch/_functorch/__init__.py' 2025-08-26T20:12:27.3671776Z adding 'torch/_functorch/aot_autograd.py' 2025-08-26T20:12:27.3680900Z adding 'torch/_functorch/apis.py' 2025-08-26T20:12:27.3692756Z adding 'torch/_functorch/autograd_function.py' 2025-08-26T20:12:27.3696739Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-08-26T20:12:27.3701201Z adding 'torch/_functorch/benchmark_utils.py' 2025-08-26T20:12:27.3736663Z adding 'torch/_functorch/compile_utils.py' 2025-08-26T20:12:27.3743928Z adding 'torch/_functorch/compilers.py' 2025-08-26T20:12:27.3753500Z adding 'torch/_functorch/config.py' 2025-08-26T20:12:27.3772307Z adding 'torch/_functorch/deprecated.py' 2025-08-26T20:12:27.3785248Z adding 'torch/_functorch/eager_transforms.py' 2025-08-26T20:12:27.3792551Z adding 'torch/_functorch/functional_call.py' 2025-08-26T20:12:27.3800074Z adding 'torch/_functorch/fx_minifier.py' 2025-08-26T20:12:27.3809068Z adding 'torch/_functorch/make_functional.py' 2025-08-26T20:12:27.3850788Z adding 'torch/_functorch/partitioners.py' 2025-08-26T20:12:27.3857256Z adding 'torch/_functorch/predispatch.py' 2025-08-26T20:12:27.3862830Z adding 'torch/_functorch/pyfunctorch.py' 2025-08-26T20:12:27.3866147Z adding 'torch/_functorch/python_key.py' 2025-08-26T20:12:27.3869206Z adding 'torch/_functorch/pytree_hacks.py' 2025-08-26T20:12:27.3877419Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-08-26T20:12:27.3881182Z adding 'torch/_functorch/utils.py' 2025-08-26T20:12:27.3888824Z adding 'torch/_functorch/vmap.py' 2025-08-26T20:12:27.3893327Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-08-26T20:12:27.3897296Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-08-26T20:12:27.3902718Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-08-26T20:12:27.3906953Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-08-26T20:12:27.3912523Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-08-26T20:12:27.3916641Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-08-26T20:12:27.3938449Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-08-26T20:12:27.3957696Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-08-26T20:12:27.3968756Z adding 'torch/_functorch/_aot_autograd/descriptors.py' 2025-08-26T20:12:27.3974959Z adding 'torch/_functorch/_aot_autograd/frontend_utils.py' 2025-08-26T20:12:27.3983765Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-08-26T20:12:27.3989383Z adding 'torch/_functorch/_aot_autograd/fx_utils.py' 2025-08-26T20:12:27.3996482Z adding 'torch/_functorch/_aot_autograd/graph_capture.py' 2025-08-26T20:12:27.4018911Z adding 'torch/_functorch/_aot_autograd/graph_capture_wrappers.py' 2025-08-26T20:12:27.4050107Z adding 'torch/_functorch/_aot_autograd/graph_compile.py' 2025-08-26T20:12:27.4059624Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-08-26T20:12:27.4064560Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-08-26T20:12:27.4104431Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-08-26T20:12:27.4129373Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-08-26T20:12:27.4134623Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-08-26T20:12:27.4143102Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-08-26T20:12:27.4153175Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-08-26T20:12:27.4157633Z adding 'torch/_higher_order_ops/__init__.py' 2025-08-26T20:12:27.4161092Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-08-26T20:12:27.4165441Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-08-26T20:12:27.4174054Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-08-26T20:12:27.4187235Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-08-26T20:12:27.4193797Z adding 'torch/_higher_order_ops/base_hop.py' 2025-08-26T20:12:27.4205508Z adding 'torch/_higher_order_ops/cond.py' 2025-08-26T20:12:27.4211903Z adding 'torch/_higher_order_ops/effects.py' 2025-08-26T20:12:27.4232822Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-08-26T20:12:27.4233243Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-08-26T20:12:27.4234589Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-08-26T20:12:27.4238916Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-08-26T20:12:27.4242871Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-08-26T20:12:27.4253105Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-08-26T20:12:27.4259288Z adding 'torch/_higher_order_ops/map.py' 2025-08-26T20:12:27.4263793Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-08-26T20:12:27.4267943Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-08-26T20:12:27.4283983Z adding 'torch/_higher_order_ops/scan.py' 2025-08-26T20:12:27.4289608Z adding 'torch/_higher_order_ops/schema.py' 2025-08-26T20:12:27.4293715Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-08-26T20:12:27.4298416Z adding 'torch/_higher_order_ops/torchbind.py' 2025-08-26T20:12:27.4326021Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-08-26T20:12:27.4346351Z adding 'torch/_higher_order_ops/utils.py' 2025-08-26T20:12:27.4355883Z adding 'torch/_higher_order_ops/while_loop.py' 2025-08-26T20:12:27.4362015Z adding 'torch/_higher_order_ops/wrap.py' 2025-08-26T20:12:27.4367562Z adding 'torch/_inductor/__autotune_main__.py' 2025-08-26T20:12:27.4373770Z adding 'torch/_inductor/__init__.py' 2025-08-26T20:12:27.4378310Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-08-26T20:12:27.4383607Z adding 'torch/_inductor/aoti_eager.py' 2025-08-26T20:12:27.4393342Z adding 'torch/_inductor/async_compile.py' 2025-08-26T20:12:27.4404758Z adding 'torch/_inductor/autotune_process.py' 2025-08-26T20:12:27.4409788Z adding 'torch/_inductor/await_utils.py' 2025-08-26T20:12:27.4415026Z adding 'torch/_inductor/bounds.py' 2025-08-26T20:12:27.4421880Z adding 'torch/_inductor/choices.py' 2025-08-26T20:12:27.4479004Z adding 'torch/_inductor/codecache.py' 2025-08-26T20:12:27.4487711Z adding 'torch/_inductor/comm_analysis.py' 2025-08-26T20:12:27.4493475Z adding 'torch/_inductor/comm_lowering.py' 2025-08-26T20:12:27.4517061Z adding 'torch/_inductor/comms.py' 2025-08-26T20:12:27.4522413Z adding 'torch/_inductor/comms_debug.py' 2025-08-26T20:12:27.4560370Z adding 'torch/_inductor/compile_fx.py' 2025-08-26T20:12:27.4569186Z adding 'torch/_inductor/compile_fx_async.py' 2025-08-26T20:12:27.4578456Z adding 'torch/_inductor/compile_fx_ext.py' 2025-08-26T20:12:27.4582882Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-08-26T20:12:27.4591249Z adding 'torch/_inductor/compiler_bisector.py' 2025-08-26T20:12:27.4625436Z adding 'torch/_inductor/config.py' 2025-08-26T20:12:27.4633732Z adding 'torch/_inductor/constant_folding.py' 2025-08-26T20:12:27.4660651Z adding 'torch/_inductor/cpp_builder.py' 2025-08-26T20:12:27.4669070Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-08-26T20:12:27.4720753Z adding 'torch/_inductor/cudagraph_trees.py' 2025-08-26T20:12:27.4721094Z adding 'torch/_inductor/cudagraph_utils.py' 2025-08-26T20:12:27.4723781Z adding 'torch/_inductor/custom_graph_pass.py' 2025-08-26T20:12:27.4739178Z adding 'torch/_inductor/debug.py' 2025-08-26T20:12:27.4754039Z adding 'torch/_inductor/decomposition.py' 2025-08-26T20:12:27.4766816Z adding 'torch/_inductor/dependencies.py' 2025-08-26T20:12:27.4772850Z adding 'torch/_inductor/dtype_propagation.py' 2025-08-26T20:12:27.4777064Z adding 'torch/_inductor/exc.py' 2025-08-26T20:12:27.4780305Z adding 'torch/_inductor/extern_node_serializer.py' 2025-08-26T20:12:27.4785655Z adding 'torch/_inductor/freezing.py' 2025-08-26T20:12:27.4789141Z adding 'torch/_inductor/freezing_utils.py' 2025-08-26T20:12:27.4802996Z adding 'torch/_inductor/fuzzer.py' 2025-08-26T20:12:27.4809380Z adding 'torch/_inductor/fx_utils.py' 2025-08-26T20:12:27.4846746Z adding 'torch/_inductor/graph.py' 2025-08-26T20:12:27.4852182Z adding 'torch/_inductor/hooks.py' 2025-08-26T20:12:27.4858739Z adding 'torch/_inductor/index_propagation.py' 2025-08-26T20:12:27.4863252Z adding 'torch/_inductor/inductor_prims.py' 2025-08-26T20:12:27.4970009Z adding 'torch/_inductor/ir.py' 2025-08-26T20:12:27.4982351Z adding 'torch/_inductor/jagged_lowerings.py' 2025-08-26T20:12:27.4987128Z adding 'torch/_inductor/kernel_inputs.py' 2025-08-26T20:12:27.4996742Z adding 'torch/_inductor/loop_body.py' 2025-08-26T20:12:27.5075915Z adding 'torch/_inductor/lowering.py' 2025-08-26T20:12:27.5094551Z adding 'torch/_inductor/memory.py' 2025-08-26T20:12:27.5101695Z adding 'torch/_inductor/metrics.py' 2025-08-26T20:12:27.5112888Z adding 'torch/_inductor/mkldnn_ir.py' 2025-08-26T20:12:27.5126142Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-08-26T20:12:27.5132578Z adding 'torch/_inductor/mock_cache.py' 2025-08-26T20:12:27.5143404Z adding 'torch/_inductor/ops_handler.py' 2025-08-26T20:12:27.5148332Z adding 'torch/_inductor/optimize_indexing.py' 2025-08-26T20:12:27.5159087Z adding 'torch/_inductor/output_code.py' 2025-08-26T20:12:27.5189401Z adding 'torch/_inductor/pattern_matcher.py' 2025-08-26T20:12:27.5195341Z adding 'torch/_inductor/quantized_lowerings.py' 2025-08-26T20:12:27.5201609Z adding 'torch/_inductor/remote_cache.py' 2025-08-26T20:12:27.5205030Z adding 'torch/_inductor/remote_gemm_autotune_cache.py' 2025-08-26T20:12:27.5274928Z adding 'torch/_inductor/scheduler.py' 2025-08-26T20:12:27.5282543Z adding 'torch/_inductor/script.ld' 2025-08-26T20:12:27.5327841Z adding 'torch/_inductor/select_algorithm.py' 2025-08-26T20:12:27.5334991Z adding 'torch/_inductor/shape_propagation.py' 2025-08-26T20:12:27.5348981Z adding 'torch/_inductor/sizevars.py' 2025-08-26T20:12:27.5355105Z adding 'torch/_inductor/standalone_compile.py' 2025-08-26T20:12:27.5360084Z adding 'torch/_inductor/subgraph_lowering.py' 2025-08-26T20:12:27.5377161Z adding 'torch/_inductor/template_heuristics.py' 2025-08-26T20:12:27.5382490Z adding 'torch/_inductor/template_registry.py' 2025-08-26T20:12:27.5385830Z adding 'torch/_inductor/test_case.py' 2025-08-26T20:12:27.5389087Z adding 'torch/_inductor/test_operators.py' 2025-08-26T20:12:27.5399623Z adding 'torch/_inductor/tiling_utils.py' 2025-08-26T20:12:27.5406789Z adding 'torch/_inductor/triton_bundler.py' 2025-08-26T20:12:27.5451928Z adding 'torch/_inductor/utils.py' 2025-08-26T20:12:27.5461130Z adding 'torch/_inductor/virtualized.py' 2025-08-26T20:12:27.5468846Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-08-26T20:12:27.5473441Z adding 'torch/_inductor/analysis/__init__.py' 2025-08-26T20:12:27.5477136Z adding 'torch/_inductor/analysis/device_info.py' 2025-08-26T20:12:27.5488170Z adding 'torch/_inductor/analysis/profile_analysis.py' 2025-08-26T20:12:27.5492863Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-08-26T20:12:27.5498414Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-08-26T20:12:27.5504110Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-08-26T20:12:27.5508480Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-08-26T20:12:27.5512068Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-08-26T20:12:27.5520356Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-08-26T20:12:27.5528685Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-08-26T20:12:27.5533578Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-08-26T20:12:27.5537977Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-08-26T20:12:27.5542020Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-08-26T20:12:27.5545049Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-08-26T20:12:27.5549508Z adding 'torch/_inductor/codegen/__init__.py' 2025-08-26T20:12:27.5566380Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-08-26T20:12:27.5566879Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-08-26T20:12:27.5589739Z adding 'torch/_inductor/codegen/common.py' 2025-08-26T20:12:27.5664538Z adding 'torch/_inductor/codegen/cpp.py' 2025-08-26T20:12:27.5675048Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-08-26T20:12:27.5689423Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-08-26T20:12:27.5714472Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-08-26T20:12:27.5723981Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-08-26T20:12:27.5745744Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-08-26T20:12:27.5751410Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-08-26T20:12:27.5760499Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-08-26T20:12:27.5771289Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-08-26T20:12:27.5810143Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-08-26T20:12:27.5825473Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-08-26T20:12:27.5836634Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-08-26T20:12:27.5841650Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-08-26T20:12:27.5844903Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-08-26T20:12:27.5849196Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-08-26T20:12:27.5854457Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-08-26T20:12:27.5875548Z adding 'torch/_inductor/codegen/halide.py' 2025-08-26T20:12:27.5886955Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-08-26T20:12:27.5900393Z adding 'torch/_inductor/codegen/mps.py' 2025-08-26T20:12:27.5904416Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-08-26T20:12:27.5912207Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-08-26T20:12:27.5915802Z adding 'torch/_inductor/codegen/python_wrapper_mtia.py' 2025-08-26T20:12:27.5920237Z adding 'torch/_inductor/codegen/segmented_tree.py' 2025-08-26T20:12:27.5955538Z adding 'torch/_inductor/codegen/simd.py' 2025-08-26T20:12:27.5966547Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-08-26T20:12:27.5971601Z adding 'torch/_inductor/codegen/subgraph.py' 2025-08-26T20:12:27.6036122Z adding 'torch/_inductor/codegen/triton.py' 2025-08-26T20:12:27.6053968Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-08-26T20:12:27.6059487Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-08-26T20:12:27.6064621Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-08-26T20:12:27.6111839Z adding 'torch/_inductor/codegen/wrapper.py' 2025-08-26T20:12:27.6125735Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-08-26T20:12:27.6132855Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-08-26T20:12:27.6137171Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-08-26T20:12:27.6143013Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-08-26T20:12:27.6146524Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-08-26T20:12:27.6155937Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-08-26T20:12:27.6162961Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-08-26T20:12:27.6167387Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-08-26T20:12:27.6171245Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-08-26T20:12:27.6177675Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-08-26T20:12:27.6184738Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-08-26T20:12:27.6190663Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-08-26T20:12:27.6214971Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-08-26T20:12:27.6223828Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-08-26T20:12:27.6228637Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-08-26T20:12:27.6234718Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-08-26T20:12:27.6242425Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-08-26T20:12:27.6247422Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/__init__.py' 2025-08-26T20:12:27.6251149Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/__init__.py' 2025-08-26T20:12:27.6254264Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cuda.py' 2025-08-26T20:12:27.6257255Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cudart.py' 2025-08-26T20:12:27.6261069Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot/__init__.py' 2025-08-26T20:12:27.6264673Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/__init__.py' 2025-08-26T20:12:27.6267608Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/special.py' 2025-08-26T20:12:27.6271177Z adding 'torch/_inductor/codegen/cutedsl/__init__.py' 2025-08-26T20:12:27.6275981Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_kernel.py' 2025-08-26T20:12:27.6280384Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py' 2025-08-26T20:12:27.6284962Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_template.py' 2025-08-26T20:12:27.6288805Z adding 'torch/_inductor/codegen/mtia/__init__.py' 2025-08-26T20:12:27.6291755Z adding 'torch/_inductor/codegen/mtia/device_op_overrides.py' 2025-08-26T20:12:27.6295424Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-08-26T20:12:27.6303665Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-08-26T20:12:27.6307884Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-08-26T20:12:27.6311961Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-08-26T20:12:27.6331789Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-08-26T20:12:27.6345191Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-08-26T20:12:27.6350026Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-08-26T20:12:27.6354115Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-08-26T20:12:27.6358117Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-08-26T20:12:27.6363531Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-08-26T20:12:27.6368356Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-08-26T20:12:27.6371786Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-08-26T20:12:27.6374791Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-08-26T20:12:27.6378337Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-08-26T20:12:27.6381520Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-08-26T20:12:27.6385144Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-08-26T20:12:27.6388541Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-08-26T20:12:27.6394978Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-08-26T20:12:27.6399114Z adding 'torch/_inductor/compile_worker/tracked_process_pool.py' 2025-08-26T20:12:27.6402515Z adding 'torch/_inductor/compile_worker/utils.py' 2025-08-26T20:12:27.6406586Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-08-26T20:12:27.6415474Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-08-26T20:12:27.6422612Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-08-26T20:12:27.6430856Z adding 'torch/_inductor/fx_passes/bucketing.py' 2025-08-26T20:12:27.6439808Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-08-26T20:12:27.6445170Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-08-26T20:12:27.6449059Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-08-26T20:12:27.6454493Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-08-26T20:12:27.6459614Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-08-26T20:12:27.6463376Z adding 'torch/_inductor/fx_passes/fsdp.py' 2025-08-26T20:12:27.6473132Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-08-26T20:12:27.6489777Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-08-26T20:12:27.6503056Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-08-26T20:12:27.6517140Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-08-26T20:12:27.6522012Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-08-26T20:12:27.6538466Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-08-26T20:12:27.6544274Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-08-26T20:12:27.6554293Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-08-26T20:12:27.6579195Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-08-26T20:12:27.6590803Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-08-26T20:12:27.6626340Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-08-26T20:12:27.6641296Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-08-26T20:12:27.6645857Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-08-26T20:12:27.6681257Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-08-26T20:12:27.6688901Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-08-26T20:12:27.6693065Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-08-26T20:12:27.6697688Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-08-26T20:12:27.6702316Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-08-26T20:12:27.6707039Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-08-26T20:12:27.6711349Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-08-26T20:12:27.6715949Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-08-26T20:12:27.6720852Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-08-26T20:12:27.6728303Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-08-26T20:12:27.6734484Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-08-26T20:12:27.6740942Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-08-26T20:12:27.6746744Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-08-26T20:12:27.6751136Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-08-26T20:12:27.6756155Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-08-26T20:12:27.6760987Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py' 2025-08-26T20:12:27.6765898Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py' 2025-08-26T20:12:27.6770577Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py' 2025-08-26T20:12:27.6775092Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py' 2025-08-26T20:12:27.6779363Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-08-26T20:12:27.6783814Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-08-26T20:12:27.6788121Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-08-26T20:12:27.6792523Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-08-26T20:12:27.6797128Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-08-26T20:12:27.6802011Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-08-26T20:12:27.6806660Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-08-26T20:12:27.6810372Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-08-26T20:12:27.6813547Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-08-26T20:12:27.6816714Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-08-26T20:12:27.6820284Z adding 'torch/_inductor/kernel/__init__.py' 2025-08-26T20:12:27.6825432Z adding 'torch/_inductor/kernel/bmm.py' 2025-08-26T20:12:27.6833441Z adding 'torch/_inductor/kernel/conv.py' 2025-08-26T20:12:27.6848204Z adding 'torch/_inductor/kernel/mm.py' 2025-08-26T20:12:27.6853655Z adding 'torch/_inductor/kernel/mm_common.py' 2025-08-26T20:12:27.6861875Z adding 'torch/_inductor/kernel/mm_grouped.py' 2025-08-26T20:12:27.6866857Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-08-26T20:12:27.6870773Z adding 'torch/_inductor/kernel/flex/__init__.py' 2025-08-26T20:12:27.6876574Z adding 'torch/_inductor/kernel/flex/common.py' 2025-08-26T20:12:27.6886249Z adding 'torch/_inductor/kernel/flex/flex_attention.py' 2025-08-26T20:12:27.6892902Z adding 'torch/_inductor/kernel/flex/flex_cpu.py' 2025-08-26T20:12:27.6899733Z adding 'torch/_inductor/kernel/flex/flex_decoding.py' 2025-08-26T20:12:27.6905318Z adding 'torch/_inductor/kernel/flex/templates/common.py.jinja' 2025-08-26T20:12:27.6910770Z adding 'torch/_inductor/kernel/flex/templates/flex_attention.py.jinja' 2025-08-26T20:12:27.6919373Z adding 'torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja' 2025-08-26T20:12:27.6925492Z adding 'torch/_inductor/kernel/flex/templates/flex_decode.py.jinja' 2025-08-26T20:12:27.6929258Z adding 'torch/_inductor/kernel/flex/templates/utilities.py.jinja' 2025-08-26T20:12:27.6932924Z adding 'torch/_inductor/package/__init__.py' 2025-08-26T20:12:27.6935781Z adding 'torch/_inductor/package/build_package.py' 2025-08-26T20:12:27.6939706Z adding 'torch/_inductor/package/package.py' 2025-08-26T20:12:27.6943513Z adding 'torch/_inductor/runtime/__init__.py' 2025-08-26T20:12:27.6952473Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-08-26T20:12:27.6958781Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-08-26T20:12:27.6962472Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-08-26T20:12:27.6966112Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-08-26T20:12:27.6971338Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-08-26T20:12:27.6975407Z adding 'torch/_inductor/runtime/debug_utils.py' 2025-08-26T20:12:27.6979226Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-08-26T20:12:27.6983868Z adding 'torch/_inductor/runtime/hints.py' 2025-08-26T20:12:27.6988931Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-08-26T20:12:27.6994098Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-08-26T20:12:27.6998151Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-08-26T20:12:27.7007731Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-08-26T20:12:27.7051245Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-08-26T20:12:27.7058342Z adding 'torch/_lazy/__init__.py' 2025-08-26T20:12:27.7062643Z adding 'torch/_lazy/closure.py' 2025-08-26T20:12:27.7065969Z adding 'torch/_lazy/computation.py' 2025-08-26T20:12:27.7068930Z adding 'torch/_lazy/config.py' 2025-08-26T20:12:27.7072161Z adding 'torch/_lazy/debug.py' 2025-08-26T20:12:27.7075185Z adding 'torch/_lazy/device_context.py' 2025-08-26T20:12:27.7080293Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-08-26T20:12:27.7083537Z adding 'torch/_lazy/ir_cache.py' 2025-08-26T20:12:27.7086569Z adding 'torch/_lazy/metrics.py' 2025-08-26T20:12:27.7089907Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-08-26T20:12:27.7092756Z adding 'torch/_lazy/ts_backend.py' 2025-08-26T20:12:27.7096572Z adding 'torch/_library/__init__.py' 2025-08-26T20:12:27.7101562Z adding 'torch/_library/autograd.py' 2025-08-26T20:12:27.7114803Z adding 'torch/_library/custom_ops.py' 2025-08-26T20:12:27.7122263Z adding 'torch/_library/fake_class_registry.py' 2025-08-26T20:12:27.7128896Z adding 'torch/_library/fake_impl.py' 2025-08-26T20:12:27.7133931Z adding 'torch/_library/fake_profile.py' 2025-08-26T20:12:27.7140353Z adding 'torch/_library/infer_schema.py' 2025-08-26T20:12:27.7144230Z adding 'torch/_library/simple_registry.py' 2025-08-26T20:12:27.7151284Z adding 'torch/_library/triton.py' 2025-08-26T20:12:27.7159682Z adding 'torch/_library/utils.py' 2025-08-26T20:12:27.7165399Z adding 'torch/_logging/__init__.py' 2025-08-26T20:12:27.7185263Z adding 'torch/_logging/_internal.py' 2025-08-26T20:12:27.7191262Z adding 'torch/_logging/_registrations.py' 2025-08-26T20:12:27.7194994Z adding 'torch/_logging/scribe.py' 2025-08-26T20:12:27.7198784Z adding 'torch/_logging/structured.py' 2025-08-26T20:12:27.7202901Z adding 'torch/_numpy/__init__.py' 2025-08-26T20:12:27.7206424Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-08-26T20:12:27.7212537Z adding 'torch/_numpy/_casting_dicts.py' 2025-08-26T20:12:27.7219262Z adding 'torch/_numpy/_dtypes.py' 2025-08-26T20:12:27.7224687Z adding 'torch/_numpy/_dtypes_impl.py' 2025-08-26T20:12:27.7228263Z adding 'torch/_numpy/_funcs.py' 2025-08-26T20:12:27.7250878Z adding 'torch/_numpy/_funcs_impl.py' 2025-08-26T20:12:27.7255341Z adding 'torch/_numpy/_getlimits.py' 2025-08-26T20:12:27.7263997Z adding 'torch/_numpy/_ndarray.py' 2025-08-26T20:12:27.7269610Z adding 'torch/_numpy/_normalizations.py' 2025-08-26T20:12:27.7275134Z adding 'torch/_numpy/_reductions_impl.py' 2025-08-26T20:12:27.7280221Z adding 'torch/_numpy/_ufuncs.py' 2025-08-26T20:12:27.7283697Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-08-26T20:12:27.7288828Z adding 'torch/_numpy/_util.py' 2025-08-26T20:12:27.7292199Z adding 'torch/_numpy/fft.py' 2025-08-26T20:12:27.7296465Z adding 'torch/_numpy/linalg.py' 2025-08-26T20:12:27.7300631Z adding 'torch/_numpy/random.py' 2025-08-26T20:12:27.7304474Z adding 'torch/_numpy/testing/__init__.py' 2025-08-26T20:12:27.7330873Z adding 'torch/_numpy/testing/utils.py' 2025-08-26T20:12:27.7358739Z adding 'torch/_prims/__init__.py' 2025-08-26T20:12:27.7365001Z adding 'torch/_prims/context.py' 2025-08-26T20:12:27.7368759Z adding 'torch/_prims/debug_prims.py' 2025-08-26T20:12:27.7372494Z adding 'torch/_prims/executor.py' 2025-08-26T20:12:27.7377961Z adding 'torch/_prims/rng_prims.py' 2025-08-26T20:12:27.7406237Z adding 'torch/_prims_common/__init__.py' 2025-08-26T20:12:27.7415652Z adding 'torch/_prims_common/wrappers.py' 2025-08-26T20:12:27.7488623Z adding 'torch/_refs/__init__.py' 2025-08-26T20:12:27.7497194Z adding 'torch/_refs/_conversions.py' 2025-08-26T20:12:27.7503584Z adding 'torch/_refs/fft.py' 2025-08-26T20:12:27.7510430Z adding 'torch/_refs/linalg/__init__.py' 2025-08-26T20:12:27.7514216Z adding 'torch/_refs/nn/__init__.py' 2025-08-26T20:12:27.7528293Z adding 'torch/_refs/nn/functional/__init__.py' 2025-08-26T20:12:27.7534129Z adding 'torch/_refs/special/__init__.py' 2025-08-26T20:12:27.7537930Z adding 'torch/_strobelight/__init__.py' 2025-08-26T20:12:27.7543181Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-08-26T20:12:27.7548147Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-08-26T20:12:27.7552104Z adding 'torch/_subclasses/__init__.py' 2025-08-26T20:12:27.7557067Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-08-26T20:12:27.7572765Z adding 'torch/_subclasses/fake_impls.py' 2025-08-26T20:12:27.7623183Z adding 'torch/_subclasses/fake_tensor.py' 2025-08-26T20:12:27.7631358Z adding 'torch/_subclasses/fake_utils.py' 2025-08-26T20:12:27.7643863Z adding 'torch/_subclasses/functional_tensor.py' 2025-08-26T20:12:27.7673652Z adding 'torch/_subclasses/meta_utils.py' 2025-08-26T20:12:27.7680442Z adding 'torch/_subclasses/schema_check_mode.py' 2025-08-26T20:12:27.7684295Z adding 'torch/_vendor/__init__.py' 2025-08-26T20:12:27.7688262Z adding 'torch/_vendor/packaging/__init__.py' 2025-08-26T20:12:27.7691323Z adding 'torch/_vendor/packaging/_structures.py' 2025-08-26T20:12:27.7698112Z adding 'torch/_vendor/packaging/version.py' 2025-08-26T20:12:27.7704367Z adding 'torch/accelerator/__init__.py' 2025-08-26T20:12:27.7707778Z adding 'torch/accelerator/_utils.py' 2025-08-26T20:12:27.7712312Z adding 'torch/accelerator/memory.py' 2025-08-26T20:12:27.7716092Z adding 'torch/amp/__init__.py' 2025-08-26T20:12:27.7724611Z adding 'torch/amp/autocast_mode.py' 2025-08-26T20:12:27.7736588Z adding 'torch/amp/grad_scaler.py' 2025-08-26T20:12:27.7741236Z adding 'torch/ao/__init__.py' 2025-08-26T20:12:27.7745159Z adding 'torch/ao/nn/__init__.py' 2025-08-26T20:12:27.7749112Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-08-26T20:12:27.7752892Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-08-26T20:12:27.7756921Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-08-26T20:12:27.7760730Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-08-26T20:12:27.7764527Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-08-26T20:12:27.7773117Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-08-26T20:12:27.7778383Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-08-26T20:12:27.7782072Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-08-26T20:12:27.7786100Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-08-26T20:12:27.7790035Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-08-26T20:12:27.7794125Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-08-26T20:12:27.7798090Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-08-26T20:12:27.7802472Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-08-26T20:12:27.7829607Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-08-26T20:12:27.7830088Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-08-26T20:12:27.7830529Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-08-26T20:12:27.7830987Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-08-26T20:12:27.7831366Z adding 'torch/ao/nn/qat/__init__.py' 2025-08-26T20:12:27.7831666Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-08-26T20:12:27.7832021Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-08-26T20:12:27.7836415Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-08-26T20:12:27.7840055Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-08-26T20:12:27.7844738Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-08-26T20:12:27.7849463Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-08-26T20:12:27.7853520Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-08-26T20:12:27.7857208Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-08-26T20:12:27.7860880Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-08-26T20:12:27.7868868Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-08-26T20:12:27.7877196Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-08-26T20:12:27.7881667Z adding 'torch/ao/nn/quantized/__init__.py' 2025-08-26T20:12:27.7890148Z adding 'torch/ao/nn/quantized/functional.py' 2025-08-26T20:12:27.7894490Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-08-26T20:12:27.7898223Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-08-26T20:12:27.7903347Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-08-26T20:12:27.7908165Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-08-26T20:12:27.7922202Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-08-26T20:12:27.7928450Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-08-26T20:12:27.7933580Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-08-26T20:12:27.7937711Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-08-26T20:12:27.7947190Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-08-26T20:12:27.7951271Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-08-26T20:12:27.7956733Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-08-26T20:12:27.7961387Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-08-26T20:12:27.7967798Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-08-26T20:12:27.7972241Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-08-26T20:12:27.7975735Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-08-26T20:12:27.7979794Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-08-26T20:12:27.7983671Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-08-26T20:12:27.7987501Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-08-26T20:12:27.7992021Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-08-26T20:12:27.7996157Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-08-26T20:12:27.8004374Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-08-26T20:12:27.8008922Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-08-26T20:12:27.8014335Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-08-26T20:12:27.8018348Z adding 'torch/ao/nn/sparse/__init__.py' 2025-08-26T20:12:27.8022002Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-08-26T20:12:27.8026697Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-08-26T20:12:27.8030241Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-08-26T20:12:27.8034119Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-08-26T20:12:27.8038539Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-08-26T20:12:27.8042247Z adding 'torch/ao/ns/__init__.py' 2025-08-26T20:12:27.8049326Z adding 'torch/ao/ns/_numeric_suite.py' 2025-08-26T20:12:27.8062960Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-08-26T20:12:27.8067756Z adding 'torch/ao/ns/fx/__init__.py' 2025-08-26T20:12:27.8075643Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-08-26T20:12:27.8090462Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-08-26T20:12:27.8097885Z adding 'torch/ao/ns/fx/mappings.py' 2025-08-26T20:12:27.8115655Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-08-26T20:12:27.8120446Z adding 'torch/ao/ns/fx/ns_types.py' 2025-08-26T20:12:27.8125332Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-08-26T20:12:27.8130916Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-08-26T20:12:27.8138776Z adding 'torch/ao/ns/fx/utils.py' 2025-08-26T20:12:27.8144457Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-08-26T20:12:27.8148726Z adding 'torch/ao/pruning/__init__.py' 2025-08-26T20:12:27.8152516Z adding 'torch/ao/pruning/_mappings.py' 2025-08-26T20:12:27.8155404Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-08-26T20:12:27.8159463Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-08-26T20:12:27.8167573Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-08-26T20:12:27.8171889Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-08-26T20:12:27.8176601Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-08-26T20:12:27.8181272Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-08-26T20:12:27.8187312Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-08-26T20:12:27.8192844Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-08-26T20:12:27.8196879Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-08-26T20:12:27.8201025Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-08-26T20:12:27.8204809Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-08-26T20:12:27.8208400Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-08-26T20:12:27.8212745Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-08-26T20:12:27.8217647Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-08-26T20:12:27.8220880Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-08-26T20:12:27.8226112Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-08-26T20:12:27.8230045Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-08-26T20:12:27.8233776Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-08-26T20:12:27.8237662Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-08-26T20:12:27.8245481Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-08-26T20:12:27.8249790Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-08-26T20:12:27.8253925Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-08-26T20:12:27.8258336Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-08-26T20:12:27.8262575Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-08-26T20:12:27.8266424Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-08-26T20:12:27.8270147Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-08-26T20:12:27.8276574Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-08-26T20:12:27.8280734Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-08-26T20:12:27.8284902Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-08-26T20:12:27.8290394Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-08-26T20:12:27.8296072Z adding 'torch/ao/quantization/__init__.py' 2025-08-26T20:12:27.8300793Z adding 'torch/ao/quantization/_correct_bias.py' 2025-08-26T20:12:27.8306338Z adding 'torch/ao/quantization/_equalize.py' 2025-08-26T20:12:27.8310978Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-08-26T20:12:27.8318809Z adding 'torch/ao/quantization/fake_quantize.py' 2025-08-26T20:12:27.8323909Z adding 'torch/ao/quantization/fuse_modules.py' 2025-08-26T20:12:27.8329139Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-08-26T20:12:27.8354760Z adding 'torch/ao/quantization/observer.py' 2025-08-26T20:12:27.8364802Z adding 'torch/ao/quantization/qconfig.py' 2025-08-26T20:12:27.8371388Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-08-26T20:12:27.8374894Z adding 'torch/ao/quantization/quant_type.py' 2025-08-26T20:12:27.8380374Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-08-26T20:12:27.8391534Z adding 'torch/ao/quantization/quantize.py' 2025-08-26T20:12:27.8401832Z adding 'torch/ao/quantization/quantize_fx.py' 2025-08-26T20:12:27.8408813Z adding 'torch/ao/quantization/quantize_jit.py' 2025-08-26T20:12:27.8414077Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-08-26T20:12:27.8417729Z adding 'torch/ao/quantization/stubs.py' 2025-08-26T20:12:27.8429150Z adding 'torch/ao/quantization/utils.py' 2025-08-26T20:12:27.8434025Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-08-26T20:12:27.8441612Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-08-26T20:12:27.8446416Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-08-26T20:12:27.8456784Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-08-26T20:12:27.8463042Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-08-26T20:12:27.8467048Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-08-26T20:12:27.8471059Z adding 'torch/ao/quantization/backend_config/native.py' 2025-08-26T20:12:27.8477100Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-08-26T20:12:27.8481295Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-08-26T20:12:27.8485152Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-08-26T20:12:27.8490843Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-08-26T20:12:27.8494548Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-08-26T20:12:27.8498521Z adding 'torch/ao/quantization/fx/__init__.py' 2025-08-26T20:12:27.8508824Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-08-26T20:12:27.8523097Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-08-26T20:12:27.8540352Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-08-26T20:12:27.8561176Z adding 'torch/ao/quantization/fx/convert.py' 2025-08-26T20:12:27.8569988Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-08-26T20:12:27.8576444Z adding 'torch/ao/quantization/fx/fuse.py' 2025-08-26T20:12:27.8581484Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-08-26T20:12:27.8585760Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-08-26T20:12:27.8588967Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-08-26T20:12:27.8592180Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-08-26T20:12:27.8597205Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-08-26T20:12:27.8602487Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-08-26T20:12:27.8606709Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-08-26T20:12:27.8637431Z adding 'torch/ao/quantization/fx/prepare.py' 2025-08-26T20:12:27.8646236Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-08-26T20:12:27.8651125Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-08-26T20:12:27.8654750Z adding 'torch/ao/quantization/fx/tracer.py' 2025-08-26T20:12:27.8668420Z adding 'torch/ao/quantization/fx/utils.py' 2025-08-26T20:12:27.8673173Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-08-26T20:12:27.8696393Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-08-26T20:12:27.8709047Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-08-26T20:12:27.8715427Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-08-26T20:12:27.8727318Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-08-26T20:12:27.8731924Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-08-26T20:12:27.8742846Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-08-26T20:12:27.8750337Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-08-26T20:12:27.8754410Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-08-26T20:12:27.8759265Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-08-26T20:12:27.8764029Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-08-26T20:12:27.8767995Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-08-26T20:12:27.8773339Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-08-26T20:12:27.8782668Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-08-26T20:12:27.8795605Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-08-26T20:12:27.8805202Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-08-26T20:12:27.8809719Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-08-26T20:12:27.8817379Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-08-26T20:12:27.8822000Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-08-26T20:12:27.8825632Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-08-26T20:12:27.8829369Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-08-26T20:12:27.8834196Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-08-26T20:12:27.8838089Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-08-26T20:12:27.8855029Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-08-26T20:12:27.8863142Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-08-26T20:12:27.8874567Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-08-26T20:12:27.8879360Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-08-26T20:12:27.8890241Z adding 'torch/autograd/__init__.py' 2025-08-26T20:12:27.8895355Z adding 'torch/autograd/anomaly_mode.py' 2025-08-26T20:12:27.8899811Z adding 'torch/autograd/forward_ad.py' 2025-08-26T20:12:27.8912241Z adding 'torch/autograd/function.py' 2025-08-26T20:12:27.8928808Z adding 'torch/autograd/functional.py' 2025-08-26T20:12:27.8935666Z adding 'torch/autograd/grad_mode.py' 2025-08-26T20:12:27.8969424Z adding 'torch/autograd/gradcheck.py' 2025-08-26T20:12:27.8982733Z adding 'torch/autograd/graph.py' 2025-08-26T20:12:27.9000563Z adding 'torch/autograd/profiler.py' 2025-08-26T20:12:27.9007192Z adding 'torch/autograd/profiler_legacy.py' 2025-08-26T20:12:27.9022281Z adding 'torch/autograd/profiler_util.py' 2025-08-26T20:12:27.9026382Z adding 'torch/autograd/variable.py' 2025-08-26T20:12:27.9030008Z adding 'torch/autograd/_functions/__init__.py' 2025-08-26T20:12:27.9033468Z adding 'torch/autograd/_functions/tensor.py' 2025-08-26T20:12:27.9038001Z adding 'torch/autograd/_functions/utils.py' 2025-08-26T20:12:27.9041826Z adding 'torch/backends/__init__.py' 2025-08-26T20:12:27.9045637Z adding 'torch/backends/_coreml/__init__.py' 2025-08-26T20:12:27.9049698Z adding 'torch/backends/_coreml/preprocess.py' 2025-08-26T20:12:27.9053417Z adding 'torch/backends/_nnapi/__init__.py' 2025-08-26T20:12:27.9057905Z adding 'torch/backends/_nnapi/prepare.py' 2025-08-26T20:12:27.9091989Z adding 'torch/backends/_nnapi/serializer.py' 2025-08-26T20:12:27.9097116Z adding 'torch/backends/cpu/__init__.py' 2025-08-26T20:12:27.9104683Z adding 'torch/backends/cuda/__init__.py' 2025-08-26T20:12:27.9110529Z adding 'torch/backends/cudnn/__init__.py' 2025-08-26T20:12:27.9114193Z adding 'torch/backends/cudnn/rnn.py' 2025-08-26T20:12:27.9118484Z adding 'torch/backends/cusparselt/__init__.py' 2025-08-26T20:12:27.9122309Z adding 'torch/backends/kleidiai/__init__.py' 2025-08-26T20:12:27.9127297Z adding 'torch/backends/mha/__init__.py' 2025-08-26T20:12:27.9130197Z adding 'torch/backends/miopen/__init__.py' 2025-08-26T20:12:27.9134382Z adding 'torch/backends/mkl/__init__.py' 2025-08-26T20:12:27.9139075Z adding 'torch/backends/mkldnn/__init__.py' 2025-08-26T20:12:27.9143318Z adding 'torch/backends/mps/__init__.py' 2025-08-26T20:12:27.9147284Z adding 'torch/backends/nnpack/__init__.py' 2025-08-26T20:12:27.9151014Z adding 'torch/backends/openmp/__init__.py' 2025-08-26T20:12:27.9155606Z adding 'torch/backends/opt_einsum/__init__.py' 2025-08-26T20:12:27.9159778Z adding 'torch/backends/quantized/__init__.py' 2025-08-26T20:12:27.9163619Z adding 'torch/backends/xeon/__init__.py' 2025-08-26T20:12:27.9175749Z adding 'torch/backends/xeon/run_cpu.py' 2025-08-26T20:12:27.9180668Z adding 'torch/backends/xnnpack/__init__.py' 2025-08-26T20:12:27.9384524Z adding 'torch/bin/FileStoreTest.exe' 2025-08-26T20:12:27.9575748Z adding 'torch/bin/ProcessGroupGlooAsyncTest.exe' 2025-08-26T20:12:27.9825686Z adding 'torch/bin/ProcessGroupGlooTest.exe' 2025-08-26T20:12:28.0052962Z adding 'torch/bin/TCPStoreTest.exe' 2025-08-26T20:12:28.1469910Z adding 'torch/bin/protoc.exe' 2025-08-26T20:12:28.5770472Z adding 'torch/bin/test_api.exe' 2025-08-26T20:12:28.8414637Z adding 'torch/bin/test_jit.exe' 2025-08-26T20:12:28.9520568Z adding 'torch/bin/test_lazy.exe' 2025-08-26T20:12:29.0611143Z adding 'torch/bin/test_nativert.exe' 2025-08-26T20:12:29.0672046Z adding 'torch/compiler/__init__.py' 2025-08-26T20:12:29.0678102Z adding 'torch/compiler/_cache.py' 2025-08-26T20:12:29.0682664Z adding 'torch/compiler/config.py' 2025-08-26T20:12:29.0690309Z adding 'torch/contrib/__init__.py' 2025-08-26T20:12:29.0694892Z adding 'torch/contrib/_tensorboard_vis.py' 2025-08-26T20:12:29.0699776Z adding 'torch/cpu/__init__.py' 2025-08-26T20:12:29.0704354Z adding 'torch/cpu/amp/__init__.py' 2025-08-26T20:12:29.0706854Z adding 'torch/cpu/amp/autocast_mode.py' 2025-08-26T20:12:29.0710105Z adding 'torch/cpu/amp/grad_scaler.py' 2025-08-26T20:12:29.0715928Z adding 'torch/csrc/inductor/aoti_runtime/model.h' 2025-08-26T20:12:29.0739282Z adding 'torch/cuda/__init__.py' 2025-08-26T20:12:29.0744465Z adding 'torch/cuda/_gpu_trace.py' 2025-08-26T20:12:29.0755662Z adding 'torch/cuda/_memory_viz.py' 2025-08-26T20:12:29.0758610Z adding 'torch/cuda/_pin_memory_utils.py' 2025-08-26T20:12:29.0767374Z adding 'torch/cuda/_sanitizer.py' 2025-08-26T20:12:29.0774097Z adding 'torch/cuda/_utils.py' 2025-08-26T20:12:29.0777353Z adding 'torch/cuda/comm.py' 2025-08-26T20:12:29.0781479Z adding 'torch/cuda/gds.py' 2025-08-26T20:12:29.0792262Z adding 'torch/cuda/graphs.py' 2025-08-26T20:12:29.0804799Z adding 'torch/cuda/jiterator.py' 2025-08-26T20:12:29.0826981Z adding 'torch/cuda/memory.py' 2025-08-26T20:12:29.0827246Z adding 'torch/cuda/nccl.py' 2025-08-26T20:12:29.0827497Z adding 'torch/cuda/nvtx.py' 2025-08-26T20:12:29.0829010Z adding 'torch/cuda/profiler.py' 2025-08-26T20:12:29.0833075Z adding 'torch/cuda/random.py' 2025-08-26T20:12:29.0836021Z adding 'torch/cuda/sparse.py' 2025-08-26T20:12:29.0841210Z adding 'torch/cuda/streams.py' 2025-08-26T20:12:29.0853267Z adding 'torch/cuda/tunable.py' 2025-08-26T20:12:29.0857753Z adding 'torch/cuda/amp/__init__.py' 2025-08-26T20:12:29.0862169Z adding 'torch/cuda/amp/autocast_mode.py' 2025-08-26T20:12:29.0864347Z adding 'torch/cuda/amp/common.py' 2025-08-26T20:12:29.0867448Z adding 'torch/cuda/amp/grad_scaler.py' 2025-08-26T20:12:29.0873103Z adding 'torch/distributed/__init__.py' 2025-08-26T20:12:29.0876533Z adding 'torch/distributed/_checkpointable.py' 2025-08-26T20:12:29.0879998Z adding 'torch/distributed/_composable_state.py' 2025-08-26T20:12:29.0883941Z adding 'torch/distributed/_dist2.py' 2025-08-26T20:12:29.0899186Z adding 'torch/distributed/_functional_collectives.py' 2025-08-26T20:12:29.0903669Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-08-26T20:12:29.0907660Z adding 'torch/distributed/_serialization.py' 2025-08-26T20:12:29.0918383Z adding 'torch/distributed/_state_dict_utils.py' 2025-08-26T20:12:29.0922795Z adding 'torch/distributed/argparse_util.py' 2025-08-26T20:12:29.0926637Z adding 'torch/distributed/c10d_logger.py' 2025-08-26T20:12:29.0932390Z adding 'torch/distributed/collective_utils.py' 2025-08-26T20:12:29.0935895Z adding 'torch/distributed/constants.py' 2025-08-26T20:12:29.0954730Z adding 'torch/distributed/device_mesh.py' 2025-08-26T20:12:29.1027826Z adding 'torch/distributed/distributed_c10d.py' 2025-08-26T20:12:29.1037662Z adding 'torch/distributed/launch.py' 2025-08-26T20:12:29.1040947Z adding 'torch/distributed/logging_handlers.py' 2025-08-26T20:12:29.1044784Z adding 'torch/distributed/remote_device.py' 2025-08-26T20:12:29.1050264Z adding 'torch/distributed/rendezvous.py' 2025-08-26T20:12:29.1063613Z adding 'torch/distributed/run.py' 2025-08-26T20:12:29.1070633Z adding 'torch/distributed/utils.py' 2025-08-26T20:12:29.1074680Z adding 'torch/distributed/_composable/__init__.py' 2025-08-26T20:12:29.1080196Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-08-26T20:12:29.1085512Z adding 'torch/distributed/_composable/contract.py' 2025-08-26T20:12:29.1091075Z adding 'torch/distributed/_composable/replicate.py' 2025-08-26T20:12:29.1097864Z adding 'torch/distributed/_composable/replicate_with_fsdp.py' 2025-08-26T20:12:29.1103171Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-08-26T20:12:29.1106353Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-08-26T20:12:29.1109971Z adding 'torch/distributed/_shard/__init__.py' 2025-08-26T20:12:29.1113257Z adding 'torch/distributed/_shard/_utils.py' 2025-08-26T20:12:29.1119249Z adding 'torch/distributed/_shard/api.py' 2025-08-26T20:12:29.1123678Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-08-26T20:12:29.1126866Z adding 'torch/distributed/_shard/metadata.py' 2025-08-26T20:12:29.1130322Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-08-26T20:12:29.1133441Z adding 'torch/distributed/_shard/sharder.py' 2025-08-26T20:12:29.1137461Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-08-26T20:12:29.1141817Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-08-26T20:12:29.1146588Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-08-26T20:12:29.1153113Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-08-26T20:12:29.1171708Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-08-26T20:12:29.1176333Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-08-26T20:12:29.1179588Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-08-26T20:12:29.1183211Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-08-26T20:12:29.1188678Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-08-26T20:12:29.1192635Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-08-26T20:12:29.1198299Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-08-26T20:12:29.1202562Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-08-26T20:12:29.1206747Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-08-26T20:12:29.1210526Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-08-26T20:12:29.1215402Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-08-26T20:12:29.1218128Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-08-26T20:12:29.1222782Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-08-26T20:12:29.1226934Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-08-26T20:12:29.1230549Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-08-26T20:12:29.1234606Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-08-26T20:12:29.1239831Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-08-26T20:12:29.1245508Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-08-26T20:12:29.1251162Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-08-26T20:12:29.1255682Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-08-26T20:12:29.1261596Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-08-26T20:12:29.1267611Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-08-26T20:12:29.1275517Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-08-26T20:12:29.1279937Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-08-26T20:12:29.1284414Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-08-26T20:12:29.1310124Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-08-26T20:12:29.1319748Z adding 'torch/distributed/_symmetric_memory/_nvshmem_triton.py' 2025-08-26T20:12:29.1324901Z adding 'torch/distributed/_tensor/__init__.py' 2025-08-26T20:12:29.1328200Z adding 'torch/distributed/_tensor/api.py' 2025-08-26T20:12:29.1330984Z adding 'torch/distributed/_tensor/placement_types.py' 2025-08-26T20:12:29.1334976Z adding 'torch/distributed/_tools/__init__.py' 2025-08-26T20:12:29.1338207Z adding 'torch/distributed/_tools/common_utils.py' 2025-08-26T20:12:29.1342944Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-08-26T20:12:29.1351852Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-08-26T20:12:29.1357604Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-08-26T20:12:29.1372945Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-08-26T20:12:29.1379321Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-08-26T20:12:29.1384682Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-08-26T20:12:29.1392966Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-08-26T20:12:29.1408032Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-08-26T20:12:29.1414547Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-08-26T20:12:29.1418624Z adding 'torch/distributed/algorithms/__init__.py' 2025-08-26T20:12:29.1424886Z adding 'torch/distributed/algorithms/join.py' 2025-08-26T20:12:29.1428918Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-08-26T20:12:29.1434789Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-08-26T20:12:29.1438717Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-08-26T20:12:29.1443118Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-08-26T20:12:29.1448225Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-08-26T20:12:29.1450996Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-08-26T20:12:29.1454756Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-08-26T20:12:29.1459747Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-08-26T20:12:29.1463566Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-08-26T20:12:29.1471325Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-08-26T20:12:29.1474824Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-08-26T20:12:29.1479359Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-08-26T20:12:29.1483448Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-08-26T20:12:29.1488698Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-08-26T20:12:29.1492394Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-08-26T20:12:29.1506600Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-08-26T20:12:29.1512066Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-08-26T20:12:29.1515919Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-08-26T20:12:29.1520275Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-08-26T20:12:29.1525824Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-08-26T20:12:29.1529817Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-08-26T20:12:29.1534414Z adding 'torch/distributed/autograd/__init__.py' 2025-08-26T20:12:29.1538499Z adding 'torch/distributed/checkpoint/__init__.py' 2025-08-26T20:12:29.1541894Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-08-26T20:12:29.1547706Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-08-26T20:12:29.1551950Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-08-26T20:12:29.1555373Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-08-26T20:12:29.1566010Z adding 'torch/distributed/checkpoint/_consolidate_hf_safetensors.py' 2025-08-26T20:12:29.1570427Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-08-26T20:12:29.1574625Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-08-26T20:12:29.1578746Z adding 'torch/distributed/checkpoint/_extension.py' 2025-08-26T20:12:29.1583321Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-08-26T20:12:29.1587173Z adding 'torch/distributed/checkpoint/_hf_utils.py' 2025-08-26T20:12:29.1591190Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-08-26T20:12:29.1597606Z adding 'torch/distributed/checkpoint/_pg_transport.py' 2025-08-26T20:12:29.1601667Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-08-26T20:12:29.1609053Z adding 'torch/distributed/checkpoint/_state_dict_stager.py' 2025-08-26T20:12:29.1611876Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-08-26T20:12:29.1616328Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-08-26T20:12:29.1620309Z adding 'torch/distributed/checkpoint/_version.py' 2025-08-26T20:12:29.1622738Z adding 'torch/distributed/checkpoint/api.py' 2025-08-26T20:12:29.1632583Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-08-26T20:12:29.1645898Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-08-26T20:12:29.1652130Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-08-26T20:12:29.1658950Z adding 'torch/distributed/checkpoint/hf_storage.py' 2025-08-26T20:12:29.1663164Z adding 'torch/distributed/checkpoint/logger.py' 2025-08-26T20:12:29.1666400Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-08-26T20:12:29.1670451Z adding 'torch/distributed/checkpoint/metadata.py' 2025-08-26T20:12:29.1677618Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-08-26T20:12:29.1684090Z adding 'torch/distributed/checkpoint/planner.py' 2025-08-26T20:12:29.1691401Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-08-26T20:12:29.1695365Z adding 'torch/distributed/checkpoint/resharding.py' 2025-08-26T20:12:29.1703466Z adding 'torch/distributed/checkpoint/staging.py' 2025-08-26T20:12:29.1722086Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-08-26T20:12:29.1729916Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-08-26T20:12:29.1737415Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-08-26T20:12:29.1741159Z adding 'torch/distributed/checkpoint/stateful.py' 2025-08-26T20:12:29.1746512Z adding 'torch/distributed/checkpoint/storage.py' 2025-08-26T20:12:29.1752861Z adding 'torch/distributed/checkpoint/utils.py' 2025-08-26T20:12:29.1758038Z adding 'torch/distributed/checkpoint/_experimental/__init__.py' 2025-08-26T20:12:29.1763575Z adding 'torch/distributed/checkpoint/_experimental/barriers.py' 2025-08-26T20:12:29.1767209Z adding 'torch/distributed/checkpoint/_experimental/builder.py' 2025-08-26T20:12:29.1773454Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_process.py' 2025-08-26T20:12:29.1778719Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_reader.py' 2025-08-26T20:12:29.1783325Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_writer.py' 2025-08-26T20:12:29.1788511Z adding 'torch/distributed/checkpoint/_experimental/checkpointer.py' 2025-08-26T20:12:29.1791999Z adding 'torch/distributed/checkpoint/_experimental/config.py' 2025-08-26T20:12:29.1797617Z adding 'torch/distributed/checkpoint/_experimental/staging.py' 2025-08-26T20:12:29.1800251Z adding 'torch/distributed/checkpoint/_experimental/types.py' 2025-08-26T20:12:29.1803423Z adding 'torch/distributed/checkpoint/_experimental/utils.py' 2025-08-26T20:12:29.1808300Z adding 'torch/distributed/elastic/__init__.py' 2025-08-26T20:12:29.1811615Z adding 'torch/distributed/elastic/control_plane.py' 2025-08-26T20:12:29.1815412Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-08-26T20:12:29.1819437Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-08-26T20:12:29.1833753Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-08-26T20:12:29.1838075Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-08-26T20:12:29.1845098Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-08-26T20:12:29.1850530Z adding 'torch/distributed/elastic/events/__init__.py' 2025-08-26T20:12:29.1854380Z adding 'torch/distributed/elastic/events/api.py' 2025-08-26T20:12:29.1857543Z adding 'torch/distributed/elastic/events/handlers.py' 2025-08-26T20:12:29.1862506Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-08-26T20:12:29.1866882Z adding 'torch/distributed/elastic/metrics/api.py' 2025-08-26T20:12:29.1872853Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-08-26T20:12:29.1885449Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-08-26T20:12:29.1890062Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-08-26T20:12:29.1894262Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-08-26T20:12:29.1902402Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-08-26T20:12:29.1907248Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-08-26T20:12:29.1910430Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-08-26T20:12:29.1914328Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-08-26T20:12:29.1917449Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-08-26T20:12:29.1921135Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-08-26T20:12:29.1926585Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-08-26T20:12:29.1930054Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-08-26T20:12:29.1936059Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-08-26T20:12:29.1941999Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-08-26T20:12:29.1957617Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-08-26T20:12:29.1973600Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-08-26T20:12:29.1979227Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-08-26T20:12:29.1984563Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-08-26T20:12:29.1989549Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-08-26T20:12:29.1993288Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-08-26T20:12:29.1997210Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-08-26T20:12:29.2002261Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-08-26T20:12:29.2006848Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-08-26T20:12:29.2012211Z adding 'torch/distributed/elastic/timer/api.py' 2025-08-26T20:12:29.2015619Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-08-26T20:12:29.2022535Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-08-26T20:12:29.2026856Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-08-26T20:12:29.2030830Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-08-26T20:12:29.2034206Z adding 'torch/distributed/elastic/utils/api.py' 2025-08-26T20:12:29.2038737Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-08-26T20:12:29.2041896Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-08-26T20:12:29.2045368Z adding 'torch/distributed/elastic/utils/logging.py' 2025-08-26T20:12:29.2050184Z adding 'torch/distributed/elastic/utils/store.py' 2025-08-26T20:12:29.2054175Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-08-26T20:12:29.2057561Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-08-26T20:12:29.2061358Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-08-26T20:12:29.2065595Z adding 'torch/distributed/fsdp/__init__.py' 2025-08-26T20:12:29.2075114Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-08-26T20:12:29.2079951Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-08-26T20:12:29.2083763Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-08-26T20:12:29.2090189Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-08-26T20:12:29.2132725Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-08-26T20:12:29.2139495Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-08-26T20:12:29.2156642Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-08-26T20:12:29.2161551Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-08-26T20:12:29.2193066Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-08-26T20:12:29.2219097Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-08-26T20:12:29.2224769Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-08-26T20:12:29.2236122Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-08-26T20:12:29.2242384Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-08-26T20:12:29.2247370Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-08-26T20:12:29.2253102Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-08-26T20:12:29.2258777Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-08-26T20:12:29.2266804Z adding 'torch/distributed/fsdp/api.py' 2025-08-26T20:12:29.2300361Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-08-26T20:12:29.2327784Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-08-26T20:12:29.2328173Z adding 'torch/distributed/fsdp/wrap.py' 2025-08-26T20:12:29.2328516Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-08-26T20:12:29.2329450Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-08-26T20:12:29.2340135Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-08-26T20:12:29.2346216Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-08-26T20:12:29.2350429Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-08-26T20:12:29.2365528Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-08-26T20:12:29.2379960Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-08-26T20:12:29.2387711Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-08-26T20:12:29.2399931Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-08-26T20:12:29.2404408Z adding 'torch/distributed/launcher/__init__.py' 2025-08-26T20:12:29.2410661Z adding 'torch/distributed/launcher/api.py' 2025-08-26T20:12:29.2414684Z adding 'torch/distributed/nn/__init__.py' 2025-08-26T20:12:29.2420689Z adding 'torch/distributed/nn/functional.py' 2025-08-26T20:12:29.2424779Z adding 'torch/distributed/nn/api/__init__.py' 2025-08-26T20:12:29.2434562Z adding 'torch/distributed/nn/api/remote_module.py' 2025-08-26T20:12:29.2438925Z adding 'torch/distributed/nn/jit/__init__.py' 2025-08-26T20:12:29.2442994Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-08-26T20:12:29.2446850Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-08-26T20:12:29.2450582Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-08-26T20:12:29.2454763Z adding 'torch/distributed/optim/__init__.py' 2025-08-26T20:12:29.2457849Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-08-26T20:12:29.2462109Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-08-26T20:12:29.2466215Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-08-26T20:12:29.2470146Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-08-26T20:12:29.2474525Z adding 'torch/distributed/optim/functional_adam.py' 2025-08-26T20:12:29.2478626Z adding 'torch/distributed/optim/functional_adamax.py' 2025-08-26T20:12:29.2483068Z adding 'torch/distributed/optim/functional_adamw.py' 2025-08-26T20:12:29.2487332Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-08-26T20:12:29.2491227Z adding 'torch/distributed/optim/functional_rprop.py' 2025-08-26T20:12:29.2495391Z adding 'torch/distributed/optim/functional_sgd.py' 2025-08-26T20:12:29.2501647Z adding 'torch/distributed/optim/named_optimizer.py' 2025-08-26T20:12:29.2507365Z adding 'torch/distributed/optim/optimizer.py' 2025-08-26T20:12:29.2511739Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-08-26T20:12:29.2515085Z adding 'torch/distributed/optim/utils.py' 2025-08-26T20:12:29.2540017Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-08-26T20:12:29.2545190Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-08-26T20:12:29.2565171Z adding 'torch/distributed/pipelining/_IR.py' 2025-08-26T20:12:29.2569696Z adding 'torch/distributed/pipelining/__init__.py' 2025-08-26T20:12:29.2576976Z adding 'torch/distributed/pipelining/_backward.py' 2025-08-26T20:12:29.2580534Z adding 'torch/distributed/pipelining/_debug.py' 2025-08-26T20:12:29.2585401Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-08-26T20:12:29.2588674Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-08-26T20:12:29.2592803Z adding 'torch/distributed/pipelining/_utils.py' 2025-08-26T20:12:29.2600249Z adding 'torch/distributed/pipelining/microbatch.py' 2025-08-26T20:12:29.2639442Z adding 'torch/distributed/pipelining/schedules.py' 2025-08-26T20:12:29.2665995Z adding 'torch/distributed/pipelining/stage.py' 2025-08-26T20:12:29.2673797Z adding 'torch/distributed/rpc/__init__.py' 2025-08-26T20:12:29.2677571Z adding 'torch/distributed/rpc/_utils.py' 2025-08-26T20:12:29.2689987Z adding 'torch/distributed/rpc/api.py' 2025-08-26T20:12:29.2698345Z adding 'torch/distributed/rpc/backend_registry.py' 2025-08-26T20:12:29.2701531Z adding 'torch/distributed/rpc/constants.py' 2025-08-26T20:12:29.2705956Z adding 'torch/distributed/rpc/functions.py' 2025-08-26T20:12:29.2711669Z adding 'torch/distributed/rpc/internal.py' 2025-08-26T20:12:29.2716667Z adding 'torch/distributed/rpc/options.py' 2025-08-26T20:12:29.2720401Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-08-26T20:12:29.2725494Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-08-26T20:12:29.2729701Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-08-26T20:12:29.2733223Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-08-26T20:12:29.2737481Z adding 'torch/distributed/tensor/__init__.py' 2025-08-26T20:12:29.2755858Z adding 'torch/distributed/tensor/_api.py' 2025-08-26T20:12:29.2763539Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-08-26T20:12:29.2772642Z adding 'torch/distributed/tensor/_dispatch.py' 2025-08-26T20:12:29.2778757Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-08-26T20:12:29.2788572Z adding 'torch/distributed/tensor/_op_schema.py' 2025-08-26T20:12:29.2797318Z adding 'torch/distributed/tensor/_random.py' 2025-08-26T20:12:29.2804452Z adding 'torch/distributed/tensor/_redistribute.py' 2025-08-26T20:12:29.2821000Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-08-26T20:12:29.2822841Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-08-26T20:12:29.2827938Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-08-26T20:12:29.2835618Z adding 'torch/distributed/tensor/_utils.py' 2025-08-26T20:12:29.2839104Z adding 'torch/distributed/tensor/device_mesh.py' 2025-08-26T20:12:29.2849846Z adding 'torch/distributed/tensor/placement_types.py' 2025-08-26T20:12:29.2854424Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-08-26T20:12:29.2860625Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-08-26T20:12:29.2864577Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-08-26T20:12:29.2869239Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-08-26T20:12:29.2874775Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-08-26T20:12:29.2888032Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-08-26T20:12:29.2898937Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-08-26T20:12:29.2908417Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-08-26T20:12:29.2912273Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-08-26T20:12:29.2927781Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-08-26T20:12:29.2939997Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-08-26T20:12:29.2947220Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-08-26T20:12:29.2951555Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-08-26T20:12:29.2960820Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-08-26T20:12:29.2965434Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-08-26T20:12:29.2970365Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-08-26T20:12:29.2974646Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-08-26T20:12:29.2993085Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-08-26T20:12:29.2999964Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-08-26T20:12:29.3004674Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-08-26T20:12:29.3012607Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-08-26T20:12:29.3016989Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-08-26T20:12:29.3020587Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-08-26T20:12:29.3028365Z adding 'torch/distributed/tensor/parallel/api.py' 2025-08-26T20:12:29.3032394Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-08-26T20:12:29.3039062Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-08-26T20:12:29.3043215Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-08-26T20:12:29.3050364Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-08-26T20:12:29.3060799Z adding 'torch/distributed/tensor/parallel/style.py' 2025-08-26T20:12:29.3067495Z adding 'torch/distributions/__init__.py' 2025-08-26T20:12:29.3071693Z adding 'torch/distributions/bernoulli.py' 2025-08-26T20:12:29.3075482Z adding 'torch/distributions/beta.py' 2025-08-26T20:12:29.3079852Z adding 'torch/distributions/binomial.py' 2025-08-26T20:12:29.3084367Z adding 'torch/distributions/categorical.py' 2025-08-26T20:12:29.3088259Z adding 'torch/distributions/cauchy.py' 2025-08-26T20:12:29.3099181Z adding 'torch/distributions/chi2.py' 2025-08-26T20:12:29.3099575Z adding 'torch/distributions/constraint_registry.py' 2025-08-26T20:12:29.3104064Z adding 'torch/distributions/constraints.py' 2025-08-26T20:12:29.3109782Z adding 'torch/distributions/continuous_bernoulli.py' 2025-08-26T20:12:29.3113668Z adding 'torch/distributions/dirichlet.py' 2025-08-26T20:12:29.3119410Z adding 'torch/distributions/distribution.py' 2025-08-26T20:12:29.3123291Z adding 'torch/distributions/exp_family.py' 2025-08-26T20:12:29.3126952Z adding 'torch/distributions/exponential.py' 2025-08-26T20:12:29.3130752Z adding 'torch/distributions/fishersnedecor.py' 2025-08-26T20:12:29.3134611Z adding 'torch/distributions/gamma.py' 2025-08-26T20:12:29.3138835Z adding 'torch/distributions/generalized_pareto.py' 2025-08-26T20:12:29.3143027Z adding 'torch/distributions/geometric.py' 2025-08-26T20:12:29.3146764Z adding 'torch/distributions/gumbel.py' 2025-08-26T20:12:29.3150302Z adding 'torch/distributions/half_cauchy.py' 2025-08-26T20:12:29.3153740Z adding 'torch/distributions/half_normal.py' 2025-08-26T20:12:29.3157600Z adding 'torch/distributions/independent.py' 2025-08-26T20:12:29.3161337Z adding 'torch/distributions/inverse_gamma.py' 2025-08-26T20:12:29.3171865Z adding 'torch/distributions/kl.py' 2025-08-26T20:12:29.3176383Z adding 'torch/distributions/kumaraswamy.py' 2025-08-26T20:12:29.3180293Z adding 'torch/distributions/laplace.py' 2025-08-26T20:12:29.3185140Z adding 'torch/distributions/lkj_cholesky.py' 2025-08-26T20:12:29.3188739Z adding 'torch/distributions/log_normal.py' 2025-08-26T20:12:29.3192385Z adding 'torch/distributions/logistic_normal.py' 2025-08-26T20:12:29.3197699Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-08-26T20:12:29.3202967Z adding 'torch/distributions/mixture_same_family.py' 2025-08-26T20:12:29.3207663Z adding 'torch/distributions/multinomial.py' 2025-08-26T20:12:29.3213278Z adding 'torch/distributions/multivariate_normal.py' 2025-08-26T20:12:29.3218149Z adding 'torch/distributions/negative_binomial.py' 2025-08-26T20:12:29.3221860Z adding 'torch/distributions/normal.py' 2025-08-26T20:12:29.3226017Z adding 'torch/distributions/one_hot_categorical.py' 2025-08-26T20:12:29.3230193Z adding 'torch/distributions/pareto.py' 2025-08-26T20:12:29.3233179Z adding 'torch/distributions/poisson.py' 2025-08-26T20:12:29.3237548Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-08-26T20:12:29.3241868Z adding 'torch/distributions/relaxed_categorical.py' 2025-08-26T20:12:29.3246011Z adding 'torch/distributions/studentT.py' 2025-08-26T20:12:29.3250991Z adding 'torch/distributions/transformed_distribution.py' 2025-08-26T20:12:29.3264653Z adding 'torch/distributions/transforms.py' 2025-08-26T20:12:29.3269689Z adding 'torch/distributions/uniform.py' 2025-08-26T20:12:29.3274281Z adding 'torch/distributions/utils.py' 2025-08-26T20:12:29.3316791Z adding 'torch/distributions/von_mises.py' 2025-08-26T20:12:29.3317151Z adding 'torch/distributions/weibull.py' 2025-08-26T20:12:29.3339063Z adding 'torch/distributions/wishart.py' 2025-08-26T20:12:29.3339393Z adding 'torch/export/__init__.py' 2025-08-26T20:12:29.3342301Z adding 'torch/export/_draft_export.py' 2025-08-26T20:12:29.3346503Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-08-26T20:12:29.3351183Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-08-26T20:12:29.3354523Z adding 'torch/export/_safeguard.py' 2025-08-26T20:12:29.3363216Z adding 'torch/export/_swap.py' 2025-08-26T20:12:29.3394939Z adding 'torch/export/_trace.py' 2025-08-26T20:12:29.3400425Z adding 'torch/export/_tree_utils.py' 2025-08-26T20:12:29.3407958Z adding 'torch/export/_unlift.py' 2025-08-26T20:12:29.3411355Z adding 'torch/export/_wrapper_utils.py' 2025-08-26T20:12:29.3414230Z adding 'torch/export/custom_obj.py' 2025-08-26T20:12:29.3417305Z adding 'torch/export/custom_ops.py' 2025-08-26T20:12:29.3421479Z adding 'torch/export/decomp_utils.py' 2025-08-26T20:12:29.3441039Z adding 'torch/export/dynamic_shapes.py' 2025-08-26T20:12:29.3466156Z adding 'torch/export/exported_program.py' 2025-08-26T20:12:29.3475760Z adding 'torch/export/graph_signature.py' 2025-08-26T20:12:29.3502521Z adding 'torch/export/unflatten.py' 2025-08-26T20:12:29.3512120Z adding 'torch/export/experimental/__init__.py' 2025-08-26T20:12:29.3517057Z adding 'torch/export/experimental/_utils.py' 2025-08-26T20:12:29.3521497Z adding 'torch/export/passes/__init__.py' 2025-08-26T20:12:29.3525202Z adding 'torch/export/pt2_archive/__init__.py' 2025-08-26T20:12:29.3536481Z adding 'torch/export/pt2_archive/_package.py' 2025-08-26T20:12:29.3540935Z adding 'torch/export/pt2_archive/_package_weights.py' 2025-08-26T20:12:29.3544143Z adding 'torch/export/pt2_archive/constants.py' 2025-08-26T20:12:29.3557006Z adding 'torch/fft/__init__.py' 2025-08-26T20:12:29.3561997Z adding 'torch/func/__init__.py' 2025-08-26T20:12:29.3569169Z adding 'torch/futures/__init__.py' 2025-08-26T20:12:29.3574435Z adding 'torch/fx/__init__.py' 2025-08-26T20:12:29.3577714Z adding 'torch/fx/_compatibility.py' 2025-08-26T20:12:29.3585771Z adding 'torch/fx/_graph_pickler.py' 2025-08-26T20:12:29.3590717Z adding 'torch/fx/_lazy_graph_module.py' 2025-08-26T20:12:29.3594476Z adding 'torch/fx/_pytree.py' 2025-08-26T20:12:29.3613597Z adding 'torch/fx/_symbolic_trace.py' 2025-08-26T20:12:29.3618110Z adding 'torch/fx/_utils.py' 2025-08-26T20:12:29.3621320Z adding 'torch/fx/annotate.py' 2025-08-26T20:12:29.3624383Z adding 'torch/fx/config.py' 2025-08-26T20:12:29.3654146Z adding 'torch/fx/graph.py' 2025-08-26T20:12:29.3672145Z adding 'torch/fx/graph_module.py' 2025-08-26T20:12:29.3676843Z adding 'torch/fx/immutable_collections.py' 2025-08-26T20:12:29.3685156Z adding 'torch/fx/interpreter.py' 2025-08-26T20:12:29.3700170Z adding 'torch/fx/node.py' 2025-08-26T20:12:29.3709944Z adding 'torch/fx/operator_schemas.py' 2025-08-26T20:12:29.3722234Z adding 'torch/fx/proxy.py' 2025-08-26T20:12:29.3730369Z adding 'torch/fx/subgraph_rewriter.py' 2025-08-26T20:12:29.3734500Z adding 'torch/fx/tensor_type.py' 2025-08-26T20:12:29.3741057Z adding 'torch/fx/traceback.py' 2025-08-26T20:12:29.3745056Z adding 'torch/fx/experimental/__init__.py' 2025-08-26T20:12:29.3748165Z adding 'torch/fx/experimental/_backward_state.py' 2025-08-26T20:12:29.3752416Z adding 'torch/fx/experimental/_config.py' 2025-08-26T20:12:29.3755850Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-08-26T20:12:29.3759770Z adding 'torch/fx/experimental/_dynamism.py' 2025-08-26T20:12:29.3776485Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-08-26T20:12:29.3784032Z adding 'torch/fx/experimental/const_fold.py' 2025-08-26T20:12:29.3787303Z adding 'torch/fx/experimental/debug.py' 2025-08-26T20:12:29.3799009Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-08-26T20:12:29.3804479Z adding 'torch/fx/experimental/merge_matmul.py' 2025-08-26T20:12:29.3810312Z adding 'torch/fx/experimental/meta_tracer.py' 2025-08-26T20:12:29.3826752Z adding 'torch/fx/experimental/normalize.py' 2025-08-26T20:12:29.3827135Z adding 'torch/fx/experimental/optimization.py' 2025-08-26T20:12:29.3830173Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-08-26T20:12:29.3866869Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-08-26T20:12:29.3878104Z adding 'torch/fx/experimental/recording.py' 2025-08-26T20:12:29.3881592Z adding 'torch/fx/experimental/refinement_types.py' 2025-08-26T20:12:29.3885890Z adding 'torch/fx/experimental/rewriter.py' 2025-08-26T20:12:29.3890200Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-08-26T20:12:29.3911261Z adding 'torch/fx/experimental/sym_node.py' 2025-08-26T20:12:29.4041460Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-08-26T20:12:29.4052601Z adding 'torch/fx/experimental/unify_refinements.py' 2025-08-26T20:12:29.4065189Z adding 'torch/fx/experimental/validator.py' 2025-08-26T20:12:29.4069867Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-08-26T20:12:29.4075799Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-08-26T20:12:29.4090969Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-08-26T20:12:29.4105739Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-08-26T20:12:29.4109627Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-08-26T20:12:29.4115704Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-08-26T20:12:29.4119263Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-08-26T20:12:29.4122345Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-08-26T20:12:29.4126961Z adding 'torch/fx/experimental/unification/__init__.py' 2025-08-26T20:12:29.4129946Z adding 'torch/fx/experimental/unification/core.py' 2025-08-26T20:12:29.4133022Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-08-26T20:12:29.4136713Z adding 'torch/fx/experimental/unification/match.py' 2025-08-26T20:12:29.4140457Z adding 'torch/fx/experimental/unification/more.py' 2025-08-26T20:12:29.4146190Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-08-26T20:12:29.4150295Z adding 'torch/fx/experimental/unification/utils.py' 2025-08-26T20:12:29.4153871Z adding 'torch/fx/experimental/unification/variable.py' 2025-08-26T20:12:29.4157991Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-08-26T20:12:29.4161923Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-08-26T20:12:29.4165582Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-08-26T20:12:29.4172946Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-08-26T20:12:29.4176848Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-08-26T20:12:29.4180729Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-08-26T20:12:29.4184788Z adding 'torch/fx/passes/__init__.py' 2025-08-26T20:12:29.4191916Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-08-26T20:12:29.4196406Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-08-26T20:12:29.4199753Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-08-26T20:12:29.4207509Z adding 'torch/fx/passes/graph_drawer.py' 2025-08-26T20:12:29.4211559Z adding 'torch/fx/passes/graph_manipulation.py' 2025-08-26T20:12:29.4216344Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-08-26T20:12:29.4228662Z adding 'torch/fx/passes/net_min_base.py' 2025-08-26T20:12:29.4234679Z adding 'torch/fx/passes/operator_support.py' 2025-08-26T20:12:29.4239467Z adding 'torch/fx/passes/param_fetch.py' 2025-08-26T20:12:29.4243581Z adding 'torch/fx/passes/pass_manager.py' 2025-08-26T20:12:29.4257579Z adding 'torch/fx/passes/reinplace.py' 2025-08-26T20:12:29.4268713Z adding 'torch/fx/passes/runtime_assert.py' 2025-08-26T20:12:29.4274457Z adding 'torch/fx/passes/shape_prop.py' 2025-08-26T20:12:29.4284868Z adding 'torch/fx/passes/split_module.py' 2025-08-26T20:12:29.4291525Z adding 'torch/fx/passes/split_utils.py' 2025-08-26T20:12:29.4304961Z adding 'torch/fx/passes/splitter_base.py' 2025-08-26T20:12:29.4311114Z adding 'torch/fx/passes/tools_common.py' 2025-08-26T20:12:29.4315011Z adding 'torch/fx/passes/backends/__init__.py' 2025-08-26T20:12:29.4336366Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-08-26T20:12:29.4336700Z adding 'torch/fx/passes/dialect/__init__.py' 2025-08-26T20:12:29.4337032Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-08-26T20:12:29.4337382Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-08-26T20:12:29.4337725Z adding 'torch/fx/passes/infra/__init__.py' 2025-08-26T20:12:29.4343571Z adding 'torch/fx/passes/infra/partitioner.py' 2025-08-26T20:12:29.4348423Z adding 'torch/fx/passes/infra/pass_base.py' 2025-08-26T20:12:29.4354489Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-08-26T20:12:29.4357218Z adding 'torch/fx/passes/tests/__init__.py' 2025-08-26T20:12:29.4360586Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-08-26T20:12:29.4364232Z adding 'torch/fx/passes/utils/__init__.py' 2025-08-26T20:12:29.4367969Z adding 'torch/fx/passes/utils/common.py' 2025-08-26T20:12:29.4373695Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-08-26T20:12:29.4381291Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-08-26T20:12:29.4385736Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-08-26T20:12:29.4390371Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-08-26T20:12:29.4400005Z adding 'torch/include/advisor-annotate.h' 2025-08-26T20:12:29.4413491Z adding 'torch/include/cpuinfo.h' 2025-08-26T20:12:29.4418299Z adding 'torch/include/dnnl.h' 2025-08-26T20:12:29.4421028Z adding 'torch/include/dnnl.hpp' 2025-08-26T20:12:29.4424060Z adding 'torch/include/dnnl_config.h' 2025-08-26T20:12:29.4427054Z adding 'torch/include/dnnl_debug.h' 2025-08-26T20:12:29.4430069Z adding 'torch/include/dnnl_ocl.h' 2025-08-26T20:12:29.4433072Z adding 'torch/include/dnnl_ocl.hpp' 2025-08-26T20:12:29.4436074Z adding 'torch/include/dnnl_sycl.h' 2025-08-26T20:12:29.4439045Z adding 'torch/include/dnnl_sycl.hpp' 2025-08-26T20:12:29.4442046Z adding 'torch/include/dnnl_sycl_types.h' 2025-08-26T20:12:29.4445024Z adding 'torch/include/dnnl_threadpool.h' 2025-08-26T20:12:29.4448200Z adding 'torch/include/dnnl_threadpool.hpp' 2025-08-26T20:12:29.4451231Z adding 'torch/include/dnnl_threadpool_iface.hpp' 2025-08-26T20:12:29.4454218Z adding 'torch/include/dnnl_types.h' 2025-08-26T20:12:29.4457790Z adding 'torch/include/dnnl_version.h' 2025-08-26T20:12:29.4460767Z adding 'torch/include/experiments-config.h' 2025-08-26T20:12:29.4463489Z adding 'torch/include/fp16.h' 2025-08-26T20:12:29.4468636Z adding 'torch/include/fxdiv.h' 2025-08-26T20:12:29.4472607Z adding 'torch/include/ittnotify-zca.h' 2025-08-26T20:12:29.4517740Z adding 'torch/include/ittnotify.h' 2025-08-26T20:12:29.4531634Z adding 'torch/include/jitprofiling.h' 2025-08-26T20:12:29.4535376Z adding 'torch/include/libittnotify.h' 2025-08-26T20:12:29.4538383Z adding 'torch/include/libshm.h' 2025-08-26T20:12:29.4548318Z adding 'torch/include/psimd.h' 2025-08-26T20:12:29.4562735Z adding 'torch/include/pthreadpool.h' 2025-08-26T20:12:29.4601895Z adding 'torch/include/sleef.h' 2025-08-26T20:12:29.4643816Z adding 'torch/include/xnnpack.h' 2025-08-26T20:12:29.4654963Z adding 'torch/include/ATen/ATen.h' 2025-08-26T20:12:29.4658979Z adding 'torch/include/ATen/AccumulateType.h' 2025-08-26T20:12:29.4662126Z adding 'torch/include/ATen/ArrayRef.h' 2025-08-26T20:12:29.4664864Z adding 'torch/include/ATen/Backend.h' 2025-08-26T20:12:29.4668283Z adding 'torch/include/ATen/Backtrace.h' 2025-08-26T20:12:29.4670689Z adding 'torch/include/ATen/BlasBackend.h' 2025-08-26T20:12:29.4676010Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-08-26T20:12:29.4679622Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-08-26T20:12:29.4683561Z adding 'torch/include/ATen/CPUFunctions.h' 2025-08-26T20:12:29.4689446Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-08-26T20:12:29.4693295Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-08-26T20:12:29.4696819Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-08-26T20:12:29.4703662Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-08-26T20:12:29.4707838Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-08-26T20:12:29.4712284Z adding 'torch/include/ATen/CollapseDims.h' 2025-08-26T20:12:29.4715021Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-08-26T20:12:29.4722264Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-08-26T20:12:29.4726972Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-08-26T20:12:29.4732328Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-08-26T20:12:29.4736382Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-08-26T20:12:29.4742899Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-08-26T20:12:29.4747328Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-08-26T20:12:29.4750566Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-08-26T20:12:29.4753597Z adding 'torch/include/ATen/Config.h' 2025-08-26T20:12:29.4761981Z adding 'torch/include/ATen/Context.h' 2025-08-26T20:12:29.4766351Z adding 'torch/include/ATen/DLConvertor.h' 2025-08-26T20:12:29.4769724Z adding 'torch/include/ATen/Device.h' 2025-08-26T20:12:29.4773039Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-08-26T20:12:29.4776421Z adding 'torch/include/ATen/DeviceGuard.h' 2025-08-26T20:12:29.4779205Z adding 'torch/include/ATen/DimVector.h' 2025-08-26T20:12:29.4782045Z adding 'torch/include/ATen/Dimname.h' 2025-08-26T20:12:29.4790831Z adding 'torch/include/ATen/Dispatch.h' 2025-08-26T20:12:29.4799819Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-08-26T20:12:29.4804391Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-08-26T20:12:29.4807935Z adding 'torch/include/ATen/EmptyTensor.h' 2025-08-26T20:12:29.4811221Z adding 'torch/include/ATen/ExpandBase.h' 2025-08-26T20:12:29.4817159Z adding 'torch/include/ATen/ExpandUtils.h' 2025-08-26T20:12:29.4829477Z adding 'torch/include/ATen/Formatting.h' 2025-08-26T20:12:29.4829804Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-08-26T20:12:29.4830151Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-08-26T20:12:29.4837505Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-08-26T20:12:29.4849413Z adding 'torch/include/ATen/Functions.h' 2025-08-26T20:12:29.4853763Z adding 'torch/include/ATen/Generator.h' 2025-08-26T20:12:29.4857300Z adding 'torch/include/ATen/InferSize.h' 2025-08-26T20:12:29.4860370Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-08-26T20:12:29.4863036Z adding 'torch/include/ATen/Layout.h' 2025-08-26T20:12:29.4866333Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-08-26T20:12:29.4870689Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-08-26T20:12:29.4873955Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-08-26T20:12:29.4879078Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-08-26T20:12:29.4882514Z adding 'torch/include/ATen/LinalgBackend.h' 2025-08-26T20:12:29.4886265Z adding 'torch/include/ATen/MapAllocator.h' 2025-08-26T20:12:29.4890021Z adding 'torch/include/ATen/MatrixRef.h' 2025-08-26T20:12:29.4893211Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-08-26T20:12:29.4896556Z adding 'torch/include/ATen/MetaFunctions.h' 2025-08-26T20:12:29.4901167Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-08-26T20:12:29.4906957Z adding 'torch/include/ATen/MethodOperators.h' 2025-08-26T20:12:29.4909575Z adding 'torch/include/ATen/NamedTensor.h' 2025-08-26T20:12:29.4914040Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-08-26T20:12:29.4924887Z adding 'torch/include/ATen/NativeFunctions.h' 2025-08-26T20:12:29.4936749Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-08-26T20:12:29.4943426Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-08-26T20:12:29.4947296Z adding 'torch/include/ATen/NumericUtils.h' 2025-08-26T20:12:29.4950704Z adding 'torch/include/ATen/OpMathType.h' 2025-08-26T20:12:29.4954851Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-08-26T20:12:29.4966106Z adding 'torch/include/ATen/Operators.h' 2025-08-26T20:12:29.4970672Z adding 'torch/include/ATen/PTThreadPool.h' 2025-08-26T20:12:29.4973486Z adding 'torch/include/ATen/PadNd.h' 2025-08-26T20:12:29.4976824Z adding 'torch/include/ATen/Parallel-inl.h' 2025-08-26T20:12:29.4980983Z adding 'torch/include/ATen/Parallel.h' 2025-08-26T20:12:29.4984087Z adding 'torch/include/ATen/ParallelFuture.h' 2025-08-26T20:12:29.4986984Z adding 'torch/include/ATen/ParallelNative.h' 2025-08-26T20:12:29.4990143Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-08-26T20:12:29.4993349Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-08-26T20:12:29.4996375Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-08-26T20:12:29.5260002Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-08-26T20:12:29.5449790Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-08-26T20:12:29.5474536Z adding 'torch/include/ATen/SDPBackend.h' 2025-08-26T20:12:29.5478098Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-08-26T20:12:29.5480961Z adding 'torch/include/ATen/Scalar.h' 2025-08-26T20:12:29.5484371Z adding 'torch/include/ATen/ScalarOps.h' 2025-08-26T20:12:29.5487349Z adding 'torch/include/ATen/ScalarType.h' 2025-08-26T20:12:29.5490262Z adding 'torch/include/ATen/SequenceNumber.h' 2025-08-26T20:12:29.5493334Z adding 'torch/include/ATen/SmallVector.h' 2025-08-26T20:12:29.5498150Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-08-26T20:12:29.5504167Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-08-26T20:12:29.5510941Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-08-26T20:12:29.5514172Z adding 'torch/include/ATen/Storage.h' 2025-08-26T20:12:29.5517415Z adding 'torch/include/ATen/StorageUtils.h' 2025-08-26T20:12:29.5520190Z adding 'torch/include/ATen/Tensor.h' 2025-08-26T20:12:29.5522898Z adding 'torch/include/ATen/TensorAccessor.h' 2025-08-26T20:12:29.5526689Z adding 'torch/include/ATen/TensorGeometry.h' 2025-08-26T20:12:29.5536651Z adding 'torch/include/ATen/TensorIndexing.h' 2025-08-26T20:12:29.5552239Z adding 'torch/include/ATen/TensorIterator.h' 2025-08-26T20:12:29.5556620Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-08-26T20:12:29.5560663Z adding 'torch/include/ATen/TensorMeta.h' 2025-08-26T20:12:29.5564396Z adding 'torch/include/ATen/TensorNames.h' 2025-08-26T20:12:29.5568010Z adding 'torch/include/ATen/TensorOperators.h' 2025-08-26T20:12:29.5570769Z adding 'torch/include/ATen/TensorOptions.h' 2025-08-26T20:12:29.5574456Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-08-26T20:12:29.5578461Z adding 'torch/include/ATen/TensorUtils.h' 2025-08-26T20:12:29.5581744Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-08-26T20:12:29.5585795Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-08-26T20:12:29.5590280Z adding 'torch/include/ATen/TracerMode.h' 2025-08-26T20:12:29.5593498Z adding 'torch/include/ATen/TypeDefault.h' 2025-08-26T20:12:29.5597144Z adding 'torch/include/ATen/Utils.h' 2025-08-26T20:12:29.5600258Z adding 'torch/include/ATen/Version.h' 2025-08-26T20:12:29.5776186Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-08-26T20:12:29.5825830Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-08-26T20:12:29.5842452Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-08-26T20:12:29.5842830Z adding 'torch/include/ATen/autocast_mode.h' 2025-08-26T20:12:29.5845466Z adding 'torch/include/ATen/ceil_div.h' 2025-08-26T20:12:29.5850238Z adding 'torch/include/ATen/code_template.h' 2025-08-26T20:12:29.5854450Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-08-26T20:12:29.5857393Z adding 'torch/include/ATen/div_rtn.h' 2025-08-26T20:12:29.5863149Z adding 'torch/include/ATen/dlpack.h' 2025-08-26T20:12:29.5866539Z adding 'torch/include/ATen/jit_macros.h' 2025-08-26T20:12:29.5869780Z adding 'torch/include/ATen/jiterator_macros.h' 2025-08-26T20:12:29.5878993Z adding 'torch/include/ATen/record_function.h' 2025-08-26T20:12:29.5884482Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-08-26T20:12:29.5887534Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-08-26T20:12:29.5890553Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-08-26T20:12:29.5894550Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-08-26T20:12:29.5897883Z adding 'torch/include/ATen/core/Array.h' 2025-08-26T20:12:29.5900655Z adding 'torch/include/ATen/core/Backtrace.h' 2025-08-26T20:12:29.5911563Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-08-26T20:12:29.5915348Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-08-26T20:12:29.5919369Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-08-26T20:12:29.5922460Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-08-26T20:12:29.5929070Z adding 'torch/include/ATen/core/Dict.h' 2025-08-26T20:12:29.5933747Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-08-26T20:12:29.5936962Z adding 'torch/include/ATen/core/DimVector.h' 2025-08-26T20:12:29.5940094Z adding 'torch/include/ATen/core/Dimname.h' 2025-08-26T20:12:29.5945075Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-08-26T20:12:29.5948411Z adding 'torch/include/ATen/core/Formatting.h' 2025-08-26T20:12:29.5952929Z adding 'torch/include/ATen/core/Generator.h' 2025-08-26T20:12:29.5956397Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-08-26T20:12:29.5964684Z adding 'torch/include/ATen/core/IListRef.h' 2025-08-26T20:12:29.5969159Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-08-26T20:12:29.5973464Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-08-26T20:12:29.5980663Z adding 'torch/include/ATen/core/List.h' 2025-08-26T20:12:29.5985928Z adding 'torch/include/ATen/core/List_inl.h' 2025-08-26T20:12:29.5990728Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-08-26T20:12:29.5995046Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-08-26T20:12:29.5999563Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-08-26T20:12:29.6004567Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-08-26T20:12:29.6008031Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-08-26T20:12:29.6011017Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-08-26T20:12:29.6014495Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-08-26T20:12:29.6017939Z adding 'torch/include/ATen/core/Range.h' 2025-08-26T20:12:29.6020908Z adding 'torch/include/ATen/core/Reduction.h' 2025-08-26T20:12:29.6023591Z adding 'torch/include/ATen/core/Scalar.h' 2025-08-26T20:12:29.6026367Z adding 'torch/include/ATen/core/ScalarType.h' 2025-08-26T20:12:29.6029639Z adding 'torch/include/ATen/core/Tensor.h' 2025-08-26T20:12:29.6034200Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-08-26T20:12:29.6049510Z adding 'torch/include/ATen/core/TensorBase.h' 2025-08-26T20:12:29.6105208Z adding 'torch/include/ATen/core/TensorBody.h' 2025-08-26T20:12:29.6114937Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-08-26T20:12:29.6119120Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-08-26T20:12:29.6122127Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-08-26T20:12:29.6125107Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-08-26T20:12:29.6128928Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-08-26T20:12:29.6132518Z adding 'torch/include/ATen/core/Variadic.h' 2025-08-26T20:12:29.6136146Z adding 'torch/include/ATen/core/Vitals.h' 2025-08-26T20:12:29.6139984Z adding 'torch/include/ATen/core/alias_info.h' 2025-08-26T20:12:29.6155208Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-08-26T20:12:29.6160746Z adding 'torch/include/ATen/core/blob.h' 2025-08-26T20:12:29.6164270Z adding 'torch/include/ATen/core/builtin_function.h' 2025-08-26T20:12:29.6170675Z adding 'torch/include/ATen/core/class_type.h' 2025-08-26T20:12:29.6174244Z adding 'torch/include/ATen/core/custom_class.h' 2025-08-26T20:12:29.6179756Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-08-26T20:12:29.6183230Z adding 'torch/include/ATen/core/enum_tag.h' 2025-08-26T20:12:29.6186872Z adding 'torch/include/ATen/core/enum_type.h' 2025-08-26T20:12:29.6190697Z adding 'torch/include/ATen/core/function.h' 2025-08-26T20:12:29.6200562Z adding 'torch/include/ATen/core/function_schema.h' 2025-08-26T20:12:29.6204584Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-08-26T20:12:29.6207911Z adding 'torch/include/ATen/core/functional.h' 2025-08-26T20:12:29.6210759Z adding 'torch/include/ATen/core/grad_mode.h' 2025-08-26T20:12:29.6216315Z adding 'torch/include/ATen/core/interned_strings.h' 2025-08-26T20:12:29.6219755Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-08-26T20:12:29.6239298Z adding 'torch/include/ATen/core/ivalue.h' 2025-08-26T20:12:29.6269646Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-08-26T20:12:29.6274763Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-08-26T20:12:29.6297484Z adding 'torch/include/ATen/core/jit_type.h' 2025-08-26T20:12:29.6307714Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-08-26T20:12:29.6313468Z adding 'torch/include/ATen/core/operator_name.h' 2025-08-26T20:12:29.6317823Z adding 'torch/include/ATen/core/qualified_name.h' 2025-08-26T20:12:29.6321202Z adding 'torch/include/ATen/core/rref_interface.h' 2025-08-26T20:12:29.6325720Z adding 'torch/include/ATen/core/stack.h' 2025-08-26T20:12:29.6330347Z adding 'torch/include/ATen/core/symbol.h' 2025-08-26T20:12:29.6334048Z adding 'torch/include/ATen/core/type_factory.h' 2025-08-26T20:12:29.6337587Z adding 'torch/include/ATen/core/type_ptr.h' 2025-08-26T20:12:29.6376351Z adding 'torch/include/ATen/core/typeid.h' 2025-08-26T20:12:29.6376830Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-08-26T20:12:29.6377242Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-08-26T20:12:29.6377661Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-08-26T20:12:29.6378089Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-08-26T20:12:29.6378524Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-08-26T20:12:29.6379001Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-08-26T20:12:29.6379605Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-08-26T20:12:29.6382433Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-08-26T20:12:29.6392745Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-08-26T20:12:29.6397475Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-08-26T20:12:29.6402234Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-08-26T20:12:29.6408035Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-08-26T20:12:29.6421434Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-08-26T20:12:29.6425288Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-08-26T20:12:29.6431891Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-08-26T20:12:29.6435291Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-08-26T20:12:29.6438396Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-08-26T20:12:29.6442731Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-08-26T20:12:29.6447191Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-08-26T20:12:29.6451852Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-08-26T20:12:29.6460302Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-08-26T20:12:29.6464793Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-08-26T20:12:29.6467832Z adding 'torch/include/ATen/cpu/Utils.h' 2025-08-26T20:12:29.6472078Z adding 'torch/include/ATen/cpu/vml.h' 2025-08-26T20:12:29.6476655Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-08-26T20:12:29.6481702Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-08-26T20:12:29.6488346Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-08-26T20:12:29.6491856Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-08-26T20:12:29.6495050Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-08-26T20:12:29.6508196Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-08-26T20:12:29.6512695Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-08-26T20:12:29.6516388Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-08-26T20:12:29.6521281Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-08-26T20:12:29.6526734Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-08-26T20:12:29.6530960Z adding 'torch/include/ATen/cpu/vec/vec_quant.h' 2025-08-26T20:12:29.6535371Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-08-26T20:12:29.6541797Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-08-26T20:12:29.6546635Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-08-26T20:12:29.6552712Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-08-26T20:12:29.6561002Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-08-26T20:12:29.6568051Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-08-26T20:12:29.6574618Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-08-26T20:12:29.6578995Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-08-26T20:12:29.6585739Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-08-26T20:12:29.6589669Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-08-26T20:12:29.6596253Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-08-26T20:12:29.6603330Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-08-26T20:12:29.6608494Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-08-26T20:12:29.6612533Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-08-26T20:12:29.6615375Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-08-26T20:12:29.6620474Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-08-26T20:12:29.6628921Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-08-26T20:12:29.6633957Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-08-26T20:12:29.6641200Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-08-26T20:12:29.6649370Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-08-26T20:12:29.6654611Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-08-26T20:12:29.6660226Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-08-26T20:12:29.6669148Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-08-26T20:12:29.6673893Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-08-26T20:12:29.6688589Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-08-26T20:12:29.6694461Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-08-26T20:12:29.6705828Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-08-26T20:12:29.6711253Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-08-26T20:12:29.6715758Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-08-26T20:12:29.6723646Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-08-26T20:12:29.6732512Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-08-26T20:12:29.6738616Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-08-26T20:12:29.6744793Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-08-26T20:12:29.6750402Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-08-26T20:12:29.6755784Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-08-26T20:12:29.6761093Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-08-26T20:12:29.6766474Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-08-26T20:12:29.6772895Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-08-26T20:12:29.6779561Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-08-26T20:12:29.6787545Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-08-26T20:12:29.6812646Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-08-26T20:12:29.6821021Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-08-26T20:12:29.6837492Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-08-26T20:12:29.6847670Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-08-26T20:12:29.6859254Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-08-26T20:12:29.6865454Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-08-26T20:12:29.6871947Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-08-26T20:12:29.6882382Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-08-26T20:12:29.6890637Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-08-26T20:12:29.6903725Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-08-26T20:12:29.6910344Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-08-26T20:12:29.6921775Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-08-26T20:12:29.6927603Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-08-26T20:12:29.6930789Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-08-26T20:12:29.6934423Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-08-26T20:12:29.6941359Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-08-26T20:12:29.6949742Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-08-26T20:12:29.6955482Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-08-26T20:12:29.6959014Z adding 'torch/include/ATen/cuda/CUDAConfig.h' 2025-08-26T20:12:29.6961944Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-08-26T20:12:29.6965740Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-08-26T20:12:29.6969208Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-08-26T20:12:29.6972303Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-08-26T20:12:29.6977263Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-08-26T20:12:29.6981986Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-08-26T20:12:29.6985901Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-08-26T20:12:29.6989351Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-08-26T20:12:29.6992774Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-08-26T20:12:29.6997255Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-08-26T20:12:29.7001885Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-08-26T20:12:29.7005056Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-08-26T20:12:29.7008115Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-08-26T20:12:29.7011526Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-08-26T20:12:29.7015022Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-08-26T20:12:29.7018198Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-08-26T20:12:29.7022772Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-08-26T20:12:29.7026733Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-08-26T20:12:29.7029841Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-08-26T20:12:29.7032631Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-08-26T20:12:29.7035370Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-08-26T20:12:29.7038279Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-08-26T20:12:29.7041490Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-08-26T20:12:29.7044484Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-08-26T20:12:29.7047662Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-08-26T20:12:29.7051276Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-08-26T20:12:29.7059170Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-08-26T20:12:29.7063391Z adding 'torch/include/ATen/cuda/cub.h' 2025-08-26T20:12:29.7066740Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-08-26T20:12:29.7069815Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-08-26T20:12:29.7074054Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-08-26T20:12:29.7077187Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-08-26T20:12:29.7081556Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-08-26T20:12:29.7086723Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-08-26T20:12:29.7090078Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-08-26T20:12:29.7094092Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-08-26T20:12:29.7097504Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-08-26T20:12:29.7100436Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-08-26T20:12:29.7104279Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-08-26T20:12:29.7107662Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-08-26T20:12:29.7111242Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-08-26T20:12:29.7114651Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-08-26T20:12:29.7121885Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-08-26T20:12:29.7129345Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-08-26T20:12:29.7134358Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-08-26T20:12:29.7137801Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-08-26T20:12:29.7142277Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-08-26T20:12:29.7146809Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-08-26T20:12:29.7153404Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-08-26T20:12:29.7161059Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-08-26T20:12:29.7164411Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-08-26T20:12:29.7167281Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-08-26T20:12:29.7170162Z adding 'torch/include/ATen/cudnn/Types.h' 2025-08-26T20:12:29.7173108Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-08-26T20:12:29.7176155Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-08-26T20:12:29.7180643Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-08-26T20:12:29.7185043Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-08-26T20:12:29.7188692Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-08-26T20:12:29.7192171Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-08-26T20:12:29.7195449Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-08-26T20:12:29.7198679Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-08-26T20:12:29.7201885Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-08-26T20:12:29.7205488Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-08-26T20:12:29.7209327Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-08-26T20:12:29.7212975Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-08-26T20:12:29.7216278Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-08-26T20:12:29.7220466Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-08-26T20:12:29.7227083Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-08-26T20:12:29.7231199Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-08-26T20:12:29.7235818Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-08-26T20:12:29.7239955Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-08-26T20:12:29.7244484Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-08-26T20:12:29.7248176Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-08-26T20:12:29.7254189Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-08-26T20:12:29.7259779Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-08-26T20:12:29.7262805Z adding 'torch/include/ATen/functorch/Macros.h' 2025-08-26T20:12:29.7266441Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-08-26T20:12:29.7270472Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-08-26T20:12:29.7273707Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-08-26T20:12:29.7279472Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-08-26T20:12:29.7283617Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-08-26T20:12:29.7289866Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-08-26T20:12:29.7294144Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-08-26T20:12:29.7298014Z adding 'torch/include/ATen/metal/Context.h' 2025-08-26T20:12:29.7303059Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-08-26T20:12:29.7306419Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-08-26T20:12:29.7309307Z adding 'torch/include/ATen/miopen/Handle.h' 2025-08-26T20:12:29.7312187Z adding 'torch/include/ATen/miopen/Types.h' 2025-08-26T20:12:29.7315061Z adding 'torch/include/ATen/miopen/Utils.h' 2025-08-26T20:12:29.7318052Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-08-26T20:12:29.7321938Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-08-26T20:12:29.7325920Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-08-26T20:12:29.7334553Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-08-26T20:12:29.7338596Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-08-26T20:12:29.7342028Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-08-26T20:12:29.7345844Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-08-26T20:12:29.7349452Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-08-26T20:12:29.7354096Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-08-26T20:12:29.7358077Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-08-26T20:12:29.7365888Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-08-26T20:12:29.7370618Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-08-26T20:12:29.7377445Z adding 'torch/include/ATen/native/Activation.h' 2025-08-26T20:12:29.7381434Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-08-26T20:12:29.7384977Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-08-26T20:12:29.7389956Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-08-26T20:12:29.7394397Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-08-26T20:12:29.7399783Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-08-26T20:12:29.7404831Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-08-26T20:12:29.7408856Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-08-26T20:12:29.7412003Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-08-26T20:12:29.7415827Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-08-26T20:12:29.7419262Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-08-26T20:12:29.7423519Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-08-26T20:12:29.7430583Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-08-26T20:12:29.7434168Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-08-26T20:12:29.7436995Z adding 'torch/include/ATen/native/Copy.h' 2025-08-26T20:12:29.7439883Z adding 'torch/include/ATen/native/Cross.h' 2025-08-26T20:12:29.7444329Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-08-26T20:12:29.7450405Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-08-26T20:12:29.7453854Z adding 'torch/include/ATen/native/Distance.h' 2025-08-26T20:12:29.7460634Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-08-26T20:12:29.7469639Z adding 'torch/include/ATen/native/Distributions.h' 2025-08-26T20:12:29.7474120Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-08-26T20:12:29.7477208Z adding 'torch/include/ATen/native/Fill.h' 2025-08-26T20:12:29.7483400Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-08-26T20:12:29.7487386Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-08-26T20:12:29.7490579Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-08-26T20:12:29.7493595Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-08-26T20:12:29.7496612Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-08-26T20:12:29.7499555Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-08-26T20:12:29.7502692Z adding 'torch/include/ATen/native/Gelu.h' 2025-08-26T20:12:29.7507280Z adding 'torch/include/ATen/native/GridSampler.h' 2025-08-26T20:12:29.7511160Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-08-26T20:12:29.7514228Z adding 'torch/include/ATen/native/Histogram.h' 2025-08-26T20:12:29.7517374Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-08-26T20:12:29.7521594Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-08-26T20:12:29.7525267Z adding 'torch/include/ATen/native/Lerp.h' 2025-08-26T20:12:29.7528145Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-08-26T20:12:29.7539069Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-08-26T20:12:29.7543001Z adding 'torch/include/ATen/native/LossMulti.h' 2025-08-26T20:12:29.7589318Z adding 'torch/include/ATen/native/Math.h' 2025-08-26T20:12:29.7596001Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-08-26T20:12:29.7600825Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-08-26T20:12:29.7604526Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-08-26T20:12:29.7607781Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-08-26T20:12:29.7611154Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-08-26T20:12:29.7614205Z adding 'torch/include/ATen/native/Normalization.h' 2025-08-26T20:12:29.7617429Z adding 'torch/include/ATen/native/Padding.h' 2025-08-26T20:12:29.7620627Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-08-26T20:12:29.7623646Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-08-26T20:12:29.7629042Z adding 'torch/include/ATen/native/Pool.h' 2025-08-26T20:12:29.7632644Z adding 'torch/include/ATen/native/Pow.h' 2025-08-26T20:12:29.7635984Z adding 'torch/include/ATen/native/RNN.h' 2025-08-26T20:12:29.7638991Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-08-26T20:12:29.7642366Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-08-26T20:12:29.7646096Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-08-26T20:12:29.7648828Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-08-26T20:12:29.7655983Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-08-26T20:12:29.7659672Z adding 'torch/include/ATen/native/ReductionType.h' 2025-08-26T20:12:29.7663194Z adding 'torch/include/ATen/native/Repeat.h' 2025-08-26T20:12:29.7668014Z adding 'torch/include/ATen/native/Resize.h' 2025-08-26T20:12:29.7671923Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-08-26T20:12:29.7675749Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-08-26T20:12:29.7678874Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-08-26T20:12:29.7684535Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-08-26T20:12:29.7688674Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-08-26T20:12:29.7691627Z adding 'torch/include/ATen/native/Sorting.h' 2025-08-26T20:12:29.7695095Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-08-26T20:12:29.7699760Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-08-26T20:12:29.7703714Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-08-26T20:12:29.7707953Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-08-26T20:12:29.7711696Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-08-26T20:12:29.7715524Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-08-26T20:12:29.7718860Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-08-26T20:12:29.7722070Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-08-26T20:12:29.7725420Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-08-26T20:12:29.7729811Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-08-26T20:12:29.7732868Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-08-26T20:12:29.7736309Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-08-26T20:12:29.7739334Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-08-26T20:12:29.7743305Z adding 'torch/include/ATen/native/TensorShape.h' 2025-08-26T20:12:29.7746749Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-08-26T20:12:29.7750201Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-08-26T20:12:29.7753486Z adding 'torch/include/ATen/native/TransposeType.h' 2025-08-26T20:12:29.7756975Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-08-26T20:12:29.7760031Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-08-26T20:12:29.7763696Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-08-26T20:12:29.7766945Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-08-26T20:12:29.7770037Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-08-26T20:12:29.7773659Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-08-26T20:12:29.7781099Z adding 'torch/include/ATen/native/UpSample.h' 2025-08-26T20:12:29.7784794Z adding 'torch/include/ATen/native/batch_norm.h' 2025-08-26T20:12:29.7788059Z adding 'torch/include/ATen/native/group_norm.h' 2025-08-26T20:12:29.7791744Z adding 'torch/include/ATen/native/im2col.h' 2025-08-26T20:12:29.7796138Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-08-26T20:12:29.7800690Z adding 'torch/include/ATen/native/layer_norm.h' 2025-08-26T20:12:29.7803876Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-08-26T20:12:29.7807344Z adding 'torch/include/ATen/native/vol2col.h' 2025-08-26T20:12:29.7813099Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-08-26T20:12:29.7816930Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-08-26T20:12:29.7820704Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-08-26T20:12:29.7825317Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-08-26T20:12:29.7828409Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-08-26T20:12:29.7831391Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-08-26T20:12:29.7834355Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-08-26T20:12:29.7837366Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-08-26T20:12:29.7843522Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-08-26T20:12:29.7847911Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-08-26T20:12:29.7851933Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-08-26T20:12:29.7855471Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-08-26T20:12:29.7859473Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-08-26T20:12:29.7863197Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-08-26T20:12:29.7866721Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-08-26T20:12:29.7870316Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-08-26T20:12:29.7875972Z adding 'torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h' 2025-08-26T20:12:29.7882257Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-08-26T20:12:29.7885969Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-08-26T20:12:29.7889007Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-08-26T20:12:29.7894792Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-08-26T20:12:29.7899736Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-08-26T20:12:29.7903406Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-08-26T20:12:29.7906219Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-08-26T20:12:29.7910425Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-08-26T20:12:29.7913666Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-08-26T20:12:29.7916896Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-08-26T20:12:29.7919829Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-08-26T20:12:29.7935384Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-08-26T20:12:29.7939702Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-08-26T20:12:29.7946089Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-08-26T20:12:29.7949952Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-08-26T20:12:29.7953160Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-08-26T20:12:29.7958311Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-08-26T20:12:29.7963284Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-08-26T20:12:29.7967672Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-08-26T20:12:29.7973035Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-08-26T20:12:29.7976287Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-08-26T20:12:29.7982484Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-08-26T20:12:29.7993673Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-08-26T20:12:29.7997855Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-08-26T20:12:29.8002058Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-08-26T20:12:29.8010177Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-08-26T20:12:29.8014112Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-08-26T20:12:29.8017560Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-08-26T20:12:29.8026624Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-08-26T20:12:29.8030500Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-08-26T20:12:29.8033652Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-08-26T20:12:29.8039104Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-08-26T20:12:29.8042838Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-08-26T20:12:29.8047869Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-08-26T20:12:29.8051277Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-08-26T20:12:29.8054331Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-08-26T20:12:29.8058595Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-08-26T20:12:29.8061849Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-08-26T20:12:29.8065287Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-08-26T20:12:29.8070019Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-08-26T20:12:29.8075924Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-08-26T20:12:29.8079452Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-08-26T20:12:29.8084799Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-08-26T20:12:29.8119284Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-08-26T20:12:29.8130303Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-08-26T20:12:29.8134109Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-08-26T20:12:29.8139678Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-08-26T20:12:29.8158315Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-08-26T20:12:29.8166281Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-08-26T20:12:29.8170041Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-08-26T20:12:29.8173741Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-08-26T20:12:29.8191204Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-08-26T20:12:29.8195514Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-08-26T20:12:29.8198775Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-08-26T20:12:29.8201804Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-08-26T20:12:29.8204764Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-08-26T20:12:29.8207843Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-08-26T20:12:29.8214848Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-08-26T20:12:29.8218528Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-08-26T20:12:29.8221601Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-08-26T20:12:29.8227058Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-08-26T20:12:29.8230461Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-08-26T20:12:29.8234500Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-08-26T20:12:29.8240523Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-08-26T20:12:29.8248040Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-08-26T20:12:29.8251395Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-08-26T20:12:29.8254251Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-08-26T20:12:29.8257132Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-08-26T20:12:29.8262318Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-08-26T20:12:29.8266326Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-08-26T20:12:29.8269606Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-08-26T20:12:29.8272615Z adding 'torch/include/ATen/native/cuda/fused_adagrad_impl.cuh' 2025-08-26T20:12:29.8276634Z adding 'torch/include/ATen/native/cuda/fused_adagrad_utils.cuh' 2025-08-26T20:12:29.8279845Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-08-26T20:12:29.8282912Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-08-26T20:12:29.8287613Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-08-26T20:12:29.8291055Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-08-26T20:12:29.8294062Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-08-26T20:12:29.8298766Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-08-26T20:12:29.8303657Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-08-26T20:12:29.8311882Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-08-26T20:12:29.8315681Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-08-26T20:12:29.8320580Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-08-26T20:12:29.8324734Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-08-26T20:12:29.8327982Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-08-26T20:12:29.8333281Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-08-26T20:12:29.8337061Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-08-26T20:12:29.8341402Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-08-26T20:12:29.8346304Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-08-26T20:12:29.8350805Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-08-26T20:12:29.8354964Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-08-26T20:12:29.8359144Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-08-26T20:12:29.8364418Z adding 'torch/include/ATen/native/mkldnn/xpu/Conv.h' 2025-08-26T20:12:29.8368453Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-08-26T20:12:29.8377013Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-08-26T20:12:29.8384708Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-08-26T20:12:29.8388869Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-08-26T20:12:29.8392966Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-08-26T20:12:29.8396981Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-08-26T20:12:29.8400834Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-08-26T20:12:29.8404868Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-08-26T20:12:29.8408302Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-08-26T20:12:29.8411616Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-08-26T20:12:29.8416012Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-08-26T20:12:29.8420381Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-08-26T20:12:29.8428753Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-08-26T20:12:29.8432643Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-08-26T20:12:29.8436575Z adding 'torch/include/ATen/native/mps/kernels/GridSampler.h' 2025-08-26T20:12:29.8439785Z adding 'torch/include/ATen/native/mps/kernels/Pooling.h' 2025-08-26T20:12:29.8442736Z adding 'torch/include/ATen/native/mps/kernels/UpSample.h' 2025-08-26T20:12:29.8446675Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-08-26T20:12:29.8449822Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-08-26T20:12:29.8452823Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-08-26T20:12:29.8455888Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-08-26T20:12:29.8458830Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-08-26T20:12:29.8464624Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-08-26T20:12:29.8468868Z adding 'torch/include/ATen/native/mtia/EmptyTensor.h' 2025-08-26T20:12:29.8472760Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-08-26T20:12:29.8476244Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-08-26T20:12:29.8479854Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-08-26T20:12:29.8483056Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-08-26T20:12:29.8489797Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-08-26T20:12:29.8494452Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-08-26T20:12:29.8497974Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-08-26T20:12:29.8501240Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-08-26T20:12:29.8504132Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-08-26T20:12:29.8507317Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-08-26T20:12:29.8510275Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-08-26T20:12:29.8513793Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-08-26T20:12:29.8516721Z adding 'torch/include/ATen/native/quantized/library.h' 2025-08-26T20:12:29.8522283Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-08-26T20:12:29.8525638Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-08-26T20:12:29.8528750Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-08-26T20:12:29.8534380Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-08-26T20:12:29.8541410Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-08-26T20:12:29.8547039Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-08-26T20:12:29.8551639Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-08-26T20:12:29.8554874Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-08-26T20:12:29.8560081Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-08-26T20:12:29.8566058Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-08-26T20:12:29.8571415Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-08-26T20:12:29.8574649Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-08-26T20:12:29.8577859Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-08-26T20:12:29.8581079Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-08-26T20:12:29.8583967Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-08-26T20:12:29.8587098Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-08-26T20:12:29.8592895Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-08-26T20:12:29.8597366Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-08-26T20:12:29.8601016Z adding 'torch/include/ATen/native/transformers/sdp_utils.h' 2025-08-26T20:12:29.8607867Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-08-26T20:12:29.8612198Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-08-26T20:12:29.8616678Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-08-26T20:12:29.8620305Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-08-26T20:12:29.8625967Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-08-26T20:12:29.8630901Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-08-26T20:12:29.8660138Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-08-26T20:12:29.8680576Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-08-26T20:12:29.8701649Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-08-26T20:12:29.8702429Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-08-26T20:12:29.8703346Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-08-26T20:12:29.8707325Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-08-26T20:12:29.8711646Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-08-26T20:12:29.8716228Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-08-26T20:12:29.8727913Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-08-26T20:12:29.8734907Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-08-26T20:12:29.8739551Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-08-26T20:12:29.8745047Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-08-26T20:12:29.8765323Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-08-26T20:12:29.8773296Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-08-26T20:12:29.8779955Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-08-26T20:12:29.8784711Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-08-26T20:12:29.8796271Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-08-26T20:12:29.8808090Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-08-26T20:12:29.8811925Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-08-26T20:12:29.8817460Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-08-26T20:12:29.8831331Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-08-26T20:12:29.8838772Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-08-26T20:12:29.8862325Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-08-26T20:12:29.8863020Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-08-26T20:12:29.8863587Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-08-26T20:12:29.8864166Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-08-26T20:12:29.8868084Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-08-26T20:12:29.8870343Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-08-26T20:12:29.8874134Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-08-26T20:12:29.9059382Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-08-26T20:12:29.9062625Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-08-26T20:12:29.9065956Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9068985Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-08-26T20:12:29.9072049Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-08-26T20:12:29.9075017Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-08-26T20:12:29.9078193Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-08-26T20:12:29.9081458Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9084453Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-08-26T20:12:29.9087636Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-08-26T20:12:29.9090616Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-08-26T20:12:29.9093828Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-08-26T20:12:29.9097159Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-08-26T20:12:29.9100580Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-08-26T20:12:29.9103818Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9106930Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-08-26T20:12:29.9109961Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-08-26T20:12:29.9113144Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-08-26T20:12:29.9116341Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-08-26T20:12:29.9119752Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9123524Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-08-26T20:12:29.9126055Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-08-26T20:12:29.9129552Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-08-26T20:12:29.9132364Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-08-26T20:12:29.9135726Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-08-26T20:12:29.9139016Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9142061Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-08-26T20:12:29.9145147Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-08-26T20:12:29.9148535Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-08-26T20:12:29.9152597Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9154983Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-08-26T20:12:29.9158236Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-08-26T20:12:29.9161198Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-08-26T20:12:29.9164821Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-08-26T20:12:29.9168260Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-08-26T20:12:29.9171865Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:29.9175431Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-08-26T20:12:29.9178031Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-08-26T20:12:29.9181188Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-08-26T20:12:29.9184355Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-08-26T20:12:29.9187532Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-08-26T20:12:29.9190804Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-08-26T20:12:29.9194199Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-08-26T20:12:29.9198458Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9200667Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-08-26T20:12:29.9204142Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-08-26T20:12:29.9207071Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-08-26T20:12:29.9210514Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-08-26T20:12:29.9213916Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-08-26T20:12:29.9217454Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9221403Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-08-26T20:12:29.9223679Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-08-26T20:12:29.9227207Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-08-26T20:12:29.9230141Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-08-26T20:12:29.9233454Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-08-26T20:12:29.9236806Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9239988Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-08-26T20:12:29.9244012Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-08-26T20:12:29.9246451Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-08-26T20:12:29.9250057Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-08-26T20:12:29.9253104Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-08-26T20:12:29.9256414Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-08-26T20:12:29.9259567Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-08-26T20:12:29.9262822Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-08-26T20:12:29.9265814Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-08-26T20:12:29.9269158Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-08-26T20:12:29.9273128Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-08-26T20:12:29.9275593Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9278959Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-08-26T20:12:29.9281810Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-08-26T20:12:29.9287074Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-08-26T20:12:29.9290736Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9293921Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-08-26T20:12:29.9297036Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-08-26T20:12:29.9300278Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-08-26T20:12:29.9303428Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-08-26T20:12:29.9307699Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9309788Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-08-26T20:12:29.9313399Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-08-26T20:12:29.9316029Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-08-26T20:12:29.9319420Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9322312Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-08-26T20:12:29.9325800Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-08-26T20:12:29.9328742Z adding 'torch/include/ATen/ops/_backward.h' 2025-08-26T20:12:29.9332145Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9335015Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-08-26T20:12:29.9338381Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-08-26T20:12:29.9342012Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-08-26T20:12:29.9344913Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-08-26T20:12:29.9357620Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9358290Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-08-26T20:12:29.9358816Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-08-26T20:12:29.9359421Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9363376Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-08-26T20:12:29.9365510Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-08-26T20:12:29.9369514Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-08-26T20:12:29.9372456Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9375629Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-08-26T20:12:29.9378977Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-08-26T20:12:29.9382616Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-08-26T20:12:29.9385992Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9389086Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-08-26T20:12:29.9392750Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-08-26T20:12:29.9395604Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-08-26T20:12:29.9399102Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-08-26T20:12:29.9402185Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-08-26T20:12:29.9405441Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9408732Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-08-26T20:12:29.9411646Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-08-26T20:12:29.9414694Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-08-26T20:12:29.9417867Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9420695Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-08-26T20:12:29.9423777Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-08-26T20:12:29.9426746Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-08-26T20:12:29.9430039Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9432842Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-08-26T20:12:29.9435925Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-08-26T20:12:29.9439805Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-08-26T20:12:29.9442359Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9445238Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-08-26T20:12:29.9448868Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-08-26T20:12:29.9451791Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-08-26T20:12:29.9454987Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9457791Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-08-26T20:12:29.9460886Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-08-26T20:12:29.9463938Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-08-26T20:12:29.9467105Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9469955Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-08-26T20:12:29.9473022Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-08-26T20:12:29.9476031Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-08-26T20:12:29.9479202Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9482016Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-08-26T20:12:29.9485099Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-08-26T20:12:29.9488267Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-08-26T20:12:29.9491440Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9495396Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-08-26T20:12:29.9497525Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-08-26T20:12:29.9500951Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-08-26T20:12:29.9504280Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9507177Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-08-26T20:12:29.9510264Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-08-26T20:12:29.9513613Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-08-26T20:12:29.9516849Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-08-26T20:12:29.9520111Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-08-26T20:12:29.9523408Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9526618Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-08-26T20:12:29.9529761Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-08-26T20:12:29.9532809Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-08-26T20:12:29.9536136Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-08-26T20:12:29.9539325Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-08-26T20:12:29.9542776Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9545752Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-08-26T20:12:29.9548939Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-08-26T20:12:29.9551927Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-08-26T20:12:29.9555218Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-08-26T20:12:29.9558388Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-08-26T20:12:29.9561687Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9564672Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-08-26T20:12:29.9567903Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-08-26T20:12:29.9571073Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-08-26T20:12:29.9574424Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9577505Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-08-26T20:12:29.9580511Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-08-26T20:12:29.9583817Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-08-26T20:12:29.9586984Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-08-26T20:12:29.9590342Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9593283Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-08-26T20:12:29.9596655Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-08-26T20:12:29.9599927Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-08-26T20:12:29.9603204Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9606415Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-08-26T20:12:29.9609404Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-08-26T20:12:29.9612700Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-08-26T20:12:29.9616090Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-08-26T20:12:29.9619266Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-08-26T20:12:29.9622505Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-08-26T20:12:29.9625501Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-08-26T20:12:29.9628794Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-08-26T20:12:29.9631901Z adding 'torch/include/ATen/ops/_conj.h' 2025-08-26T20:12:29.9635247Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9638346Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-08-26T20:12:29.9641616Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9644926Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:29.9647882Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-08-26T20:12:29.9651158Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-08-26T20:12:29.9654175Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-08-26T20:12:29.9657474Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-08-26T20:12:29.9660600Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-08-26T20:12:29.9664016Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9666973Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-08-26T20:12:29.9670216Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-08-26T20:12:29.9673990Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-08-26T20:12:29.9677449Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-08-26T20:12:29.9680646Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-08-26T20:12:29.9683994Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-08-26T20:12:29.9687364Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-08-26T20:12:29.9690940Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:29.9693884Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-08-26T20:12:29.9697139Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-08-26T20:12:29.9700142Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-08-26T20:12:29.9703417Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-08-26T20:12:29.9706486Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-08-26T20:12:29.9709875Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-08-26T20:12:29.9713187Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-08-26T20:12:29.9716565Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:29.9719723Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-08-26T20:12:29.9722878Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-08-26T20:12:29.9726140Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-08-26T20:12:29.9729393Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-08-26T20:12:29.9732543Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-08-26T20:12:29.9735870Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-08-26T20:12:29.9738997Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-08-26T20:12:29.9742288Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-08-26T20:12:29.9745308Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-08-26T20:12:29.9748576Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-08-26T20:12:29.9751532Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-08-26T20:12:29.9754812Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-08-26T20:12:29.9757811Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-08-26T20:12:29.9761081Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-08-26T20:12:29.9765010Z adding 'torch/include/ATen/ops/_convolution.h' 2025-08-26T20:12:29.9768979Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9772312Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9775677Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-08-26T20:12:29.9779317Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9782338Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-08-26T20:12:29.9785829Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-08-26T20:12:29.9789111Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-08-26T20:12:29.9792550Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:29.9795507Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-08-26T20:12:29.9798749Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-08-26T20:12:29.9802234Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-08-26T20:12:29.9805512Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-08-26T20:12:29.9808974Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-08-26T20:12:29.9812311Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-08-26T20:12:29.9815811Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9818700Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-08-26T20:12:29.9821845Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-08-26T20:12:29.9825325Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9828145Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-08-26T20:12:29.9831353Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-08-26T20:12:29.9834479Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-08-26T20:12:29.9837569Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-08-26T20:12:29.9840561Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-08-26T20:12:29.9843744Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-08-26T20:12:29.9846963Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-08-26T20:12:29.9850231Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-08-26T20:12:29.9853166Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-08-26T20:12:29.9856388Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-08-26T20:12:29.9859527Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-08-26T20:12:29.9862673Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-08-26T20:12:29.9865679Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-08-26T20:12:29.9868911Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-08-26T20:12:29.9872250Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-08-26T20:12:29.9875698Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-08-26T20:12:29.9879369Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9882199Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-08-26T20:12:29.9885463Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-08-26T20:12:29.9888546Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-08-26T20:12:29.9891894Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-08-26T20:12:29.9895235Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9898257Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-08-26T20:12:29.9901400Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-08-26T20:12:29.9904485Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-08-26T20:12:29.9907580Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-08-26T20:12:29.9911031Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-08-26T20:12:29.9914566Z adding 'torch/include/ATen/ops/_cudnn_attention_backward.h' 2025-08-26T20:12:29.9917889Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h' 2025-08-26T20:12:29.9920978Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_native.h' 2025-08-26T20:12:29.9924276Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_ops.h' 2025-08-26T20:12:29.9928992Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-08-26T20:12:29.9931389Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-08-26T20:12:29.9934445Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-08-26T20:12:29.9937745Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-08-26T20:12:29.9941026Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-08-26T20:12:29.9944388Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9947456Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-08-26T20:12:29.9950482Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-08-26T20:12:29.9953901Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-08-26T20:12:29.9957240Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-08-26T20:12:29.9960539Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9963606Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-08-26T20:12:29.9966703Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-08-26T20:12:29.9969964Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-08-26T20:12:29.9973872Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-08-26T20:12:29.9978324Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-08-26T20:12:29.9982437Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9985703Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-08-26T20:12:29.9988878Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-08-26T20:12:29.9992489Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-08-26T20:12:29.9996100Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:29.9999232Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-08-26T20:12:30.0002788Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-08-26T20:12:30.0006527Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0009614Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-08-26T20:12:30.0012722Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-08-26T20:12:30.0015932Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-08-26T20:12:30.0019077Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-08-26T20:12:30.0022610Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-08-26T20:12:30.0025786Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-08-26T20:12:30.0029700Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.0032660Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-08-26T20:12:30.0035777Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-08-26T20:12:30.0038814Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-08-26T20:12:30.0042034Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.0044937Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-08-26T20:12:30.0048199Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-08-26T20:12:30.0051179Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-08-26T20:12:30.0054381Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.0057273Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-08-26T20:12:30.0060303Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-08-26T20:12:30.0063295Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-08-26T20:12:30.0066516Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.0069352Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-08-26T20:12:30.0072469Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-08-26T20:12:30.0075463Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-08-26T20:12:30.0078566Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-08-26T20:12:30.0081583Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-08-26T20:12:30.0084516Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-08-26T20:12:30.0087744Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-08-26T20:12:30.0090740Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-08-26T20:12:30.0093838Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-08-26T20:12:30.0096863Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-08-26T20:12:30.0099823Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-08-26T20:12:30.0102911Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-08-26T20:12:30.0105931Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-08-26T20:12:30.0109108Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.0111956Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-08-26T20:12:30.0114972Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-08-26T20:12:30.0117827Z adding 'torch/include/ATen/ops/_dimI.h' 2025-08-26T20:12:30.0120801Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-08-26T20:12:30.0123883Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-08-26T20:12:30.0126974Z adding 'torch/include/ATen/ops/_dimV.h' 2025-08-26T20:12:30.0129993Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-08-26T20:12:30.0132997Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-08-26T20:12:30.0136013Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-08-26T20:12:30.0139163Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.0142009Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-08-26T20:12:30.0145083Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-08-26T20:12:30.0148191Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-08-26T20:12:30.0151413Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0154560Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-08-26T20:12:30.0157610Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-08-26T20:12:30.0162726Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-08-26T20:12:30.0164174Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-08-26T20:12:30.0167732Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-08-26T20:12:30.0171218Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-08-26T20:12:30.0174482Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-08-26T20:12:30.0178266Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-08-26T20:12:30.0181868Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-08-26T20:12:30.0185414Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-08-26T20:12:30.0188788Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-08-26T20:12:30.0192327Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-08-26T20:12:30.0196164Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-08-26T20:12:30.0200005Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-08-26T20:12:30.0203523Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-08-26T20:12:30.0207509Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-08-26T20:12:30.0211474Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-08-26T20:12:30.0215417Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-08-26T20:12:30.0218880Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-08-26T20:12:30.0222333Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-08-26T20:12:30.0226018Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-08-26T20:12:30.0229473Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0232737Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-08-26T20:12:30.0235906Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-08-26T20:12:30.0239225Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-08-26T20:12:30.0242282Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-08-26T20:12:30.0245612Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-08-26T20:12:30.0249118Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-08-26T20:12:30.0252578Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-08-26T20:12:30.0255872Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-08-26T20:12:30.0259021Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-08-26T20:12:30.0262054Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-08-26T20:12:30.0265340Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-08-26T20:12:30.0268792Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0271832Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-08-26T20:12:30.0275002Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-08-26T20:12:30.0278524Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-08-26T20:12:30.0282113Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0285278Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-08-26T20:12:30.0288590Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-08-26T20:12:30.0291731Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-08-26T20:12:30.0295011Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-08-26T20:12:30.0298534Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-08-26T20:12:30.0301928Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0305011Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-08-26T20:12:30.0308154Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-08-26T20:12:30.0311235Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-08-26T20:12:30.0314656Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-08-26T20:12:30.0317736Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-08-26T20:12:30.0321112Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-08-26T20:12:30.0324687Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-08-26T20:12:30.0328210Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0331209Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-08-26T20:12:30.0334270Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-08-26T20:12:30.0337275Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-08-26T20:12:30.0340541Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-08-26T20:12:30.0343769Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-08-26T20:12:30.0347157Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.0350150Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-08-26T20:12:30.0354016Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-08-26T20:12:30.0357343Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-08-26T20:12:30.0360877Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0363965Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-08-26T20:12:30.0367251Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-08-26T20:12:30.0370592Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-08-26T20:12:30.0374504Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-08-26T20:12:30.0378122Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0381261Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-08-26T20:12:30.0384436Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-08-26T20:12:30.0387793Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-08-26T20:12:30.0390863Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-08-26T20:12:30.0394123Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0396976Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-08-26T20:12:30.0400127Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-08-26T20:12:30.0403449Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-08-26T20:12:30.0406717Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-08-26T20:12:30.0409930Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-08-26T20:12:30.0413154Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-08-26T20:12:30.0416166Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-08-26T20:12:30.0419267Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-08-26T20:12:30.0422524Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0425540Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-08-26T20:12:30.0428710Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-08-26T20:12:30.0431757Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-08-26T20:12:30.0435048Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-08-26T20:12:30.0438237Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-08-26T20:12:30.0441435Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-08-26T20:12:30.0444587Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-08-26T20:12:30.0447764Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-08-26T20:12:30.0450802Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-08-26T20:12:30.0454030Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-08-26T20:12:30.0457858Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0460992Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-08-26T20:12:30.0464212Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-08-26T20:12:30.0467681Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-08-26T20:12:30.0471230Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-08-26T20:12:30.0474989Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-08-26T20:12:30.0478779Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0482147Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-08-26T20:12:30.0485678Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-08-26T20:12:30.0489106Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-08-26T20:12:30.0492740Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-08-26T20:12:30.0496323Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-08-26T20:12:30.0500036Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-08-26T20:12:30.0503534Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-08-26T20:12:30.0506750Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-08-26T20:12:30.0510233Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-08-26T20:12:30.0513743Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-08-26T20:12:30.0517048Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-08-26T20:12:30.0520310Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-08-26T20:12:30.0523574Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-08-26T20:12:30.0526876Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-08-26T20:12:30.0530121Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-08-26T20:12:30.0533246Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-08-26T20:12:30.0536451Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-08-26T20:12:30.0539454Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-08-26T20:12:30.0542921Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-08-26T20:12:30.0546022Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-08-26T20:12:30.0549320Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-08-26T20:12:30.0552364Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-08-26T20:12:30.0555482Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-08-26T20:12:30.0558577Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-08-26T20:12:30.0562161Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-08-26T20:12:30.0565676Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-08-26T20:12:30.0568930Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-08-26T20:12:30.0572356Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-08-26T20:12:30.0575888Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-08-26T20:12:30.0579417Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-08-26T20:12:30.0582510Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-08-26T20:12:30.0585823Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-08-26T20:12:30.0589005Z adding 'torch/include/ATen/ops/_foobar.h' 2025-08-26T20:12:30.0592656Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0595366Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-08-26T20:12:30.0598307Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-08-26T20:12:30.0601456Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-08-26T20:12:30.0605653Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-08-26T20:12:30.0608091Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0611090Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-08-26T20:12:30.0614315Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-08-26T20:12:30.0617292Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-08-26T20:12:30.0620391Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-08-26T20:12:30.0623630Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0626578Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-08-26T20:12:30.0629531Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-08-26T20:12:30.0632706Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-08-26T20:12:30.0636327Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-08-26T20:12:30.0639857Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0642907Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-08-26T20:12:30.0646234Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-08-26T20:12:30.0650044Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-08-26T20:12:30.0653667Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-08-26T20:12:30.0657185Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0660307Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-08-26T20:12:30.0663465Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-08-26T20:12:30.0667146Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-08-26T20:12:30.0670715Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-08-26T20:12:30.0674262Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0677312Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-08-26T20:12:30.0680512Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-08-26T20:12:30.0684252Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-08-26T20:12:30.0687667Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-08-26T20:12:30.0690975Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0694038Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-08-26T20:12:30.0697008Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-08-26T20:12:30.0700203Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-08-26T20:12:30.0703332Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-08-26T20:12:30.0706535Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0709485Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-08-26T20:12:30.0712421Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-08-26T20:12:30.0715551Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-08-26T20:12:30.0718628Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-08-26T20:12:30.0721836Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0724808Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-08-26T20:12:30.0727900Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-08-26T20:12:30.0731056Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-08-26T20:12:30.0734386Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-08-26T20:12:30.0737778Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0740819Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-08-26T20:12:30.0743918Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-08-26T20:12:30.0747500Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-08-26T20:12:30.0750952Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-08-26T20:12:30.0754459Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0757491Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-08-26T20:12:30.0760593Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-08-26T20:12:30.0764169Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-08-26T20:12:30.0767630Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-08-26T20:12:30.0770936Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0773915Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-08-26T20:12:30.0777569Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-08-26T20:12:30.0780911Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-08-26T20:12:30.0784081Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-08-26T20:12:30.0787318Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0790285Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-08-26T20:12:30.0793645Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-08-26T20:12:30.0796625Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-08-26T20:12:30.0799701Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-08-26T20:12:30.0803231Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0806074Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-08-26T20:12:30.0808949Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-08-26T20:12:30.0812086Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-08-26T20:12:30.0815524Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-08-26T20:12:30.0819107Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0822081Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-08-26T20:12:30.0825324Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-08-26T20:12:30.0829021Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-08-26T20:12:30.0832310Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-08-26T20:12:30.0835669Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0838602Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-08-26T20:12:30.0841692Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-08-26T20:12:30.0844850Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-08-26T20:12:30.0847976Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-08-26T20:12:30.0851376Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0854360Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-08-26T20:12:30.0857269Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-08-26T20:12:30.0860462Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-08-26T20:12:30.0863611Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-08-26T20:12:30.0866855Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0869803Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-08-26T20:12:30.0872750Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-08-26T20:12:30.0875918Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-08-26T20:12:30.0879056Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-08-26T20:12:30.0882330Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0885396Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-08-26T20:12:30.0888516Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-08-26T20:12:30.0891706Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-08-26T20:12:30.0894853Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-08-26T20:12:30.0898232Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0901183Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-08-26T20:12:30.0904191Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-08-26T20:12:30.0907780Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-08-26T20:12:30.0912854Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-08-26T20:12:30.0916168Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0919043Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-08-26T20:12:30.0922013Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-08-26T20:12:30.0925203Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-08-26T20:12:30.0928678Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-08-26T20:12:30.0932087Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0935273Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-08-26T20:12:30.0938462Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-08-26T20:12:30.0942053Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-08-26T20:12:30.0945299Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-08-26T20:12:30.0948529Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0951491Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-08-26T20:12:30.0954483Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-08-26T20:12:30.0957764Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-08-26T20:12:30.0960924Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-08-26T20:12:30.0963990Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-08-26T20:12:30.0967304Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0970254Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-08-26T20:12:30.0973211Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-08-26T20:12:30.0976392Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-08-26T20:12:30.0979560Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-08-26T20:12:30.0983168Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.0986068Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-08-26T20:12:30.0989075Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-08-26T20:12:30.0992240Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-08-26T20:12:30.0995321Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-08-26T20:12:30.0998992Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1001944Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-08-26T20:12:30.1005138Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-08-26T20:12:30.1008547Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-08-26T20:12:30.1012135Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1015237Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-08-26T20:12:30.1018107Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-08-26T20:12:30.1021448Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-08-26T20:12:30.1024512Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-08-26T20:12:30.1027917Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1030876Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-08-26T20:12:30.1034026Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-08-26T20:12:30.1038041Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-08-26T20:12:30.1040669Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-08-26T20:12:30.1044220Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1047376Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-08-26T20:12:30.1050680Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-08-26T20:12:30.1055297Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-08-26T20:12:30.1057884Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-08-26T20:12:30.1061443Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1064546Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-08-26T20:12:30.1067800Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-08-26T20:12:30.1072413Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-08-26T20:12:30.1075157Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-08-26T20:12:30.1078782Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1081876Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-08-26T20:12:30.1085214Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-08-26T20:12:30.1089779Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-08-26T20:12:30.1092548Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-08-26T20:12:30.1095918Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1098930Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-08-26T20:12:30.1102071Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-08-26T20:12:30.1105308Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-08-26T20:12:30.1108667Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-08-26T20:12:30.1113315Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1115130Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-08-26T20:12:30.1118451Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-08-26T20:12:30.1121572Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-08-26T20:12:30.1124918Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-08-26T20:12:30.1128763Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1131837Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-08-26T20:12:30.1134903Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-08-26T20:12:30.1138652Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-08-26T20:12:30.1142019Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-08-26T20:12:30.1145419Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1148550Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-08-26T20:12:30.1151527Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-08-26T20:12:30.1154838Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-08-26T20:12:30.1157977Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-08-26T20:12:30.1161306Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1164272Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-08-26T20:12:30.1167497Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-08-26T20:12:30.1170684Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-08-26T20:12:30.1174170Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-08-26T20:12:30.1177243Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1180404Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-08-26T20:12:30.1183341Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-08-26T20:12:30.1186699Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-08-26T20:12:30.1190371Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-08-26T20:12:30.1193218Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1196378Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-08-26T20:12:30.1199338Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-08-26T20:12:30.1202704Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-08-26T20:12:30.1205886Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-08-26T20:12:30.1209321Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1213465Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-08-26T20:12:30.1215446Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-08-26T20:12:30.1218957Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-08-26T20:12:30.1221938Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-08-26T20:12:30.1225325Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1228297Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-08-26T20:12:30.1231661Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-08-26T20:12:30.1234864Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-08-26T20:12:30.1238106Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-08-26T20:12:30.1241376Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1244508Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-08-26T20:12:30.1247606Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-08-26T20:12:30.1250958Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-08-26T20:12:30.1254078Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-08-26T20:12:30.1257571Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1260478Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-08-26T20:12:30.1263606Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-08-26T20:12:30.1266836Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-08-26T20:12:30.1270322Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-08-26T20:12:30.1273928Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1277086Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-08-26T20:12:30.1280316Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-08-26T20:12:30.1283936Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-08-26T20:12:30.1287388Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-08-26T20:12:30.1290810Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1293808Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-08-26T20:12:30.1296949Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-08-26T20:12:30.1300156Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-08-26T20:12:30.1303481Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-08-26T20:12:30.1306771Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1309907Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-08-26T20:12:30.1313051Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-08-26T20:12:30.1316290Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-08-26T20:12:30.1319428Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-08-26T20:12:30.1322687Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1325879Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-08-26T20:12:30.1328883Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-08-26T20:12:30.1332039Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-08-26T20:12:30.1335134Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-08-26T20:12:30.1338376Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1341537Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-08-26T20:12:30.1344498Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-08-26T20:12:30.1347711Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-08-26T20:12:30.1350789Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-08-26T20:12:30.1353916Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-08-26T20:12:30.1356871Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-08-26T20:12:30.1359917Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-08-26T20:12:30.1362940Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-08-26T20:12:30.1366324Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1369163Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-08-26T20:12:30.1372541Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-08-26T20:12:30.1375643Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-08-26T20:12:30.1378900Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1381877Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-08-26T20:12:30.1385158Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1387998Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-08-26T20:12:30.1391154Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-08-26T20:12:30.1394203Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-08-26T20:12:30.1397337Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-08-26T20:12:30.1400751Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-08-26T20:12:30.1404319Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1407836Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-08-26T20:12:30.1410970Z adding 'torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h' 2025-08-26T20:12:30.1414622Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-08-26T20:12:30.1417953Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-08-26T20:12:30.1421792Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-08-26T20:12:30.1425450Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1428753Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-08-26T20:12:30.1431916Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-08-26T20:12:30.1435160Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-08-26T20:12:30.1439088Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-08-26T20:12:30.1442987Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-08-26T20:12:30.1446701Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1449798Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-08-26T20:12:30.1452963Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-08-26T20:12:30.1456203Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-08-26T20:12:30.1460095Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-08-26T20:12:30.1463534Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-08-26T20:12:30.1466805Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1469769Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-08-26T20:12:30.1472775Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-08-26T20:12:30.1475954Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-08-26T20:12:30.1479484Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-08-26T20:12:30.1483007Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1486184Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-08-26T20:12:30.1489305Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-08-26T20:12:30.1492434Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-08-26T20:12:30.1495980Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-08-26T20:12:30.1499139Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-08-26T20:12:30.1502275Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward.h' 2025-08-26T20:12:30.1505428Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h' 2025-08-26T20:12:30.1508406Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_native.h' 2025-08-26T20:12:30.1511639Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_ops.h' 2025-08-26T20:12:30.1514845Z adding 'torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.1517874Z adding 'torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h' 2025-08-26T20:12:30.1521555Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-08-26T20:12:30.1524774Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-08-26T20:12:30.1528027Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-08-26T20:12:30.1531177Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-08-26T20:12:30.1534238Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-08-26T20:12:30.1537310Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-08-26T20:12:30.1540436Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-08-26T20:12:30.1543559Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-08-26T20:12:30.1547062Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-08-26T20:12:30.1550631Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1553696Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-08-26T20:12:30.1556819Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-08-26T20:12:30.1560095Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-08-26T20:12:30.1563816Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-08-26T20:12:30.1567207Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-08-26T20:12:30.1570423Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1573362Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-08-26T20:12:30.1576595Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1579737Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.1582507Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-08-26T20:12:30.1585661Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-08-26T20:12:30.1588675Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-08-26T20:12:30.1591756Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-08-26T20:12:30.1595037Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-08-26T20:12:30.1603900Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.1604230Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-08-26T20:12:30.1608995Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-08-26T20:12:30.1612128Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-08-26T20:12:30.1615381Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-08-26T20:12:30.1618706Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.1621643Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-08-26T20:12:30.1625067Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-08-26T20:12:30.1628058Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1630918Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-08-26T20:12:30.1634111Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-08-26T20:12:30.1637162Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-08-26T20:12:30.1640298Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-08-26T20:12:30.1643489Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-08-26T20:12:30.1646577Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-08-26T20:12:30.1649618Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-08-26T20:12:30.1652765Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.1655574Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-08-26T20:12:30.1658644Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-08-26T20:12:30.1661609Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-08-26T20:12:30.1664855Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1667734Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-08-26T20:12:30.1671194Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-08-26T20:12:30.1674137Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-08-26T20:12:30.1677520Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1680359Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-08-26T20:12:30.1683309Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-08-26T20:12:30.1686630Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-08-26T20:12:30.1689875Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-08-26T20:12:30.1693221Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1696391Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-08-26T20:12:30.1699109Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-08-26T20:12:30.1702293Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-08-26T20:12:30.1705451Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-08-26T20:12:30.1709067Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1712030Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-08-26T20:12:30.1714980Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-08-26T20:12:30.1718224Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-08-26T20:12:30.1721324Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-08-26T20:12:30.1724626Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1727758Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-08-26T20:12:30.1730825Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-08-26T20:12:30.1733872Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-08-26T20:12:30.1736904Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-08-26T20:12:30.1740162Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-08-26T20:12:30.1743143Z adding 'torch/include/ATen/ops/_indices.h' 2025-08-26T20:12:30.1746176Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-08-26T20:12:30.1749340Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1752454Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.1755222Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-08-26T20:12:30.1758312Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-08-26T20:12:30.1761261Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-08-26T20:12:30.1764331Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-08-26T20:12:30.1767483Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-08-26T20:12:30.1770741Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-08-26T20:12:30.1773789Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-08-26T20:12:30.1776894Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-08-26T20:12:30.1780080Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-08-26T20:12:30.1783262Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-08-26T20:12:30.1786569Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1789434Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-08-26T20:12:30.1792587Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-08-26T20:12:30.1795568Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-08-26T20:12:30.1798907Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1801768Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-08-26T20:12:30.1805035Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-08-26T20:12:30.1808527Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-08-26T20:12:30.1812193Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.1815583Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-08-26T20:12:30.1818981Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-08-26T20:12:30.1822633Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-08-26T20:12:30.1826251Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-08-26T20:12:30.1829815Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-08-26T20:12:30.1833289Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-08-26T20:12:30.1836849Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-08-26T20:12:30.1840247Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-08-26T20:12:30.1843745Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1846711Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-08-26T20:12:30.1849964Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-08-26T20:12:30.1852981Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-08-26T20:12:30.1856349Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.1859468Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-08-26T20:12:30.1862699Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-08-26T20:12:30.1865882Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-08-26T20:12:30.1869267Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.1872156Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-08-26T20:12:30.1875239Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-08-26T20:12:30.1878387Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-08-26T20:12:30.1881442Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-08-26T20:12:30.1884381Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-08-26T20:12:30.1887697Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-08-26T20:12:30.1890844Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-08-26T20:12:30.1894466Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.1897426Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-08-26T20:12:30.1900501Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-08-26T20:12:30.1903455Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-08-26T20:12:30.1906549Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-08-26T20:12:30.1909466Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-08-26T20:12:30.1912699Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-08-26T20:12:30.1915749Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-08-26T20:12:30.1918795Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-08-26T20:12:30.1921779Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-08-26T20:12:30.1924860Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-08-26T20:12:30.1928052Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-08-26T20:12:30.1931190Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-08-26T20:12:30.1934514Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.1937432Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-08-26T20:12:30.1940515Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-08-26T20:12:30.1943486Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-08-26T20:12:30.1946558Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-08-26T20:12:30.1949526Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-08-26T20:12:30.1952693Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-08-26T20:12:30.1955998Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-08-26T20:12:30.1959383Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.1962304Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-08-26T20:12:30.1965460Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-08-26T20:12:30.1968464Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-08-26T20:12:30.1971576Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-08-26T20:12:30.1974574Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-08-26T20:12:30.1977709Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-08-26T20:12:30.1988143Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-08-26T20:12:30.1988489Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.1988650Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-08-26T20:12:30.1991514Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-08-26T20:12:30.1994593Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-08-26T20:12:30.1998256Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-08-26T20:12:30.2001727Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-08-26T20:12:30.2005476Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-08-26T20:12:30.2008855Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-08-26T20:12:30.2012012Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-08-26T20:12:30.2015025Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-08-26T20:12:30.2018119Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-08-26T20:12:30.2021187Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-08-26T20:12:30.2024340Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-08-26T20:12:30.2027518Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-08-26T20:12:30.2031038Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.2033996Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-08-26T20:12:30.2037201Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-08-26T20:12:30.2040306Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-08-26T20:12:30.2043434Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-08-26T20:12:30.2046712Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-08-26T20:12:30.2049900Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-08-26T20:12:30.2053312Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.2056220Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-08-26T20:12:30.2059435Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-08-26T20:12:30.2062435Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-08-26T20:12:30.2065656Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-08-26T20:12:30.2068714Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-08-26T20:12:30.2071894Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-08-26T20:12:30.2075044Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-08-26T20:12:30.2078131Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-08-26T20:12:30.2081309Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-08-26T20:12:30.2084259Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-08-26T20:12:30.2087649Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-08-26T20:12:30.2090950Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-08-26T20:12:30.2094404Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2097386Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-08-26T20:12:30.2100812Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-08-26T20:12:30.2103995Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-08-26T20:12:30.2107258Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.2110246Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-08-26T20:12:30.2113328Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-08-26T20:12:30.2116630Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-08-26T20:12:30.2119992Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-08-26T20:12:30.2122977Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-08-26T20:12:30.2126310Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-08-26T20:12:30.2129360Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-08-26T20:12:30.2132737Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2135672Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-08-26T20:12:30.2139046Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2142177Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.2145081Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-08-26T20:12:30.2148248Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-08-26T20:12:30.2151425Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-08-26T20:12:30.2154581Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-08-26T20:12:30.2157812Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-08-26T20:12:30.2161256Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2164272Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-08-26T20:12:30.2167552Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-08-26T20:12:30.2170559Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-08-26T20:12:30.2173889Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-08-26T20:12:30.2177044Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-08-26T20:12:30.2180519Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2183651Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-08-26T20:12:30.2186706Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-08-26T20:12:30.2189799Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-08-26T20:12:30.2193009Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-08-26T20:12:30.2196182Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-08-26T20:12:30.2199430Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2202573Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-08-26T20:12:30.2205612Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-08-26T20:12:30.2208974Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-08-26T20:12:30.2212286Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-08-26T20:12:30.2215473Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-08-26T20:12:30.2218924Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2221873Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-08-26T20:12:30.2224908Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-08-26T20:12:30.2227962Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-08-26T20:12:30.2231228Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-08-26T20:12:30.2234512Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2237451Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-08-26T20:12:30.2240469Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-08-26T20:12:30.2243515Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-08-26T20:12:30.2246923Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-08-26T20:12:30.2250055Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-08-26T20:12:30.2253946Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-08-26T20:12:30.2256957Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-08-26T20:12:30.2260121Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-08-26T20:12:30.2263188Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-08-26T20:12:30.2266420Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2269315Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-08-26T20:12:30.2272485Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-08-26T20:12:30.2275733Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-08-26T20:12:30.2279039Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2282045Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-08-26T20:12:30.2285011Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-08-26T20:12:30.2288350Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-08-26T20:12:30.2291831Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-08-26T20:12:30.2295311Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2298233Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-08-26T20:12:30.2301508Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-08-26T20:12:30.2305099Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-08-26T20:12:30.2308594Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2311490Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-08-26T20:12:30.2314698Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-08-26T20:12:30.2318131Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-08-26T20:12:30.2321533Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2324619Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-08-26T20:12:30.2327983Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-08-26T20:12:30.2331381Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-08-26T20:12:30.2334665Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-08-26T20:12:30.2338202Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2341188Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-08-26T20:12:30.2344614Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-08-26T20:12:30.2348385Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-08-26T20:12:30.2351882Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-08-26T20:12:30.2355641Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2359518Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-08-26T20:12:30.2361848Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-08-26T20:12:30.2402677Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-08-26T20:12:30.2403145Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-08-26T20:12:30.2403370Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-08-26T20:12:30.2403646Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2403780Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-08-26T20:12:30.2404042Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2404375Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.2404582Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-08-26T20:12:30.2404716Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-08-26T20:12:30.2404851Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-08-26T20:12:30.2404976Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-08-26T20:12:30.2405204Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-08-26T20:12:30.2406497Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-08-26T20:12:30.2409511Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-08-26T20:12:30.2412470Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-08-26T20:12:30.2415775Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-08-26T20:12:30.2418820Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-08-26T20:12:30.2422507Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-08-26T20:12:30.2425661Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2428601Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-08-26T20:12:30.2431779Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-08-26T20:12:30.2435266Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2438378Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-08-26T20:12:30.2441551Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-08-26T20:12:30.2444576Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-08-26T20:12:30.2447758Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-08-26T20:12:30.2451045Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-08-26T20:12:30.2454413Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-08-26T20:12:30.2457478Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-08-26T20:12:30.2460477Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-08-26T20:12:30.2463663Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-08-26T20:12:30.2466492Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-08-26T20:12:30.2469474Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-08-26T20:12:30.2472380Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-08-26T20:12:30.2475385Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-08-26T20:12:30.2478359Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-08-26T20:12:30.2481280Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-08-26T20:12:30.2484438Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-08-26T20:12:30.2487555Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-08-26T20:12:30.2490481Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-08-26T20:12:30.2493514Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-08-26T20:12:30.2496499Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-08-26T20:12:30.2499417Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-08-26T20:12:30.2502439Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-08-26T20:12:30.2505506Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-08-26T20:12:30.2508335Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-08-26T20:12:30.2511371Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-08-26T20:12:30.2514317Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-08-26T20:12:30.2517379Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-08-26T20:12:30.2520779Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2524784Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.2527860Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-08-26T20:12:30.2531005Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-08-26T20:12:30.2533946Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-08-26T20:12:30.2546897Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-08-26T20:12:30.2547210Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-08-26T20:12:30.2547400Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-08-26T20:12:30.2548236Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-08-26T20:12:30.2549281Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-08-26T20:12:30.2552207Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-08-26T20:12:30.2555298Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-08-26T20:12:30.2558376Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-08-26T20:12:30.2561603Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2564542Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-08-26T20:12:30.2567722Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-08-26T20:12:30.2570718Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-08-26T20:12:30.2573856Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-08-26T20:12:30.2576999Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-08-26T20:12:30.2579988Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-08-26T20:12:30.2583103Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-08-26T20:12:30.2586047Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-08-26T20:12:30.2589246Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-08-26T20:12:30.2592474Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-08-26T20:12:30.2595826Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2598763Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-08-26T20:12:30.2602016Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-08-26T20:12:30.2605030Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-08-26T20:12:30.2608343Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2611175Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-08-26T20:12:30.2614508Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-08-26T20:12:30.2617588Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-08-26T20:12:30.2620572Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-08-26T20:12:30.2623632Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-08-26T20:12:30.2626650Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-08-26T20:12:30.2629868Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2632750Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-08-26T20:12:30.2635834Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-08-26T20:12:30.2638831Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-08-26T20:12:30.2642180Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2645061Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-08-26T20:12:30.2648748Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-08-26T20:12:30.2651654Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-08-26T20:12:30.2654881Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-08-26T20:12:30.2658318Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2661484Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.2664434Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-08-26T20:12:30.2667623Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-08-26T20:12:30.2670868Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-08-26T20:12:30.2673933Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-08-26T20:12:30.2677009Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-08-26T20:12:30.2680166Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-08-26T20:12:30.2683396Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-08-26T20:12:30.2686807Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-08-26T20:12:30.2690187Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2693508Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.2696436Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-08-26T20:12:30.2699866Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-08-26T20:12:30.2702845Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-08-26T20:12:30.2713010Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-08-26T20:12:30.2716371Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-08-26T20:12:30.2719786Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2722906Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-08-26T20:12:30.2726327Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-08-26T20:12:30.2729552Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-08-26T20:12:30.2733171Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.2735647Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-08-26T20:12:30.2738863Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-08-26T20:12:30.2742370Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-08-26T20:12:30.2745986Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2748952Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-08-26T20:12:30.2752384Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-08-26T20:12:30.2755966Z adding 'torch/include/ATen/ops/_nnz.h' 2025-08-26T20:12:30.2758454Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-08-26T20:12:30.2761770Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-08-26T20:12:30.2764861Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-08-26T20:12:30.2768372Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-08-26T20:12:30.2771794Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.2774789Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-08-26T20:12:30.2779024Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-08-26T20:12:30.2781415Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2784895Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-08-26T20:12:30.2787711Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-08-26T20:12:30.2790995Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-08-26T20:12:30.2794199Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.2797415Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-08-26T20:12:30.2800380Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-08-26T20:12:30.2803861Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-08-26T20:12:30.2808378Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.2810065Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-08-26T20:12:30.2813996Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-08-26T20:12:30.2816614Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-08-26T20:12:30.2820015Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.2823047Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-08-26T20:12:30.2826364Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-08-26T20:12:30.2829699Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-08-26T20:12:30.2833032Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-08-26T20:12:30.2837073Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-08-26T20:12:30.2839309Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-08-26T20:12:30.2842835Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-08-26T20:12:30.2845737Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-08-26T20:12:30.2849110Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2852123Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-08-26T20:12:30.2855387Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-08-26T20:12:30.2858334Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-08-26T20:12:30.2861718Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-08-26T20:12:30.2893059Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-08-26T20:12:30.2893589Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2894131Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-08-26T20:12:30.2894578Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-08-26T20:12:30.2895011Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-08-26T20:12:30.2895384Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-08-26T20:12:30.2895732Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-08-26T20:12:30.2896186Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2896694Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-08-26T20:12:30.2897093Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-08-26T20:12:30.2899693Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-08-26T20:12:30.2902724Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-08-26T20:12:30.2906130Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-08-26T20:12:30.2909219Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-08-26T20:12:30.2912493Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-08-26T20:12:30.2915519Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-08-26T20:12:30.2919139Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-08-26T20:12:30.2923426Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-08-26T20:12:30.2926288Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-08-26T20:12:30.2929905Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-08-26T20:12:30.2934541Z adding 'torch/include/ATen/ops/_print.h' 2025-08-26T20:12:30.2937050Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2940421Z adding 'torch/include/ATen/ops/_print_native.h' 2025-08-26T20:12:30.2943910Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-08-26T20:12:30.2947227Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-08-26T20:12:30.2950514Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.2953480Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-08-26T20:12:30.2956447Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-08-26T20:12:30.2959512Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-08-26T20:12:30.2962808Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.2965762Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-08-26T20:12:30.2968880Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-08-26T20:12:30.2972031Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-08-26T20:12:30.2975404Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-08-26T20:12:30.2978780Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.2982092Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.2985078Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-08-26T20:12:30.2988556Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-08-26T20:12:30.2991727Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-08-26T20:12:30.2994930Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-08-26T20:12:30.2998622Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-08-26T20:12:30.3001514Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-08-26T20:12:30.3004641Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-08-26T20:12:30.3008032Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-08-26T20:12:30.3011355Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3014239Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-08-26T20:12:30.3017284Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-08-26T20:12:30.3020310Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-08-26T20:12:30.3023731Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3026582Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-08-26T20:12:30.3029683Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-08-26T20:12:30.3033026Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-08-26T20:12:30.3036476Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3039668Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-08-26T20:12:30.3042675Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-08-26T20:12:30.3046247Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-08-26T20:12:30.3049097Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-08-26T20:12:30.3052332Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3055229Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-08-26T20:12:30.3058435Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-08-26T20:12:30.3061448Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-08-26T20:12:30.3064695Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3067581Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-08-26T20:12:30.3070683Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-08-26T20:12:30.3073786Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-08-26T20:12:30.3077109Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3080005Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-08-26T20:12:30.3083064Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-08-26T20:12:30.3086163Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-08-26T20:12:30.3089411Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-08-26T20:12:30.3092495Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-08-26T20:12:30.3095719Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3098592Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-08-26T20:12:30.3101694Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-08-26T20:12:30.3104930Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-08-26T20:12:30.3108258Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3111323Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-08-26T20:12:30.3114305Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-08-26T20:12:30.3117544Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-08-26T20:12:30.3120941Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-08-26T20:12:30.3124165Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-08-26T20:12:30.3127488Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-08-26T20:12:30.3130884Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-08-26T20:12:30.3134250Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-08-26T20:12:30.3137370Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-08-26T20:12:30.3140851Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-08-26T20:12:30.3144047Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-08-26T20:12:30.3147130Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-08-26T20:12:30.3150389Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-08-26T20:12:30.3153619Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-08-26T20:12:30.3156885Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-08-26T20:12:30.3160171Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-08-26T20:12:30.3163242Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-08-26T20:12:30.3166643Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-08-26T20:12:30.3169897Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-08-26T20:12:30.3172988Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-08-26T20:12:30.3176246Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-08-26T20:12:30.3179423Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-08-26T20:12:30.3182893Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-08-26T20:12:30.3186225Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-08-26T20:12:30.3189310Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-08-26T20:12:30.3192651Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-08-26T20:12:30.3195925Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-08-26T20:12:30.3198997Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-08-26T20:12:30.3202211Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-08-26T20:12:30.3205473Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-08-26T20:12:30.3208591Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-08-26T20:12:30.3211993Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-08-26T20:12:30.3215120Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-08-26T20:12:30.3218151Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-08-26T20:12:30.3221334Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-08-26T20:12:30.3224370Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-08-26T20:12:30.3227623Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-08-26T20:12:30.3231121Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-08-26T20:12:30.3234605Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-08-26T20:12:30.3238050Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3241255Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-08-26T20:12:30.3245015Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-08-26T20:12:30.3248269Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3251443Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-08-26T20:12:30.3254762Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-08-26T20:12:30.3257981Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-08-26T20:12:30.3261176Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-08-26T20:12:30.3264411Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-08-26T20:12:30.3267827Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-08-26T20:12:30.3270910Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-08-26T20:12:30.3274324Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-08-26T20:12:30.3277641Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-08-26T20:12:30.3280914Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-08-26T20:12:30.3284229Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-08-26T20:12:30.3288040Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-08-26T20:12:30.3291564Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3294613Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-08-26T20:12:30.3297881Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-08-26T20:12:30.3300950Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-08-26T20:12:30.3304856Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-08-26T20:12:30.3307889Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-08-26T20:12:30.3310842Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3314020Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-08-26T20:12:30.3316955Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-08-26T20:12:30.3321083Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-08-26T20:12:30.3325560Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3328341Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-08-26T20:12:30.3331742Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-08-26T20:12:30.3334902Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-08-26T20:12:30.3338511Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-08-26T20:12:30.3342457Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-08-26T20:12:30.3345725Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-08-26T20:12:30.3349119Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-08-26T20:12:30.3352197Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-08-26T20:12:30.3355604Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-08-26T20:12:30.3358742Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-08-26T20:12:30.3362172Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3365406Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-08-26T20:12:30.3368555Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-08-26T20:12:30.3403332Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-08-26T20:12:30.3403869Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3404401Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-08-26T20:12:30.3404793Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-08-26T20:12:30.3405208Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-08-26T20:12:30.3405882Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3406529Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-08-26T20:12:30.3407037Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-08-26T20:12:30.3407497Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-08-26T20:12:30.3408075Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3408829Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-08-26T20:12:30.3409296Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-08-26T20:12:30.3412366Z adding 'torch/include/ATen/ops/_softmax.h' 2025-08-26T20:12:30.3415715Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-08-26T20:12:30.3419120Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.3422281Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-08-26T20:12:30.3425429Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-08-26T20:12:30.3428637Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-08-26T20:12:30.3431776Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-08-26T20:12:30.3434792Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-08-26T20:12:30.3438514Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-08-26T20:12:30.3441493Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.3444424Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-08-26T20:12:30.3447980Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-08-26T20:12:30.3450617Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-08-26T20:12:30.3454557Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-08-26T20:12:30.3456938Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-08-26T20:12:30.3460134Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-08-26T20:12:30.3463303Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-08-26T20:12:30.3466692Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3469536Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-08-26T20:12:30.3472750Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-08-26T20:12:30.3476027Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-08-26T20:12:30.3479155Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-08-26T20:12:30.3482439Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3485792Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.3488632Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-08-26T20:12:30.3491805Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-08-26T20:12:30.3494815Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-08-26T20:12:30.3497898Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-08-26T20:12:30.3501054Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-08-26T20:12:30.3504328Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3507254Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-08-26T20:12:30.3510424Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-08-26T20:12:30.3513614Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-08-26T20:12:30.3516924Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3519854Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-08-26T20:12:30.3523044Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-08-26T20:12:30.3526693Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-08-26T20:12:30.3530235Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3533139Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-08-26T20:12:30.3536381Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-08-26T20:12:30.3539651Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-08-26T20:12:30.3542982Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3545908Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-08-26T20:12:30.3549144Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-08-26T20:12:30.3552553Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-08-26T20:12:30.3556025Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3558980Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-08-26T20:12:30.3562211Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-08-26T20:12:30.3565614Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-08-26T20:12:30.3569448Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-08-26T20:12:30.3573188Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3576730Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-08-26T20:12:30.3579458Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-08-26T20:12:30.3582785Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-08-26T20:12:30.3586019Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3589096Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-08-26T20:12:30.3592579Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-08-26T20:12:30.3595426Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-08-26T20:12:30.3598624Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-08-26T20:12:30.3601926Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3604821Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-08-26T20:12:30.3608126Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-08-26T20:12:30.3611219Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-08-26T20:12:30.3614494Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3617426Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-08-26T20:12:30.3620636Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-08-26T20:12:30.3623774Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-08-26T20:12:30.3627055Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3629983Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-08-26T20:12:30.3633154Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-08-26T20:12:30.3636362Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-08-26T20:12:30.3639702Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3642624Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-08-26T20:12:30.3645933Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-08-26T20:12:30.3649125Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-08-26T20:12:30.3652345Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-08-26T20:12:30.3655625Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3658517Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-08-26T20:12:30.3661713Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-08-26T20:12:30.3664958Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3668069Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3671006Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-08-26T20:12:30.3674272Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-08-26T20:12:30.3677417Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-08-26T20:12:30.3680638Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3683660Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-08-26T20:12:30.3687010Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-08-26T20:12:30.3690217Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-08-26T20:12:30.3693852Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3696442Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-08-26T20:12:30.3699870Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-08-26T20:12:30.3702865Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-08-26T20:12:30.3706145Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-08-26T20:12:30.3709140Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-08-26T20:12:30.3712542Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-08-26T20:12:30.3715547Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-08-26T20:12:30.3718874Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-08-26T20:12:30.3722408Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-08-26T20:12:30.3725901Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-08-26T20:12:30.3728572Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-08-26T20:12:30.3731787Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-08-26T20:12:30.3735043Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-08-26T20:12:30.3738885Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-08-26T20:12:30.3742107Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-08-26T20:12:30.3745408Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-08-26T20:12:30.3748342Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-08-26T20:12:30.3751582Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-08-26T20:12:30.3754567Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-08-26T20:12:30.3757792Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-08-26T20:12:30.3760929Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-08-26T20:12:30.3764261Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-08-26T20:12:30.3767403Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-08-26T20:12:30.3770778Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-08-26T20:12:30.3774308Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-08-26T20:12:30.3777146Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-08-26T20:12:30.3780226Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-08-26T20:12:30.3783445Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-08-26T20:12:30.3786673Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-08-26T20:12:30.3789840Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-08-26T20:12:30.3792992Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-08-26T20:12:30.3796174Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-08-26T20:12:30.3799415Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-08-26T20:12:30.3802924Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-08-26T20:12:30.3806125Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3809150Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-08-26T20:12:30.3812377Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-08-26T20:12:30.3815797Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3818912Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3822172Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-08-26T20:12:30.3825775Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-08-26T20:12:30.3828786Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-08-26T20:12:30.3832180Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3835089Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-08-26T20:12:30.3838483Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-08-26T20:12:30.3841569Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-08-26T20:12:30.3844896Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-08-26T20:12:30.3848456Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3851286Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-08-26T20:12:30.3854713Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-08-26T20:12:30.3858478Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3861215Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3864173Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-08-26T20:12:30.3867659Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-08-26T20:12:30.3885762Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-08-26T20:12:30.3886247Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3886752Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-08-26T20:12:30.3887120Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-08-26T20:12:30.3887524Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-08-26T20:12:30.3888430Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-08-26T20:12:30.3891773Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-08-26T20:12:30.3894679Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-08-26T20:12:30.3897921Z adding 'torch/include/ATen/ops/_stack.h' 2025-08-26T20:12:30.3901191Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3904323Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-08-26T20:12:30.3907306Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-08-26T20:12:30.3910644Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-08-26T20:12:30.3913795Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-08-26T20:12:30.3917158Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3920976Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-08-26T20:12:30.3923411Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-08-26T20:12:30.3926548Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-08-26T20:12:30.3929778Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3932721Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-08-26T20:12:30.3937033Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-08-26T20:12:30.3938939Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-08-26T20:12:30.3942135Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-08-26T20:12:30.3945140Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-08-26T20:12:30.3948288Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-08-26T20:12:30.3951371Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-08-26T20:12:30.3954582Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3957445Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-08-26T20:12:30.3960586Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-08-26T20:12:30.3963765Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-08-26T20:12:30.3968237Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3970488Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.3973367Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-08-26T20:12:30.3976530Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-08-26T20:12:30.3979619Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-08-26T20:12:30.3982764Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3985739Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-08-26T20:12:30.3989020Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.3992230Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.3994968Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-08-26T20:12:30.3998148Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-08-26T20:12:30.4001106Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-08-26T20:12:30.4004185Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-08-26T20:12:30.4007253Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-08-26T20:12:30.4010490Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4013381Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-08-26T20:12:30.4016422Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-08-26T20:12:30.4019511Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-08-26T20:12:30.4022820Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4025933Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-08-26T20:12:30.4029134Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-08-26T20:12:30.4032167Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-08-26T20:12:30.4035499Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-08-26T20:12:30.4038773Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4041873Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-08-26T20:12:30.4044875Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-08-26T20:12:30.4048280Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-08-26T20:12:30.4051371Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-08-26T20:12:30.4054798Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4058016Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-08-26T20:12:30.4061102Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-08-26T20:12:30.4064497Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-08-26T20:12:30.4067641Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-08-26T20:12:30.4071093Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4074062Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-08-26T20:12:30.4077172Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-08-26T20:12:30.4080862Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-08-26T20:12:30.4083657Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-08-26T20:12:30.4087168Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4090045Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-08-26T20:12:30.4093297Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-08-26T20:12:30.4096355Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-08-26T20:12:30.4099735Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4102667Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-08-26T20:12:30.4105908Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-08-26T20:12:30.4109443Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-08-26T20:12:30.4112305Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4115590Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-08-26T20:12:30.4118452Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-08-26T20:12:30.4121663Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-08-26T20:12:30.4125009Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4128160Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-08-26T20:12:30.4131274Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-08-26T20:12:30.4134589Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-08-26T20:12:30.4138244Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4140949Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-08-26T20:12:30.4144270Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-08-26T20:12:30.4147393Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-08-26T20:12:30.4150843Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4153826Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-08-26T20:12:30.4157176Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-08-26T20:12:30.4160934Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-08-26T20:12:30.4163832Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-08-26T20:12:30.4167473Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4170483Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-08-26T20:12:30.4173610Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-08-26T20:12:30.4176904Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-08-26T20:12:30.4180395Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4183648Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-08-26T20:12:30.4186653Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-08-26T20:12:30.4190243Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-08-26T20:12:30.4193372Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-08-26T20:12:30.4196717Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-08-26T20:12:30.4199979Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4203263Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-08-26T20:12:30.4207198Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4209919Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-08-26T20:12:30.4213224Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-08-26T20:12:30.4216415Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-08-26T20:12:30.4219674Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-08-26T20:12:30.4222893Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-08-26T20:12:30.4226321Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4229962Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-08-26T20:12:30.4232553Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-08-26T20:12:30.4236024Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-08-26T20:12:30.4239246Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-08-26T20:12:30.4242716Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4245809Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-08-26T20:12:30.4249298Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-08-26T20:12:30.4252756Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-08-26T20:12:30.4255738Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4258886Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-08-26T20:12:30.4261872Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-08-26T20:12:30.4265099Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-08-26T20:12:30.4268345Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4271442Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-08-26T20:12:30.4274620Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-08-26T20:12:30.4278061Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-08-26T20:12:30.4281361Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-08-26T20:12:30.4284613Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4287922Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-08-26T20:12:30.4290973Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-08-26T20:12:30.4294101Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-08-26T20:12:30.4297302Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-08-26T20:12:30.4300600Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-08-26T20:12:30.4304354Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4307008Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-08-26T20:12:30.4310277Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-08-26T20:12:30.4313136Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-08-26T20:12:30.4316505Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-08-26T20:12:30.4319831Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4322990Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-08-26T20:12:30.4326204Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-08-26T20:12:30.4329619Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4333163Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-08-26T20:12:30.4335830Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-08-26T20:12:30.4339256Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-08-26T20:12:30.4342112Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-08-26T20:12:30.4347658Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-08-26T20:12:30.4350925Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4353941Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-08-26T20:12:30.4357178Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-08-26T20:12:30.4360149Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-08-26T20:12:30.4363294Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-08-26T20:12:30.4366527Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-08-26T20:12:30.4369793Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-08-26T20:12:30.4373359Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-08-26T20:12:30.4376608Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-08-26T20:12:30.4379832Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-08-26T20:12:30.4382718Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-08-26T20:12:30.4385822Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-08-26T20:12:30.4388959Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-08-26T20:12:30.4392298Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4395335Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-08-26T20:12:30.4398362Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-08-26T20:12:30.4402540Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-08-26T20:12:30.4404941Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-08-26T20:12:30.4408503Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-08-26T20:12:30.4411983Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4415065Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-08-26T20:12:30.4418246Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-08-26T20:12:30.4421421Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-08-26T20:12:30.4425683Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-08-26T20:12:30.4434602Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-08-26T20:12:30.4434896Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4438066Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.4441051Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-08-26T20:12:30.4444080Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-08-26T20:12:30.4447561Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-08-26T20:12:30.4450926Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4453988Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-08-26T20:12:30.4458200Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-08-26T20:12:30.4460497Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-08-26T20:12:30.4463674Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-08-26T20:12:30.4466959Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4469931Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-08-26T20:12:30.4472917Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-08-26T20:12:30.4476070Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-08-26T20:12:30.4479803Z adding 'torch/include/ATen/ops/_unique.h' 2025-08-26T20:12:30.4483053Z adding 'torch/include/ATen/ops/_unique2.h' 2025-08-26T20:12:30.4486456Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4489431Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-08-26T20:12:30.4492516Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-08-26T20:12:30.4495494Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-08-26T20:12:30.4498733Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-08-26T20:12:30.4501977Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4504886Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-08-26T20:12:30.4507922Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-08-26T20:12:30.4510880Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-08-26T20:12:30.4514084Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-08-26T20:12:30.4517280Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-08-26T20:12:30.4520453Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4523303Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-08-26T20:12:30.4526490Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-08-26T20:12:30.4529545Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-08-26T20:12:30.4533857Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4535759Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-08-26T20:12:30.4538882Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-08-26T20:12:30.4541946Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-08-26T20:12:30.4545179Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4548029Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-08-26T20:12:30.4551131Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-08-26T20:12:30.4554177Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-08-26T20:12:30.4557452Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4560757Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-08-26T20:12:30.4563676Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-08-26T20:12:30.4566953Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-08-26T20:12:30.4570215Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4573094Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-08-26T20:12:30.4576188Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-08-26T20:12:30.4579392Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-08-26T20:12:30.4582750Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.4585644Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-08-26T20:12:30.4588811Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-08-26T20:12:30.4592508Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-08-26T20:12:30.4596296Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-08-26T20:12:30.4599881Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.4602916Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-08-26T20:12:30.4606262Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-08-26T20:12:30.4609385Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-08-26T20:12:30.4612635Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-08-26T20:12:30.4615673Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-08-26T20:12:30.4618935Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-08-26T20:12:30.4622258Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.4625273Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4628358Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-08-26T20:12:30.4631603Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-08-26T20:12:30.4634653Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-08-26T20:12:30.4637878Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-08-26T20:12:30.4640980Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-08-26T20:12:30.4644262Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-08-26T20:12:30.4648135Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-08-26T20:12:30.4651910Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-08-26T20:12:30.4655455Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.4658493Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-08-26T20:12:30.4661888Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-08-26T20:12:30.4665063Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-08-26T20:12:30.4668399Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-08-26T20:12:30.4672249Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-08-26T20:12:30.4675058Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-08-26T20:12:30.4678552Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.4681615Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4685206Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-08-26T20:12:30.4689176Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-08-26T20:12:30.4691796Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-08-26T20:12:30.4695518Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-08-26T20:12:30.4698366Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-08-26T20:12:30.4701816Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-08-26T20:12:30.4705394Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-08-26T20:12:30.4709228Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-08-26T20:12:30.4712884Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.4715964Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-08-26T20:12:30.4719361Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-08-26T20:12:30.4722421Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-08-26T20:12:30.4725887Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-08-26T20:12:30.4729453Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-08-26T20:12:30.4732388Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-08-26T20:12:30.4735909Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.4738996Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4742291Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-08-26T20:12:30.4745493Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-08-26T20:12:30.4748654Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-08-26T20:12:30.4752315Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-08-26T20:12:30.4755058Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-08-26T20:12:30.4758564Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-08-26T20:12:30.4762189Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-08-26T20:12:30.4766210Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-08-26T20:12:30.4770092Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.4772975Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-08-26T20:12:30.4776431Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-08-26T20:12:30.4779470Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-08-26T20:12:30.4782866Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-08-26T20:12:30.4786586Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-08-26T20:12:30.4789427Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-08-26T20:12:30.4793010Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.4795976Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4799215Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-08-26T20:12:30.4802483Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-08-26T20:12:30.4805788Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-08-26T20:12:30.4809545Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-08-26T20:12:30.4812334Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-08-26T20:12:30.4815875Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-08-26T20:12:30.4819514Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-08-26T20:12:30.4823514Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-08-26T20:12:30.4827559Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.4830381Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-08-26T20:12:30.4833771Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-08-26T20:12:30.4836871Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-08-26T20:12:30.4840304Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-08-26T20:12:30.4844092Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-08-26T20:12:30.4846990Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-08-26T20:12:30.4850503Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.4853606Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4856842Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-08-26T20:12:30.4860048Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-08-26T20:12:30.4863323Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-08-26T20:12:30.4867003Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-08-26T20:12:30.4869820Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-08-26T20:12:30.4873282Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-08-26T20:12:30.4876460Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-08-26T20:12:30.4879795Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-08-26T20:12:30.4882836Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-08-26T20:12:30.4898054Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-08-26T20:12:30.4898249Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-08-26T20:12:30.4898579Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4898784Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-08-26T20:12:30.4900163Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-08-26T20:12:30.4904143Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-08-26T20:12:30.4906588Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-08-26T20:12:30.4910229Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-08-26T20:12:30.4912831Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-08-26T20:12:30.4916224Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-08-26T20:12:30.4919274Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-08-26T20:12:30.4922646Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4925601Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-08-26T20:12:30.4928817Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-08-26T20:12:30.4931958Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-08-26T20:12:30.4935404Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4938276Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-08-26T20:12:30.4941441Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-08-26T20:12:30.4944569Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-08-26T20:12:30.4947877Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4951019Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-08-26T20:12:30.4954212Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-08-26T20:12:30.4957324Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-08-26T20:12:30.4960593Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4963474Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-08-26T20:12:30.4966721Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-08-26T20:12:30.4969757Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-08-26T20:12:30.4972990Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4975856Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-08-26T20:12:30.4979057Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-08-26T20:12:30.4982267Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-08-26T20:12:30.4985560Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.4988396Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-08-26T20:12:30.4991599Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-08-26T20:12:30.4994495Z adding 'torch/include/ATen/ops/_values.h' 2025-08-26T20:12:30.4997550Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-08-26T20:12:30.5000790Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5003920Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5006807Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-08-26T20:12:30.5009949Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-08-26T20:12:30.5012938Z adding 'torch/include/ATen/ops/_values_native.h' 2025-08-26T20:12:30.5016006Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-08-26T20:12:30.5018936Z adding 'torch/include/ATen/ops/_version.h' 2025-08-26T20:12:30.5022120Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5024911Z adding 'torch/include/ATen/ops/_version_native.h' 2025-08-26T20:12:30.5028016Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-08-26T20:12:30.5031036Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-08-26T20:12:30.5034153Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-08-26T20:12:30.5037392Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-08-26T20:12:30.5040536Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-08-26T20:12:30.5043546Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-08-26T20:12:30.5046822Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-08-26T20:12:30.5049789Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-08-26T20:12:30.5052880Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-08-26T20:12:30.5056028Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-08-26T20:12:30.5058986Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-08-26T20:12:30.5062168Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-08-26T20:12:30.5065093Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-08-26T20:12:30.5068166Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-08-26T20:12:30.5071181Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h' 2025-08-26T20:12:30.5074111Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-08-26T20:12:30.5077175Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-08-26T20:12:30.5080254Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-08-26T20:12:30.5083381Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5086561Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-08-26T20:12:30.5089836Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5092691Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-08-26T20:12:30.5095801Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-08-26T20:12:30.5098852Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-08-26T20:12:30.5102036Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-08-26T20:12:30.5105317Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5108308Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-08-26T20:12:30.5111378Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-08-26T20:12:30.5114371Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-08-26T20:12:30.5117591Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-08-26T20:12:30.5120844Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5123807Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-08-26T20:12:30.5126936Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-08-26T20:12:30.5129941Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-08-26T20:12:30.5133151Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-08-26T20:12:30.5136603Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-08-26T20:12:30.5139405Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-08-26T20:12:30.5142610Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-08-26T20:12:30.5145831Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5148857Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-08-26T20:12:30.5151994Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-08-26T20:12:30.5155287Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-08-26T20:12:30.5158713Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5161644Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-08-26T20:12:30.5164889Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-08-26T20:12:30.5168028Z adding 'torch/include/ATen/ops/abs.h' 2025-08-26T20:12:30.5171431Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5174356Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-08-26T20:12:30.5177534Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-08-26T20:12:30.5180555Z adding 'torch/include/ATen/ops/abs_native.h' 2025-08-26T20:12:30.5183977Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-08-26T20:12:30.5187679Z adding 'torch/include/ATen/ops/absolute.h' 2025-08-26T20:12:30.5190491Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5193823Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-08-26T20:12:30.5196694Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-08-26T20:12:30.5199891Z adding 'torch/include/ATen/ops/acos.h' 2025-08-26T20:12:30.5203187Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5206286Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-08-26T20:12:30.5209390Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-08-26T20:12:30.5212570Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-08-26T20:12:30.5216692Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-08-26T20:12:30.5219507Z adding 'torch/include/ATen/ops/acos_native.h' 2025-08-26T20:12:30.5222830Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-08-26T20:12:30.5225937Z adding 'torch/include/ATen/ops/acosh.h' 2025-08-26T20:12:30.5229382Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5232292Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-08-26T20:12:30.5235526Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-08-26T20:12:30.5239099Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-08-26T20:12:30.5241843Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-08-26T20:12:30.5245263Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-08-26T20:12:30.5248316Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-08-26T20:12:30.5251639Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-08-26T20:12:30.5254953Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5258194Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5261084Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-08-26T20:12:30.5264423Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-08-26T20:12:30.5268163Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-08-26T20:12:30.5271286Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5274491Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-08-26T20:12:30.5277614Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-08-26T20:12:30.5280780Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-08-26T20:12:30.5283980Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-08-26T20:12:30.5287603Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-08-26T20:12:30.5291091Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-08-26T20:12:30.5294160Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-08-26T20:12:30.5297414Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-08-26T20:12:30.5300448Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-08-26T20:12:30.5303798Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-08-26T20:12:30.5306964Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5310145Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-08-26T20:12:30.5313581Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-08-26T20:12:30.5316352Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-08-26T20:12:30.5319718Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-08-26T20:12:30.5322745Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-08-26T20:12:30.5326185Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5329055Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-08-26T20:12:30.5332320Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-08-26T20:12:30.5335479Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-08-26T20:12:30.5338836Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-08-26T20:12:30.5342767Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5345400Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-08-26T20:12:30.5348606Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-08-26T20:12:30.5351602Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-08-26T20:12:30.5354860Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-08-26T20:12:30.5357852Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-08-26T20:12:30.5361242Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-08-26T20:12:30.5364674Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5367852Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-08-26T20:12:30.5371387Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-08-26T20:12:30.5374061Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-08-26T20:12:30.5377302Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-08-26T20:12:30.5380308Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-08-26T20:12:30.5385894Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-08-26T20:12:30.5387168Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-08-26T20:12:30.5390384Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-08-26T20:12:30.5399874Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5400107Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-08-26T20:12:30.5400876Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-08-26T20:12:30.5403905Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-08-26T20:12:30.5407271Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-08-26T20:12:30.5411716Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-08-26T20:12:30.5413898Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-08-26T20:12:30.5417908Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5420297Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-08-26T20:12:30.5423781Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-08-26T20:12:30.5426561Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-08-26T20:12:30.5429687Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-08-26T20:12:30.5432748Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-08-26T20:12:30.5436527Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-08-26T20:12:30.5439880Z adding 'torch/include/ATen/ops/add.h' 2025-08-26T20:12:30.5443001Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5446329Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5451149Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-08-26T20:12:30.5452836Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-08-26T20:12:30.5455730Z adding 'torch/include/ATen/ops/add_meta.h' 2025-08-26T20:12:30.5458891Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-08-26T20:12:30.5462333Z adding 'torch/include/ATen/ops/add_native.h' 2025-08-26T20:12:30.5465700Z adding 'torch/include/ATen/ops/add_ops.h' 2025-08-26T20:12:30.5468972Z adding 'torch/include/ATen/ops/addbmm.h' 2025-08-26T20:12:30.5472017Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-08-26T20:12:30.5475112Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-08-26T20:12:30.5478159Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-08-26T20:12:30.5481709Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-08-26T20:12:30.5484651Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-08-26T20:12:30.5488126Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-08-26T20:12:30.5491480Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5494186Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-08-26T20:12:30.5497241Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-08-26T20:12:30.5500222Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-08-26T20:12:30.5503326Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-08-26T20:12:30.5506355Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-08-26T20:12:30.5509608Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-08-26T20:12:30.5512749Z adding 'torch/include/ATen/ops/addcmul.h' 2025-08-26T20:12:30.5516086Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5519001Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-08-26T20:12:30.5522053Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-08-26T20:12:30.5525083Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-08-26T20:12:30.5528280Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-08-26T20:12:30.5531329Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-08-26T20:12:30.5534589Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-08-26T20:12:30.5537987Z adding 'torch/include/ATen/ops/addmm.h' 2025-08-26T20:12:30.5541491Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5544449Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-08-26T20:12:30.5547599Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-08-26T20:12:30.5550627Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-08-26T20:12:30.5553764Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-08-26T20:12:30.5557239Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-08-26T20:12:30.5560497Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-08-26T20:12:30.5563797Z adding 'torch/include/ATen/ops/addmv.h' 2025-08-26T20:12:30.5567323Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5570640Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-08-26T20:12:30.5573786Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-08-26T20:12:30.5577027Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-08-26T20:12:30.5581612Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-08-26T20:12:30.5585701Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-08-26T20:12:30.5590168Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-08-26T20:12:30.5594548Z adding 'torch/include/ATen/ops/addr.h' 2025-08-26T20:12:30.5599199Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5603219Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-08-26T20:12:30.5607586Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-08-26T20:12:30.5611668Z adding 'torch/include/ATen/ops/addr_native.h' 2025-08-26T20:12:30.5616303Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-08-26T20:12:30.5620518Z adding 'torch/include/ATen/ops/adjoint.h' 2025-08-26T20:12:30.5625239Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5629037Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-08-26T20:12:30.5633325Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-08-26T20:12:30.5638081Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-08-26T20:12:30.5642134Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-08-26T20:12:30.5645847Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5648712Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-08-26T20:12:30.5651989Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-08-26T20:12:30.5655403Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5658343Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-08-26T20:12:30.5661668Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-08-26T20:12:30.5664673Z adding 'torch/include/ATen/ops/alias.h' 2025-08-26T20:12:30.5668236Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5670973Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-08-26T20:12:30.5674367Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5677522Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5680483Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-08-26T20:12:30.5683874Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-08-26T20:12:30.5686880Z adding 'torch/include/ATen/ops/alias_native.h' 2025-08-26T20:12:30.5690109Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-08-26T20:12:30.5693034Z adding 'torch/include/ATen/ops/align_as.h' 2025-08-26T20:12:30.5696373Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5699221Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-08-26T20:12:30.5702504Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-08-26T20:12:30.5705547Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-08-26T20:12:30.5708883Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5711717Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-08-26T20:12:30.5714968Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-08-26T20:12:30.5717945Z adding 'torch/include/ATen/ops/align_to.h' 2025-08-26T20:12:30.5721332Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5724318Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-08-26T20:12:30.5727598Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-08-26T20:12:30.5731069Z adding 'torch/include/ATen/ops/all.h' 2025-08-26T20:12:30.5734412Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5737716Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5740731Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5743947Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-08-26T20:12:30.5747115Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-08-26T20:12:30.5750211Z adding 'torch/include/ATen/ops/all_meta.h' 2025-08-26T20:12:30.5753551Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-08-26T20:12:30.5756708Z adding 'torch/include/ATen/ops/all_native.h' 2025-08-26T20:12:30.5760299Z adding 'torch/include/ATen/ops/all_ops.h' 2025-08-26T20:12:30.5763495Z adding 'torch/include/ATen/ops/allclose.h' 2025-08-26T20:12:30.5767020Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5770033Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-08-26T20:12:30.5773240Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-08-26T20:12:30.5776531Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-08-26T20:12:30.5779713Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5782703Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-08-26T20:12:30.5785846Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-08-26T20:12:30.5789123Z adding 'torch/include/ATen/ops/amax.h' 2025-08-26T20:12:30.5792759Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5795583Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-08-26T20:12:30.5798656Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-08-26T20:12:30.5801775Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-08-26T20:12:30.5804995Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-08-26T20:12:30.5808169Z adding 'torch/include/ATen/ops/amax_native.h' 2025-08-26T20:12:30.5811489Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-08-26T20:12:30.5814620Z adding 'torch/include/ATen/ops/amin.h' 2025-08-26T20:12:30.5818248Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5821020Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-08-26T20:12:30.5824226Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-08-26T20:12:30.5827248Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-08-26T20:12:30.5830438Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-08-26T20:12:30.5833523Z adding 'torch/include/ATen/ops/amin_native.h' 2025-08-26T20:12:30.5836723Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-08-26T20:12:30.5839999Z adding 'torch/include/ATen/ops/aminmax.h' 2025-08-26T20:12:30.5843332Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5846536Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-08-26T20:12:30.5849765Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-08-26T20:12:30.5852887Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-08-26T20:12:30.5856057Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-08-26T20:12:30.5859209Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-08-26T20:12:30.5862743Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-08-26T20:12:30.5865627Z adding 'torch/include/ATen/ops/and.h' 2025-08-26T20:12:30.5868969Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5871823Z adding 'torch/include/ATen/ops/and_native.h' 2025-08-26T20:12:30.5875253Z adding 'torch/include/ATen/ops/and_ops.h' 2025-08-26T20:12:30.5878369Z adding 'torch/include/ATen/ops/angle.h' 2025-08-26T20:12:30.5881656Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-08-26T20:12:30.5884860Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-08-26T20:12:30.5888434Z adding 'torch/include/ATen/ops/angle_native.h' 2025-08-26T20:12:30.5891677Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-08-26T20:12:30.5895076Z adding 'torch/include/ATen/ops/any.h' 2025-08-26T20:12:30.5898823Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5902196Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.5905293Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5908498Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-08-26T20:12:30.5911722Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-08-26T20:12:30.5914942Z adding 'torch/include/ATen/ops/any_meta.h' 2025-08-26T20:12:30.5918150Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-08-26T20:12:30.5921274Z adding 'torch/include/ATen/ops/any_native.h' 2025-08-26T20:12:30.5924956Z adding 'torch/include/ATen/ops/any_ops.h' 2025-08-26T20:12:30.5928620Z adding 'torch/include/ATen/ops/arange.h' 2025-08-26T20:12:30.5932054Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.5935248Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-08-26T20:12:30.5938366Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-08-26T20:12:30.5941368Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-08-26T20:12:30.5944401Z adding 'torch/include/ATen/ops/arange_native.h' 2025-08-26T20:12:30.5947870Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-08-26T20:12:30.5951185Z adding 'torch/include/ATen/ops/arccos.h' 2025-08-26T20:12:30.5954763Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5957466Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-08-26T20:12:30.5960602Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-08-26T20:12:30.5963688Z adding 'torch/include/ATen/ops/arccosh.h' 2025-08-26T20:12:30.5967017Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5978502Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-08-26T20:12:30.5982794Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-08-26T20:12:30.5984971Z adding 'torch/include/ATen/ops/arcsin.h' 2025-08-26T20:12:30.5988260Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.5991135Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-08-26T20:12:30.5994299Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-08-26T20:12:30.5997399Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-08-26T20:12:30.6000617Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6003488Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-08-26T20:12:30.6006781Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-08-26T20:12:30.6009889Z adding 'torch/include/ATen/ops/arctan.h' 2025-08-26T20:12:30.6012998Z adding 'torch/include/ATen/ops/arctan2.h' 2025-08-26T20:12:30.6016262Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6019112Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-08-26T20:12:30.6022324Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-08-26T20:12:30.6025685Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6028424Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-08-26T20:12:30.6031570Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-08-26T20:12:30.6034623Z adding 'torch/include/ATen/ops/arctanh.h' 2025-08-26T20:12:30.6038054Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6040961Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-08-26T20:12:30.6044107Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-08-26T20:12:30.6047337Z adding 'torch/include/ATen/ops/argmax.h' 2025-08-26T20:12:30.6050673Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6053586Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-08-26T20:12:30.6056639Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-08-26T20:12:30.6059616Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-08-26T20:12:30.6062687Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-08-26T20:12:30.6065707Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-08-26T20:12:30.6068874Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-08-26T20:12:30.6071966Z adding 'torch/include/ATen/ops/argmin.h' 2025-08-26T20:12:30.6075301Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6078261Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-08-26T20:12:30.6081255Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-08-26T20:12:30.6084200Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-08-26T20:12:30.6087401Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-08-26T20:12:30.6090391Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-08-26T20:12:30.6093553Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-08-26T20:12:30.6096782Z adding 'torch/include/ATen/ops/argsort.h' 2025-08-26T20:12:30.6099994Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6102870Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-08-26T20:12:30.6106120Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-08-26T20:12:30.6109164Z adding 'torch/include/ATen/ops/argwhere.h' 2025-08-26T20:12:30.6112449Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6115308Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-08-26T20:12:30.6118345Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-08-26T20:12:30.6121641Z adding 'torch/include/ATen/ops/as_strided.h' 2025-08-26T20:12:30.6125060Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6128465Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-08-26T20:12:30.6131894Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6135183Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6138012Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-08-26T20:12:30.6141382Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-08-26T20:12:30.6144648Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-08-26T20:12:30.6147761Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-08-26T20:12:30.6150942Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-08-26T20:12:30.6153980Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-08-26T20:12:30.6157428Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-08-26T20:12:30.6161001Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-08-26T20:12:30.6164661Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6168251Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6171134Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-08-26T20:12:30.6174535Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-08-26T20:12:30.6177652Z adding 'torch/include/ATen/ops/asin.h' 2025-08-26T20:12:30.6181130Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6184142Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-08-26T20:12:30.6187336Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-08-26T20:12:30.6190994Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-08-26T20:12:30.6193536Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-08-26T20:12:30.6196652Z adding 'torch/include/ATen/ops/asin_native.h' 2025-08-26T20:12:30.6199928Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-08-26T20:12:30.6203067Z adding 'torch/include/ATen/ops/asinh.h' 2025-08-26T20:12:30.6206470Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6209550Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-08-26T20:12:30.6212628Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-08-26T20:12:30.6215868Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-08-26T20:12:30.6219576Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-08-26T20:12:30.6222045Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-08-26T20:12:30.6225331Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-08-26T20:12:30.6228525Z adding 'torch/include/ATen/ops/atan.h' 2025-08-26T20:12:30.6231660Z adding 'torch/include/ATen/ops/atan2.h' 2025-08-26T20:12:30.6234976Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6238047Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-08-26T20:12:30.6241099Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-08-26T20:12:30.6244285Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-08-26T20:12:30.6248137Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-08-26T20:12:30.6250650Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-08-26T20:12:30.6253996Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-08-26T20:12:30.6257289Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6260352Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-08-26T20:12:30.6263438Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-08-26T20:12:30.6266647Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-08-26T20:12:30.6269662Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-08-26T20:12:30.6272846Z adding 'torch/include/ATen/ops/atan_native.h' 2025-08-26T20:12:30.6276108Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-08-26T20:12:30.6290734Z adding 'torch/include/ATen/ops/atanh.h' 2025-08-26T20:12:30.6291240Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6291410Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-08-26T20:12:30.6291551Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-08-26T20:12:30.6291774Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-08-26T20:12:30.6295055Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-08-26T20:12:30.6298050Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-08-26T20:12:30.6301440Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-08-26T20:12:30.6305519Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-08-26T20:12:30.6307967Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6311326Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-08-26T20:12:30.6314286Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-08-26T20:12:30.6317351Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-08-26T20:12:30.6320627Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6323593Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-08-26T20:12:30.6326827Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-08-26T20:12:30.6330084Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-08-26T20:12:30.6333382Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6336343Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-08-26T20:12:30.6339563Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-08-26T20:12:30.6343075Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-08-26T20:12:30.6346531Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6349624Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6352696Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-08-26T20:12:30.6355955Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-08-26T20:12:30.6359362Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-08-26T20:12:30.6362757Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-08-26T20:12:30.6366391Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6369510Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-08-26T20:12:30.6372663Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-08-26T20:12:30.6375886Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-08-26T20:12:30.6379122Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-08-26T20:12:30.6382311Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-08-26T20:12:30.6385792Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-08-26T20:12:30.6389617Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6393003Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-08-26T20:12:30.6396710Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-08-26T20:12:30.6400209Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-08-26T20:12:30.6403614Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-08-26T20:12:30.6406935Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-08-26T20:12:30.6410436Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-08-26T20:12:30.6413682Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-08-26T20:12:30.6417155Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-08-26T20:12:30.6420711Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6423861Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-08-26T20:12:30.6427031Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-08-26T20:12:30.6430093Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-08-26T20:12:30.6433458Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-08-26T20:12:30.6436586Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-08-26T20:12:30.6439841Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-08-26T20:12:30.6443181Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6446250Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-08-26T20:12:30.6449830Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-08-26T20:12:30.6452668Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-08-26T20:12:30.6455828Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-08-26T20:12:30.6458964Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-08-26T20:12:30.6462268Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-08-26T20:12:30.6465543Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-08-26T20:12:30.6469105Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6471850Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-08-26T20:12:30.6475052Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-08-26T20:12:30.6478035Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-08-26T20:12:30.6481343Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-08-26T20:12:30.6484453Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-08-26T20:12:30.6488017Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-08-26T20:12:30.6491435Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-08-26T20:12:30.6494851Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6497780Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-08-26T20:12:30.6501131Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-08-26T20:12:30.6504253Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-08-26T20:12:30.6507395Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-08-26T20:12:30.6510565Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-08-26T20:12:30.6513654Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-08-26T20:12:30.6516844Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-08-26T20:12:30.6520215Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6523219Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-08-26T20:12:30.6526386Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-08-26T20:12:30.6529622Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-08-26T20:12:30.6532742Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-08-26T20:12:30.6536130Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-08-26T20:12:30.6539454Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-08-26T20:12:30.6543131Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6546101Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-08-26T20:12:30.6549281Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-08-26T20:12:30.6552713Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-08-26T20:12:30.6555980Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6559105Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-08-26T20:12:30.6562339Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-08-26T20:12:30.6565513Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-08-26T20:12:30.6568819Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-08-26T20:12:30.6572256Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-08-26T20:12:30.6575778Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6578885Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-08-26T20:12:30.6582261Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-08-26T20:12:30.6585631Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-08-26T20:12:30.6589121Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-08-26T20:12:30.6592525Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6595686Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-08-26T20:12:30.6598860Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-08-26T20:12:30.6602151Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-08-26T20:12:30.6605269Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-08-26T20:12:30.6608649Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-08-26T20:12:30.6611993Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-08-26T20:12:30.6615318Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6618394Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-08-26T20:12:30.6621384Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-08-26T20:12:30.6624640Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-08-26T20:12:30.6627935Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-08-26T20:12:30.6631296Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6634454Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-08-26T20:12:30.6637557Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-08-26T20:12:30.6640733Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-08-26T20:12:30.6644029Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-08-26T20:12:30.6647520Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-08-26T20:12:30.6650985Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6654213Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6657340Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-08-26T20:12:30.6660427Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-08-26T20:12:30.6663709Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-08-26T20:12:30.6666756Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-08-26T20:12:30.6670426Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-08-26T20:12:30.6673736Z adding 'torch/include/ATen/ops/bilinear.h' 2025-08-26T20:12:30.6677020Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.6680065Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-08-26T20:12:30.6683255Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-08-26T20:12:30.6686655Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-08-26T20:12:30.6689883Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-08-26T20:12:30.6693308Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-08-26T20:12:30.6696584Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-08-26T20:12:30.6699660Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-08-26T20:12:30.6703108Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-08-26T20:12:30.6706300Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-08-26T20:12:30.6709646Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-08-26T20:12:30.6712741Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-08-26T20:12:30.6716701Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-08-26T20:12:30.6720322Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-08-26T20:12:30.6723504Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6726734Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-08-26T20:12:30.6730006Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-08-26T20:12:30.6733416Z adding 'torch/include/ATen/ops/bincount.h' 2025-08-26T20:12:30.6736916Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6740214Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-08-26T20:12:30.6743452Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-08-26T20:12:30.6746456Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-08-26T20:12:30.6749856Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-08-26T20:12:30.6753116Z adding 'torch/include/ATen/ops/binomial.h' 2025-08-26T20:12:30.6756410Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6759472Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-08-26T20:12:30.6762532Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-08-26T20:12:30.6765742Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-08-26T20:12:30.6768956Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-08-26T20:12:30.6772478Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-08-26T20:12:30.6775931Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6779206Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6782189Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-08-26T20:12:30.6785273Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-08-26T20:12:30.6788327Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-08-26T20:12:30.6791400Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-08-26T20:12:30.6794566Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-08-26T20:12:30.6798081Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-08-26T20:12:30.6801626Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-08-26T20:12:30.6805415Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6808532Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6811463Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-08-26T20:12:30.6814547Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-08-26T20:12:30.6817727Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-08-26T20:12:30.6820890Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-08-26T20:12:30.6824123Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-08-26T20:12:30.6828116Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-08-26T20:12:30.6831031Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-08-26T20:12:30.6834464Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6837375Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-08-26T20:12:30.6840592Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-08-26T20:12:30.6843584Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-08-26T20:12:30.6846940Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-08-26T20:12:30.6849986Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-08-26T20:12:30.6853290Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-08-26T20:12:30.6856663Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-08-26T20:12:30.6860024Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6863294Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6866192Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-08-26T20:12:30.6869449Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-08-26T20:12:30.6872440Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-08-26T20:12:30.6875701Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-08-26T20:12:30.6878751Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-08-26T20:12:30.6882371Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-08-26T20:12:30.6885975Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-08-26T20:12:30.6889354Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6892524Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6895648Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-08-26T20:12:30.6898688Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-08-26T20:12:30.6901644Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-08-26T20:12:30.6904745Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-08-26T20:12:30.6907774Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-08-26T20:12:30.6911341Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-08-26T20:12:30.6914802Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-08-26T20:12:30.6918155Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6921338Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6924251Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-08-26T20:12:30.6927439Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-08-26T20:12:30.6930674Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-08-26T20:12:30.6933536Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-08-26T20:12:30.6936540Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-08-26T20:12:30.6940010Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-08-26T20:12:30.6943597Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-08-26T20:12:30.6947285Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6950101Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-08-26T20:12:30.6953348Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-08-26T20:12:30.6956468Z adding 'torch/include/ATen/ops/block_diag.h' 2025-08-26T20:12:30.6959655Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.6962499Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-08-26T20:12:30.6965776Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-08-26T20:12:30.6969281Z adding 'torch/include/ATen/ops/bmm.h' 2025-08-26T20:12:30.6972308Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.6975191Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-08-26T20:12:30.6978288Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-08-26T20:12:30.6981254Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-08-26T20:12:30.6984332Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-08-26T20:12:30.6987470Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-08-26T20:12:30.6990778Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-08-26T20:12:30.6993967Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-08-26T20:12:30.6997231Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7000273Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-08-26T20:12:30.7003353Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-08-26T20:12:30.7006514Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-08-26T20:12:30.7009996Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7012609Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-08-26T20:12:30.7015686Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-08-26T20:12:30.7018900Z adding 'torch/include/ATen/ops/bucketize.h' 2025-08-26T20:12:30.7022180Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7025145Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-08-26T20:12:30.7028247Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-08-26T20:12:30.7031236Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-08-26T20:12:30.7034523Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-08-26T20:12:30.7037563Z adding 'torch/include/ATen/ops/can_cast.h' 2025-08-26T20:12:30.7040774Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7044920Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-08-26T20:12:30.7047273Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-08-26T20:12:30.7050079Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-08-26T20:12:30.7053279Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7056090Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-08-26T20:12:30.7059144Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-08-26T20:12:30.7062296Z adding 'torch/include/ATen/ops/cat.h' 2025-08-26T20:12:30.7065633Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.7068573Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7071545Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-08-26T20:12:30.7074613Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-08-26T20:12:30.7078072Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-08-26T20:12:30.7081315Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-08-26T20:12:30.7084403Z adding 'torch/include/ATen/ops/cat_native.h' 2025-08-26T20:12:30.7087863Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-08-26T20:12:30.7091079Z adding 'torch/include/ATen/ops/cauchy.h' 2025-08-26T20:12:30.7094382Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7097690Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-08-26T20:12:30.7100737Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-08-26T20:12:30.7103745Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-08-26T20:12:30.7106894Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-08-26T20:12:30.7110161Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-08-26T20:12:30.7113378Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-08-26T20:12:30.7116637Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7119834Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-08-26T20:12:30.7123005Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7126397Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.7129320Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-08-26T20:12:30.7132494Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-08-26T20:12:30.7135632Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-08-26T20:12:30.7138781Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-08-26T20:12:30.7141996Z adding 'torch/include/ATen/ops/cdist.h' 2025-08-26T20:12:30.7145254Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7148284Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-08-26T20:12:30.7151473Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-08-26T20:12:30.7154668Z adding 'torch/include/ATen/ops/ceil.h' 2025-08-26T20:12:30.7158100Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.7161042Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-08-26T20:12:30.7164284Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-08-26T20:12:30.7167648Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-08-26T20:12:30.7170942Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-08-26T20:12:30.7173999Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-08-26T20:12:30.7177350Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-08-26T20:12:30.7180566Z adding 'torch/include/ATen/ops/celu.h' 2025-08-26T20:12:30.7183884Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7186899Z adding 'torch/include/ATen/ops/celu_native.h' 2025-08-26T20:12:30.7190137Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-08-26T20:12:30.7193437Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-08-26T20:12:30.7196694Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7199670Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-08-26T20:12:30.7202817Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-08-26T20:12:30.7206045Z adding 'torch/include/ATen/ops/chalf.h' 2025-08-26T20:12:30.7209493Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7212335Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-08-26T20:12:30.7215560Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-08-26T20:12:30.7218866Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-08-26T20:12:30.7222364Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7225352Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-08-26T20:12:30.7228588Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-08-26T20:12:30.7231612Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-08-26T20:12:30.7234890Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-08-26T20:12:30.7238092Z adding 'torch/include/ATen/ops/cholesky.h' 2025-08-26T20:12:30.7241237Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-08-26T20:12:30.7244448Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-08-26T20:12:30.7247667Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-08-26T20:12:30.7251081Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-08-26T20:12:30.7254155Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-08-26T20:12:30.7257338Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-08-26T20:12:30.7260585Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-08-26T20:12:30.7263655Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-08-26T20:12:30.7266984Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-08-26T20:12:30.7270142Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-08-26T20:12:30.7273558Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7276461Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-08-26T20:12:30.7279790Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-08-26T20:12:30.7282944Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-08-26T20:12:30.7286438Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7289478Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-08-26T20:12:30.7292643Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-08-26T20:12:30.7295769Z adding 'torch/include/ATen/ops/chunk.h' 2025-08-26T20:12:30.7299001Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7302410Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-08-26T20:12:30.7305564Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-08-26T20:12:30.7308945Z adding 'torch/include/ATen/ops/clamp.h' 2025-08-26T20:12:30.7312511Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.7315550Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-08-26T20:12:30.7318888Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-08-26T20:12:30.7322131Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-08-26T20:12:30.7325734Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.7328766Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-08-26T20:12:30.7332087Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-08-26T20:12:30.7335241Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-08-26T20:12:30.7338414Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-08-26T20:12:30.7341565Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-08-26T20:12:30.7344986Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-08-26T20:12:30.7348520Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-08-26T20:12:30.7352988Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-08-26T20:12:30.7359461Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-08-26T20:12:30.7363323Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.7366564Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-08-26T20:12:30.7369750Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-08-26T20:12:30.7372905Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-08-26T20:12:30.7376166Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-08-26T20:12:30.7379238Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-08-26T20:12:30.7382799Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-08-26T20:12:30.7385982Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-08-26T20:12:30.7389679Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-08-26T20:12:30.7393159Z adding 'torch/include/ATen/ops/clip.h' 2025-08-26T20:12:30.7397145Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7400707Z adding 'torch/include/ATen/ops/clip_native.h' 2025-08-26T20:12:30.7404785Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-08-26T20:12:30.7408640Z adding 'torch/include/ATen/ops/clone.h' 2025-08-26T20:12:30.7412375Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7415877Z adding 'torch/include/ATen/ops/clone_native.h' 2025-08-26T20:12:30.7428708Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-08-26T20:12:30.7428832Z adding 'torch/include/ATen/ops/coalesce.h' 2025-08-26T20:12:30.7429113Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7429748Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-08-26T20:12:30.7432848Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-08-26T20:12:30.7436659Z adding 'torch/include/ATen/ops/col2im.h' 2025-08-26T20:12:30.7440630Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-08-26T20:12:30.7443279Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-08-26T20:12:30.7446668Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-08-26T20:12:30.7449881Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-08-26T20:12:30.7453114Z adding 'torch/include/ATen/ops/col_indices.h' 2025-08-26T20:12:30.7456582Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7459427Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-08-26T20:12:30.7463903Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7466729Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.7469532Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-08-26T20:12:30.7472774Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-08-26T20:12:30.7475784Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-08-26T20:12:30.7479799Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-08-26T20:12:30.7482044Z adding 'torch/include/ATen/ops/column_stack.h' 2025-08-26T20:12:30.7485402Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7488363Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-08-26T20:12:30.7491593Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-08-26T20:12:30.7494661Z adding 'torch/include/ATen/ops/combinations.h' 2025-08-26T20:12:30.7497806Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7500621Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-08-26T20:12:30.7503684Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-08-26T20:12:30.7506733Z adding 'torch/include/ATen/ops/complex.h' 2025-08-26T20:12:30.7510609Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7513094Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-08-26T20:12:30.7516132Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-08-26T20:12:30.7519068Z adding 'torch/include/ATen/ops/complex_native.h' 2025-08-26T20:12:30.7522205Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-08-26T20:12:30.7525965Z adding 'torch/include/ATen/ops/concat.h' 2025-08-26T20:12:30.7529244Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7532124Z adding 'torch/include/ATen/ops/concat_native.h' 2025-08-26T20:12:30.7535436Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-08-26T20:12:30.7538656Z adding 'torch/include/ATen/ops/concatenate.h' 2025-08-26T20:12:30.7541972Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7544891Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-08-26T20:12:30.7548265Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-08-26T20:12:30.7551292Z adding 'torch/include/ATen/ops/conj.h' 2025-08-26T20:12:30.7554485Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7557396Z adding 'torch/include/ATen/ops/conj_native.h' 2025-08-26T20:12:30.7560471Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-08-26T20:12:30.7563627Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-08-26T20:12:30.7567029Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7570040Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7573000Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-08-26T20:12:30.7576055Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-08-26T20:12:30.7579055Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-08-26T20:12:30.7582243Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-08-26T20:12:30.7585638Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-08-26T20:12:30.7589010Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7591961Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-08-26T20:12:30.7595248Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-08-26T20:12:30.7598295Z adding 'torch/include/ATen/ops/contiguous.h' 2025-08-26T20:12:30.7601524Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7604346Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-08-26T20:12:30.7607568Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-08-26T20:12:30.7611022Z adding 'torch/include/ATen/ops/conv1d.h' 2025-08-26T20:12:30.7614455Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7617396Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-08-26T20:12:30.7620644Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-08-26T20:12:30.7624040Z adding 'torch/include/ATen/ops/conv2d.h' 2025-08-26T20:12:30.7627457Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7630405Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-08-26T20:12:30.7633699Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-08-26T20:12:30.7637147Z adding 'torch/include/ATen/ops/conv3d.h' 2025-08-26T20:12:30.7640558Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7643473Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-08-26T20:12:30.7646867Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-08-26T20:12:30.7650480Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-08-26T20:12:30.7654070Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7657157Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-08-26T20:12:30.7660191Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-08-26T20:12:30.7663479Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-08-26T20:12:30.7666617Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-08-26T20:12:30.7669725Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-08-26T20:12:30.7672943Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7675812Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-08-26T20:12:30.7678961Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-08-26T20:12:30.7682208Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7685091Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-08-26T20:12:30.7688408Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-08-26T20:12:30.7691757Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-08-26T20:12:30.7695194Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7698571Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-08-26T20:12:30.7702637Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-08-26T20:12:30.7705406Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-08-26T20:12:30.7708797Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7711640Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-08-26T20:12:30.7714946Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-08-26T20:12:30.7718208Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-08-26T20:12:30.7721652Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7724553Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-08-26T20:12:30.7727875Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-08-26T20:12:30.7731427Z adding 'torch/include/ATen/ops/convolution.h' 2025-08-26T20:12:30.7735509Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-08-26T20:12:30.7739206Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7742342Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-08-26T20:12:30.7745422Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-08-26T20:12:30.7748829Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-08-26T20:12:30.7752744Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-08-26T20:12:30.7756449Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7759504Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-08-26T20:12:30.7762914Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-08-26T20:12:30.7766425Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7769396Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-08-26T20:12:30.7772679Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-08-26T20:12:30.7776406Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-08-26T20:12:30.7780081Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7783103Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-08-26T20:12:30.7786425Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-08-26T20:12:30.7789514Z adding 'torch/include/ATen/ops/copy.h' 2025-08-26T20:12:30.7792761Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7795906Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.7798811Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-08-26T20:12:30.7801838Z adding 'torch/include/ATen/ops/copy_native.h' 2025-08-26T20:12:30.7805416Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-08-26T20:12:30.7808702Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-08-26T20:12:30.7812011Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7815006Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-08-26T20:12:30.7817966Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-08-26T20:12:30.7821450Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-08-26T20:12:30.7824487Z adding 'torch/include/ATen/ops/copysign.h' 2025-08-26T20:12:30.7827673Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7830804Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.7833737Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-08-26T20:12:30.7836800Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-08-26T20:12:30.7839852Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-08-26T20:12:30.7843010Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-08-26T20:12:30.7846005Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-08-26T20:12:30.7849383Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-08-26T20:12:30.7852451Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-08-26T20:12:30.7855714Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7859149Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-08-26T20:12:30.7861743Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-08-26T20:12:30.7864678Z adding 'torch/include/ATen/ops/cos.h' 2025-08-26T20:12:30.7867939Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.7870811Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-08-26T20:12:30.7873810Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-08-26T20:12:30.7876899Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-08-26T20:12:30.7879893Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-08-26T20:12:30.7882876Z adding 'torch/include/ATen/ops/cos_native.h' 2025-08-26T20:12:30.7886145Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-08-26T20:12:30.7889221Z adding 'torch/include/ATen/ops/cosh.h' 2025-08-26T20:12:30.7892483Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.7895350Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-08-26T20:12:30.7898345Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-08-26T20:12:30.7901302Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-08-26T20:12:30.7904734Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-08-26T20:12:30.7907518Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-08-26T20:12:30.7910684Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-08-26T20:12:30.7913796Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-08-26T20:12:30.7917064Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7919899Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-08-26T20:12:30.7923020Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-08-26T20:12:30.7926129Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-08-26T20:12:30.7929373Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7932280Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-08-26T20:12:30.7935391Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-08-26T20:12:30.7938519Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-08-26T20:12:30.7941784Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.7944730Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-08-26T20:12:30.7947768Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-08-26T20:12:30.7950708Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-08-26T20:12:30.7953976Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-08-26T20:12:30.7957151Z adding 'torch/include/ATen/ops/cov.h' 2025-08-26T20:12:30.7960349Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7963193Z adding 'torch/include/ATen/ops/cov_native.h' 2025-08-26T20:12:30.7966431Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-08-26T20:12:30.7969548Z adding 'torch/include/ATen/ops/cross.h' 2025-08-26T20:12:30.7972796Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7975902Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-08-26T20:12:30.7979256Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.7982168Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-08-26T20:12:30.7985309Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-08-26T20:12:30.7988264Z adding 'torch/include/ATen/ops/cross_native.h' 2025-08-26T20:12:30.7991412Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-08-26T20:12:30.7994383Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-08-26T20:12:30.7997559Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8000481Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-08-26T20:12:30.8003816Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8015282Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8015908Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-08-26T20:12:30.8016307Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-08-26T20:12:30.8017425Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-08-26T20:12:30.8041440Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-08-26T20:12:30.8041849Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-08-26T20:12:30.8042304Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8042786Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-08-26T20:12:30.8043128Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-08-26T20:12:30.8043520Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-08-26T20:12:30.8044018Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-08-26T20:12:30.8045808Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8049033Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-08-26T20:12:30.8052621Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-08-26T20:12:30.8055362Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-08-26T20:12:30.8059002Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8061828Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-08-26T20:12:30.8064939Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-08-26T20:12:30.8068125Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-08-26T20:12:30.8071677Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-08-26T20:12:30.8075841Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-08-26T20:12:30.8078449Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8081691Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-08-26T20:12:30.8084861Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-08-26T20:12:30.8088554Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-08-26T20:12:30.8092775Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-08-26T20:12:30.8095056Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-08-26T20:12:30.8098801Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-08-26T20:12:30.8102317Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-08-26T20:12:30.8106294Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-08-26T20:12:30.8110485Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8113026Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-08-26T20:12:30.8116226Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-08-26T20:12:30.8119518Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-08-26T20:12:30.8123015Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-08-26T20:12:30.8127289Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-08-26T20:12:30.8129757Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-08-26T20:12:30.8133510Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-08-26T20:12:30.8136999Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8140228Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-08-26T20:12:30.8143251Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-08-26T20:12:30.8146840Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-08-26T20:12:30.8150534Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-08-26T20:12:30.8154086Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8157349Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-08-26T20:12:30.8160389Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-08-26T20:12:30.8164454Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-08-26T20:12:30.8167847Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-08-26T20:12:30.8170752Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-08-26T20:12:30.8173983Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8176969Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-08-26T20:12:30.8180109Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-08-26T20:12:30.8183296Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-08-26T20:12:30.8186702Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8190796Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-08-26T20:12:30.8192981Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-08-26T20:12:30.8196180Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-08-26T20:12:30.8199208Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-08-26T20:12:30.8203288Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8206406Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-08-26T20:12:30.8209481Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-08-26T20:12:30.8212875Z adding 'torch/include/ATen/ops/cummax.h' 2025-08-26T20:12:30.8215955Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8219259Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8222211Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-08-26T20:12:30.8225516Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-08-26T20:12:30.8228651Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-08-26T20:12:30.8231909Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8234738Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-08-26T20:12:30.8237836Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-08-26T20:12:30.8241021Z adding 'torch/include/ATen/ops/cummin.h' 2025-08-26T20:12:30.8244304Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8247599Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8250567Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-08-26T20:12:30.8253866Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-08-26T20:12:30.8257091Z adding 'torch/include/ATen/ops/cumprod.h' 2025-08-26T20:12:30.8260174Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-08-26T20:12:30.8263409Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8266267Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-08-26T20:12:30.8269410Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-08-26T20:12:30.8272653Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8275680Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8278654Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-08-26T20:12:30.8281728Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-08-26T20:12:30.8285103Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-08-26T20:12:30.8288029Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-08-26T20:12:30.8291041Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-08-26T20:12:30.8294474Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-08-26T20:12:30.8297723Z adding 'torch/include/ATen/ops/cumsum.h' 2025-08-26T20:12:30.8301080Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8304795Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8307285Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-08-26T20:12:30.8310360Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-08-26T20:12:30.8313355Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-08-26T20:12:30.8316438Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-08-26T20:12:30.8319438Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-08-26T20:12:30.8322823Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-08-26T20:12:30.8326119Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-08-26T20:12:30.8329368Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8332239Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-08-26T20:12:30.8335408Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-08-26T20:12:30.8338352Z adding 'torch/include/ATen/ops/data.h' 2025-08-26T20:12:30.8341522Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8344307Z adding 'torch/include/ATen/ops/data_native.h' 2025-08-26T20:12:30.8347338Z adding 'torch/include/ATen/ops/data_ops.h' 2025-08-26T20:12:30.8350380Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-08-26T20:12:30.8353568Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8356447Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-08-26T20:12:30.8359625Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-08-26T20:12:30.8362625Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-08-26T20:12:30.8365923Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8368781Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-08-26T20:12:30.8371871Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-08-26T20:12:30.8375022Z adding 'torch/include/ATen/ops/dequantize.h' 2025-08-26T20:12:30.8378287Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8381224Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-08-26T20:12:30.8384242Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-08-26T20:12:30.8387251Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-08-26T20:12:30.8390611Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-08-26T20:12:30.8393698Z adding 'torch/include/ATen/ops/det.h' 2025-08-26T20:12:30.8396881Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8399720Z adding 'torch/include/ATen/ops/det_native.h' 2025-08-26T20:12:30.8402777Z adding 'torch/include/ATen/ops/det_ops.h' 2025-08-26T20:12:30.8406297Z adding 'torch/include/ATen/ops/detach.h' 2025-08-26T20:12:30.8409782Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8412782Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-08-26T20:12:30.8416634Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8420293Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8423481Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-08-26T20:12:30.8427178Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-08-26T20:12:30.8430700Z adding 'torch/include/ATen/ops/detach_native.h' 2025-08-26T20:12:30.8434242Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-08-26T20:12:30.8437941Z adding 'torch/include/ATen/ops/diag.h' 2025-08-26T20:12:30.8441569Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8445093Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-08-26T20:12:30.8448987Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8452509Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8455455Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-08-26T20:12:30.8458761Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-08-26T20:12:30.8461781Z adding 'torch/include/ATen/ops/diag_native.h' 2025-08-26T20:12:30.8465096Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-08-26T20:12:30.8468131Z adding 'torch/include/ATen/ops/diagflat.h' 2025-08-26T20:12:30.8471595Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8474499Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-08-26T20:12:30.8477794Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-08-26T20:12:30.8480845Z adding 'torch/include/ATen/ops/diagonal.h' 2025-08-26T20:12:30.8484201Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-08-26T20:12:30.8487918Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8490834Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-08-26T20:12:30.8494092Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-08-26T20:12:30.8497315Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8500365Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8503533Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-08-26T20:12:30.8506783Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8509940Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8512710Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-08-26T20:12:30.8515859Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-08-26T20:12:30.8518840Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-08-26T20:12:30.8521986Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-08-26T20:12:30.8525149Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-08-26T20:12:30.8528553Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8531720Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8534691Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-08-26T20:12:30.8537892Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-08-26T20:12:30.8540993Z adding 'torch/include/ATen/ops/diff.h' 2025-08-26T20:12:30.8544280Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8547188Z adding 'torch/include/ATen/ops/diff_native.h' 2025-08-26T20:12:30.8550486Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-08-26T20:12:30.8553556Z adding 'torch/include/ATen/ops/digamma.h' 2025-08-26T20:12:30.8556816Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8559659Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-08-26T20:12:30.8562685Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-08-26T20:12:30.8565668Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-08-26T20:12:30.8568751Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-08-26T20:12:30.8571733Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-08-26T20:12:30.8574875Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-08-26T20:12:30.8577914Z adding 'torch/include/ATen/ops/dist.h' 2025-08-26T20:12:30.8581117Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8584031Z adding 'torch/include/ATen/ops/dist_native.h' 2025-08-26T20:12:30.8587095Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-08-26T20:12:30.8590333Z adding 'torch/include/ATen/ops/div.h' 2025-08-26T20:12:30.8593715Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8596905Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8599849Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-08-26T20:12:30.8603003Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-08-26T20:12:30.8606044Z adding 'torch/include/ATen/ops/div_meta.h' 2025-08-26T20:12:30.8609157Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-08-26T20:12:30.8612356Z adding 'torch/include/ATen/ops/div_native.h' 2025-08-26T20:12:30.8616096Z adding 'torch/include/ATen/ops/div_ops.h' 2025-08-26T20:12:30.8619538Z adding 'torch/include/ATen/ops/divide.h' 2025-08-26T20:12:30.8622883Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8625838Z adding 'torch/include/ATen/ops/divide_native.h' 2025-08-26T20:12:30.8629446Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-08-26T20:12:30.8632656Z adding 'torch/include/ATen/ops/dot.h' 2025-08-26T20:12:30.8635883Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8638855Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-08-26T20:12:30.8641889Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-08-26T20:12:30.8644855Z adding 'torch/include/ATen/ops/dot_native.h' 2025-08-26T20:12:30.8648160Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-08-26T20:12:30.8651205Z adding 'torch/include/ATen/ops/dropout.h' 2025-08-26T20:12:30.8654384Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8657220Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-08-26T20:12:30.8660373Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-08-26T20:12:30.8663400Z adding 'torch/include/ATen/ops/dsplit.h' 2025-08-26T20:12:30.8666650Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8669495Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-08-26T20:12:30.8672629Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-08-26T20:12:30.8675706Z adding 'torch/include/ATen/ops/dstack.h' 2025-08-26T20:12:30.8679002Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8681898Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-08-26T20:12:30.8685016Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-08-26T20:12:30.8688201Z adding 'torch/include/ATen/ops/einsum.h' 2025-08-26T20:12:30.8691455Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8694384Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-08-26T20:12:30.8697495Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-08-26T20:12:30.8700596Z adding 'torch/include/ATen/ops/elu.h' 2025-08-26T20:12:30.8703778Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-08-26T20:12:30.8707285Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8710247Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-08-26T20:12:30.8713581Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-08-26T20:12:30.8716667Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-08-26T20:12:30.8720036Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-08-26T20:12:30.8723787Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-08-26T20:12:30.8727684Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-08-26T20:12:30.8732369Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8735888Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-08-26T20:12:30.8739531Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-08-26T20:12:30.8742755Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-08-26T20:12:30.8746904Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-08-26T20:12:30.8749997Z adding 'torch/include/ATen/ops/elu_native.h' 2025-08-26T20:12:30.8753362Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-08-26T20:12:30.8756855Z adding 'torch/include/ATen/ops/embedding.h' 2025-08-26T20:12:30.8760396Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-08-26T20:12:30.8763944Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8766938Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-08-26T20:12:30.8770215Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-08-26T20:12:30.8773443Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-08-26T20:12:30.8776980Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8779966Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-08-26T20:12:30.8783427Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-08-26T20:12:30.8786934Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8790343Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-08-26T20:12:30.8793941Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8796968Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-08-26T20:12:30.8800287Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-08-26T20:12:30.8803436Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-08-26T20:12:30.8806833Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-08-26T20:12:30.8810014Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-08-26T20:12:30.8813283Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-08-26T20:12:30.8816674Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-08-26T20:12:30.8820067Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8823198Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-08-26T20:12:30.8826273Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-08-26T20:12:30.8829642Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-08-26T20:12:30.8832764Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-08-26T20:12:30.8836044Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-08-26T20:12:30.8839333Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-08-26T20:12:30.8842650Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8845774Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-08-26T20:12:30.8848998Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-08-26T20:12:30.8852812Z adding 'torch/include/ATen/ops/empty.h' 2025-08-26T20:12:30.8856466Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8859698Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.8862975Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-08-26T20:12:30.8866163Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-08-26T20:12:30.8869588Z adding 'torch/include/ATen/ops/empty_like.h' 2025-08-26T20:12:30.8873050Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8876063Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-08-26T20:12:30.8879520Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-08-26T20:12:30.8882743Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-08-26T20:12:30.8886568Z adding 'torch/include/ATen/ops/empty_native.h' 2025-08-26T20:12:30.8889996Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-08-26T20:12:30.8893749Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-08-26T20:12:30.8909886Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8910453Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-08-26T20:12:30.8910840Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-08-26T20:12:30.8911196Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-08-26T20:12:30.8912363Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8915995Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-08-26T20:12:30.8918600Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-08-26T20:12:30.8922367Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-08-26T20:12:30.8925968Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.8929268Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-08-26T20:12:30.8932434Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-08-26T20:12:30.8935795Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-08-26T20:12:30.8939004Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-08-26T20:12:30.8942282Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-08-26T20:12:30.8946105Z adding 'torch/include/ATen/ops/eq.h' 2025-08-26T20:12:30.8949538Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8952531Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-08-26T20:12:30.8955607Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-08-26T20:12:30.8958586Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-08-26T20:12:30.8961970Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-08-26T20:12:30.8965098Z adding 'torch/include/ATen/ops/eq_native.h' 2025-08-26T20:12:30.8968510Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-08-26T20:12:30.8971626Z adding 'torch/include/ATen/ops/equal.h' 2025-08-26T20:12:30.8974722Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-08-26T20:12:30.8977756Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-08-26T20:12:30.8980796Z adding 'torch/include/ATen/ops/equal_native.h' 2025-08-26T20:12:30.8983885Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-08-26T20:12:30.8987021Z adding 'torch/include/ATen/ops/erf.h' 2025-08-26T20:12:30.8990358Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.8993402Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-08-26T20:12:30.8996428Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-08-26T20:12:30.8999384Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-08-26T20:12:30.9002446Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-08-26T20:12:30.9005572Z adding 'torch/include/ATen/ops/erf_native.h' 2025-08-26T20:12:30.9008829Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-08-26T20:12:30.9011973Z adding 'torch/include/ATen/ops/erfc.h' 2025-08-26T20:12:30.9015223Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.9018082Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-08-26T20:12:30.9021093Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-08-26T20:12:30.9024046Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-08-26T20:12:30.9027121Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-08-26T20:12:30.9030072Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-08-26T20:12:30.9033342Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-08-26T20:12:30.9036344Z adding 'torch/include/ATen/ops/erfinv.h' 2025-08-26T20:12:30.9039639Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.9042518Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-08-26T20:12:30.9045656Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-08-26T20:12:30.9048873Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-08-26T20:12:30.9051903Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-08-26T20:12:30.9055073Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-08-26T20:12:30.9058280Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-08-26T20:12:30.9061393Z adding 'torch/include/ATen/ops/exp.h' 2025-08-26T20:12:30.9064467Z adding 'torch/include/ATen/ops/exp2.h' 2025-08-26T20:12:30.9067731Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.9070674Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-08-26T20:12:30.9073614Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-08-26T20:12:30.9076558Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-08-26T20:12:30.9079634Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-08-26T20:12:30.9082893Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-08-26T20:12:30.9086222Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-08-26T20:12:30.9089529Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.9092427Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-08-26T20:12:30.9095475Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-08-26T20:12:30.9098440Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-08-26T20:12:30.9101490Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-08-26T20:12:30.9104413Z adding 'torch/include/ATen/ops/exp_native.h' 2025-08-26T20:12:30.9107648Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-08-26T20:12:30.9110756Z adding 'torch/include/ATen/ops/expand.h' 2025-08-26T20:12:30.9113752Z adding 'torch/include/ATen/ops/expand_as.h' 2025-08-26T20:12:30.9116959Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9119761Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-08-26T20:12:30.9122853Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-08-26T20:12:30.9126182Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9129363Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-08-26T20:12:30.9132763Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9135943Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.9138726Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-08-26T20:12:30.9141878Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-08-26T20:12:30.9144854Z adding 'torch/include/ATen/ops/expand_native.h' 2025-08-26T20:12:30.9147921Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-08-26T20:12:30.9150956Z adding 'torch/include/ATen/ops/expm1.h' 2025-08-26T20:12:30.9154273Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.9157163Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-08-26T20:12:30.9160231Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-08-26T20:12:30.9163168Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-08-26T20:12:30.9166325Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-08-26T20:12:30.9169319Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-08-26T20:12:30.9172497Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-08-26T20:12:30.9175625Z adding 'torch/include/ATen/ops/exponential.h' 2025-08-26T20:12:30.9178899Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9181868Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-08-26T20:12:30.9184954Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-08-26T20:12:30.9187958Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-08-26T20:12:30.9190920Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-08-26T20:12:30.9194133Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-08-26T20:12:30.9197822Z adding 'torch/include/ATen/ops/eye.h' 2025-08-26T20:12:30.9201435Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9204433Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-08-26T20:12:30.9207690Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-08-26T20:12:30.9211206Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-08-26T20:12:30.9214066Z adding 'torch/include/ATen/ops/eye_native.h' 2025-08-26T20:12:30.9217581Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-08-26T20:12:30.9220951Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-08-26T20:12:30.9224233Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-08-26T20:12:30.9227541Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-08-26T20:12:30.9230873Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9233933Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-08-26T20:12:30.9237071Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-08-26T20:12:30.9240530Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9243636Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-08-26T20:12:30.9246984Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-08-26T20:12:30.9250121Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-08-26T20:12:30.9253433Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-08-26T20:12:30.9256884Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9259806Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-08-26T20:12:30.9263144Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-08-26T20:12:30.9266333Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-08-26T20:12:30.9269730Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-08-26T20:12:30.9273087Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-08-26T20:12:30.9276427Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9279460Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-08-26T20:12:30.9282585Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-08-26T20:12:30.9286127Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9289270Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-08-26T20:12:30.9292478Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-08-26T20:12:30.9295620Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-08-26T20:12:30.9298921Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-08-26T20:12:30.9302342Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9305286Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-08-26T20:12:30.9308667Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-08-26T20:12:30.9311775Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-08-26T20:12:30.9315165Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9318315Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-08-26T20:12:30.9321779Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9324802Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-08-26T20:12:30.9328156Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-08-26T20:12:30.9331327Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-08-26T20:12:30.9334575Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-08-26T20:12:30.9337798Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-08-26T20:12:30.9341459Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9344525Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-08-26T20:12:30.9347992Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9350945Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-08-26T20:12:30.9354242Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-08-26T20:12:30.9357364Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-08-26T20:12:30.9360607Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-08-26T20:12:30.9363720Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-08-26T20:12:30.9367222Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9370192Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-08-26T20:12:30.9373383Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-08-26T20:12:30.9376541Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-08-26T20:12:30.9379759Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9382753Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-08-26T20:12:30.9385864Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-08-26T20:12:30.9389109Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-08-26T20:12:30.9392392Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9395394Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-08-26T20:12:30.9398748Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-08-26T20:12:30.9402277Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-08-26T20:12:30.9406101Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9409413Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-08-26T20:12:30.9413098Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-08-26T20:12:30.9416654Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-08-26T20:12:30.9420386Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9423693Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-08-26T20:12:30.9427314Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-08-26T20:12:30.9430971Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-08-26T20:12:30.9434635Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-08-26T20:12:30.9438168Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9441266Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-08-26T20:12:30.9444534Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-08-26T20:12:30.9448224Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9451187Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-08-26T20:12:30.9454603Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-08-26T20:12:30.9457909Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-08-26T20:12:30.9461153Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9464264Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-08-26T20:12:30.9467521Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-08-26T20:12:30.9470952Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-08-26T20:12:30.9474494Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9477359Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-08-26T20:12:30.9480758Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-08-26T20:12:30.9483847Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-08-26T20:12:30.9487175Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9490020Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-08-26T20:12:30.9493070Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-08-26T20:12:30.9496448Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-08-26T20:12:30.9499953Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-08-26T20:12:30.9503474Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9506333Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-08-26T20:12:30.9509524Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-08-26T20:12:30.9513049Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9515988Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-08-26T20:12:30.9519213Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-08-26T20:12:30.9522989Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-08-26T20:12:30.9526608Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9529546Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-08-26T20:12:30.9532775Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-08-26T20:12:30.9536190Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-08-26T20:12:30.9539712Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-08-26T20:12:30.9543181Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9546082Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-08-26T20:12:30.9549291Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-08-26T20:12:30.9552613Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9555533Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-08-26T20:12:30.9558913Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-08-26T20:12:30.9562443Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-08-26T20:12:30.9566070Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9569208Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-08-26T20:12:30.9572465Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-08-26T20:12:30.9575698Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-08-26T20:12:30.9579153Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9581914Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-08-26T20:12:30.9585169Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-08-26T20:12:30.9588602Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-08-26T20:12:30.9592269Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-08-26T20:12:30.9595756Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9598831Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-08-26T20:12:30.9602073Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-08-26T20:12:30.9605673Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9608796Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-08-26T20:12:30.9612155Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-08-26T20:12:30.9615676Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-08-26T20:12:30.9619148Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9622234Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-08-26T20:12:30.9625519Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-08-26T20:12:30.9629053Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-08-26T20:12:30.9632820Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-08-26T20:12:30.9636213Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9639264Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-08-26T20:12:30.9642485Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-08-26T20:12:30.9646154Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9649101Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-08-26T20:12:30.9652439Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-08-26T20:12:30.9656049Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-08-26T20:12:30.9659503Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9662655Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-08-26T20:12:30.9665950Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-08-26T20:12:30.9669498Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-08-26T20:12:30.9673181Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-08-26T20:12:30.9676673Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9679784Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-08-26T20:12:30.9683079Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-08-26T20:12:30.9687333Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9690572Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-08-26T20:12:30.9693759Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-08-26T20:12:30.9697187Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-08-26T20:12:30.9701020Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9703622Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-08-26T20:12:30.9707028Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-08-26T20:12:30.9710472Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-08-26T20:12:30.9714140Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9717116Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-08-26T20:12:30.9720565Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-08-26T20:12:30.9724168Z adding 'torch/include/ATen/ops/fill.h' 2025-08-26T20:12:30.9727379Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9730739Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-08-26T20:12:30.9733569Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-08-26T20:12:30.9736599Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-08-26T20:12:30.9739748Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9742697Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-08-26T20:12:30.9745811Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-08-26T20:12:30.9749060Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-08-26T20:12:30.9752592Z adding 'torch/include/ATen/ops/fill_native.h' 2025-08-26T20:12:30.9755674Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-08-26T20:12:30.9758984Z adding 'torch/include/ATen/ops/fix.h' 2025-08-26T20:12:30.9762215Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9767134Z adding 'torch/include/ATen/ops/fix_native.h' 2025-08-26T20:12:30.9772844Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-08-26T20:12:30.9776298Z adding 'torch/include/ATen/ops/flatten.h' 2025-08-26T20:12:30.9779603Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9782729Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-08-26T20:12:30.9785979Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9789005Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-08-26T20:12:30.9792647Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-08-26T20:12:30.9795279Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-08-26T20:12:30.9798740Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-08-26T20:12:30.9801821Z adding 'torch/include/ATen/ops/flip.h' 2025-08-26T20:12:30.9805231Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9808364Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-08-26T20:12:30.9811550Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-08-26T20:12:30.9814527Z adding 'torch/include/ATen/ops/flip_native.h' 2025-08-26T20:12:30.9817966Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-08-26T20:12:30.9821185Z adding 'torch/include/ATen/ops/fliplr.h' 2025-08-26T20:12:30.9824391Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9827313Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-08-26T20:12:30.9830438Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-08-26T20:12:30.9833660Z adding 'torch/include/ATen/ops/flipud.h' 2025-08-26T20:12:30.9836902Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9839905Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-08-26T20:12:30.9843233Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-08-26T20:12:30.9846798Z adding 'torch/include/ATen/ops/float_power.h' 2025-08-26T20:12:30.9850328Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:30.9853327Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-08-26T20:12:30.9856948Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-08-26T20:12:30.9860160Z adding 'torch/include/ATen/ops/floor.h' 2025-08-26T20:12:30.9863684Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.9866921Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-08-26T20:12:30.9869817Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-08-26T20:12:30.9873316Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-08-26T20:12:30.9876453Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9879552Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-08-26T20:12:30.9882672Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-08-26T20:12:30.9885989Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-08-26T20:12:30.9889024Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-08-26T20:12:30.9892583Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-08-26T20:12:30.9895691Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-08-26T20:12:30.9898765Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-08-26T20:12:30.9901970Z adding 'torch/include/ATen/ops/floor_native.h' 2025-08-26T20:12:30.9905147Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-08-26T20:12:30.9908250Z adding 'torch/include/ATen/ops/fmax.h' 2025-08-26T20:12:30.9911569Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.9914447Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-08-26T20:12:30.9917716Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-08-26T20:12:30.9920714Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-08-26T20:12:30.9923829Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-08-26T20:12:30.9926906Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-08-26T20:12:30.9930130Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-08-26T20:12:30.9933149Z adding 'torch/include/ATen/ops/fmin.h' 2025-08-26T20:12:30.9936502Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.9939443Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-08-26T20:12:30.9942481Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-08-26T20:12:30.9945429Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-08-26T20:12:30.9948734Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-08-26T20:12:30.9951663Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-08-26T20:12:30.9954770Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-08-26T20:12:30.9957905Z adding 'torch/include/ATen/ops/fmod.h' 2025-08-26T20:12:30.9961180Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:30.9964350Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.9967370Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-08-26T20:12:30.9970425Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-08-26T20:12:30.9973374Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-08-26T20:12:30.9976482Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-08-26T20:12:30.9979500Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-08-26T20:12:30.9982859Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-08-26T20:12:30.9986219Z adding 'torch/include/ATen/ops/frac.h' 2025-08-26T20:12:30.9989582Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:30.9992457Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-08-26T20:12:30.9995496Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-08-26T20:12:30.9998477Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-08-26T20:12:31.0001525Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-08-26T20:12:31.0004688Z adding 'torch/include/ATen/ops/frac_native.h' 2025-08-26T20:12:31.0008007Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-08-26T20:12:31.0011243Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-08-26T20:12:31.0014508Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-08-26T20:12:31.0017939Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0020890Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-08-26T20:12:31.0024021Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-08-26T20:12:31.0027002Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-08-26T20:12:31.0030136Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-08-26T20:12:31.0033180Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-08-26T20:12:31.0036453Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-08-26T20:12:31.0039809Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0042800Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-08-26T20:12:31.0046009Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-08-26T20:12:31.0049019Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-08-26T20:12:31.0052177Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-08-26T20:12:31.0055187Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-08-26T20:12:31.0058481Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-08-26T20:12:31.0061831Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-08-26T20:12:31.0065034Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-08-26T20:12:31.0068256Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-08-26T20:12:31.0071444Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-08-26T20:12:31.0074398Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-08-26T20:12:31.0077617Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-08-26T20:12:31.0080975Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0083954Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-08-26T20:12:31.0087260Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-08-26T20:12:31.0091122Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-08-26T20:12:31.0094584Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-08-26T20:12:31.0097763Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-08-26T20:12:31.0112229Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-08-26T20:12:31.0112462Z adding 'torch/include/ATen/ops/frexp.h' 2025-08-26T20:12:31.0112724Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0112880Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-08-26T20:12:31.0113150Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-08-26T20:12:31.0116217Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-08-26T20:12:31.0119250Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-08-26T20:12:31.0122409Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-08-26T20:12:31.0125733Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0128647Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-08-26T20:12:31.0131796Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-08-26T20:12:31.0135383Z adding 'torch/include/ATen/ops/from_blob.h' 2025-08-26T20:12:31.0138712Z adding 'torch/include/ATen/ops/from_file.h' 2025-08-26T20:12:31.0142009Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0145057Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-08-26T20:12:31.0148073Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-08-26T20:12:31.0151325Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-08-26T20:12:31.0154986Z adding 'torch/include/ATen/ops/full.h' 2025-08-26T20:12:31.0158494Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0161702Z adding 'torch/include/ATen/ops/full_like.h' 2025-08-26T20:12:31.0165070Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0168150Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-08-26T20:12:31.0171444Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-08-26T20:12:31.0174536Z adding 'torch/include/ATen/ops/full_native.h' 2025-08-26T20:12:31.0177940Z adding 'torch/include/ATen/ops/full_ops.h' 2025-08-26T20:12:31.0181286Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-08-26T20:12:31.0184648Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0187595Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-08-26T20:12:31.0190822Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-08-26T20:12:31.0193923Z adding 'torch/include/ATen/ops/gather.h' 2025-08-26T20:12:31.0197246Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-08-26T20:12:31.0200490Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0203324Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-08-26T20:12:31.0206727Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-08-26T20:12:31.0217108Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0217373Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0220854Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-08-26T20:12:31.0223502Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-08-26T20:12:31.0226655Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-08-26T20:12:31.0229650Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-08-26T20:12:31.0232585Z adding 'torch/include/ATen/ops/gather_native.h' 2025-08-26T20:12:31.0235906Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-08-26T20:12:31.0239167Z adding 'torch/include/ATen/ops/gcd.h' 2025-08-26T20:12:31.0242393Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0245383Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-08-26T20:12:31.0248766Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-08-26T20:12:31.0251768Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-08-26T20:12:31.0255272Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-08-26T20:12:31.0258278Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-08-26T20:12:31.0261481Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-08-26T20:12:31.0264728Z adding 'torch/include/ATen/ops/ge.h' 2025-08-26T20:12:31.0268082Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0271316Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-08-26T20:12:31.0274329Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-08-26T20:12:31.0277189Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-08-26T20:12:31.0280306Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-08-26T20:12:31.0283384Z adding 'torch/include/ATen/ops/ge_native.h' 2025-08-26T20:12:31.0286882Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-08-26T20:12:31.0290389Z adding 'torch/include/ATen/ops/gelu.h' 2025-08-26T20:12:31.0293769Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-08-26T20:12:31.0297120Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0299913Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-08-26T20:12:31.0302999Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-08-26T20:12:31.0306017Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-08-26T20:12:31.0309058Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-08-26T20:12:31.0312092Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-08-26T20:12:31.0315593Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-08-26T20:12:31.0319314Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0322553Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-08-26T20:12:31.0325601Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-08-26T20:12:31.0328640Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-08-26T20:12:31.0331766Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-08-26T20:12:31.0334828Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-08-26T20:12:31.0338097Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-08-26T20:12:31.0341421Z adding 'torch/include/ATen/ops/geometric.h' 2025-08-26T20:12:31.0344687Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0347505Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-08-26T20:12:31.0350573Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-08-26T20:12:31.0353587Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-08-26T20:12:31.0356578Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-08-26T20:12:31.0360107Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-08-26T20:12:31.0363228Z adding 'torch/include/ATen/ops/geqrf.h' 2025-08-26T20:12:31.0366565Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-08-26T20:12:31.0370165Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-08-26T20:12:31.0373321Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-08-26T20:12:31.0376864Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-08-26T20:12:31.0379592Z adding 'torch/include/ATen/ops/ger.h' 2025-08-26T20:12:31.0382798Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0385692Z adding 'torch/include/ATen/ops/ger_native.h' 2025-08-26T20:12:31.0389040Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-08-26T20:12:31.0392029Z adding 'torch/include/ATen/ops/glu.h' 2025-08-26T20:12:31.0395058Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-08-26T20:12:31.0398265Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-08-26T20:12:31.0401281Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-08-26T20:12:31.0404362Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-08-26T20:12:31.0407781Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0410858Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-08-26T20:12:31.0413949Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-08-26T20:12:31.0416865Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-08-26T20:12:31.0420063Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-08-26T20:12:31.0423839Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-08-26T20:12:31.0428464Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-08-26T20:12:31.0433510Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0438405Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-08-26T20:12:31.0442989Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-08-26T20:12:31.0447807Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-08-26T20:12:31.0452818Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0457439Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-08-26T20:12:31.0462104Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-08-26T20:12:31.0466789Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-08-26T20:12:31.0471730Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-08-26T20:12:31.0476369Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-08-26T20:12:31.0481209Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-08-26T20:12:31.0485357Z adding 'torch/include/ATen/ops/glu_native.h' 2025-08-26T20:12:31.0488788Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-08-26T20:12:31.0492923Z adding 'torch/include/ATen/ops/gradient.h' 2025-08-26T20:12:31.0496649Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0500067Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-08-26T20:12:31.0504334Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-08-26T20:12:31.0507771Z adding 'torch/include/ATen/ops/greater.h' 2025-08-26T20:12:31.0511229Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0514611Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-08-26T20:12:31.0518331Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0521262Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-08-26T20:12:31.0524664Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-08-26T20:12:31.0527921Z adding 'torch/include/ATen/ops/greater_native.h' 2025-08-26T20:12:31.0531826Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-08-26T20:12:31.0535548Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-08-26T20:12:31.0538639Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-08-26T20:12:31.0541789Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-08-26T20:12:31.0545161Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0548149Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-08-26T20:12:31.0551205Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-08-26T20:12:31.0554567Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-08-26T20:12:31.0557505Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-08-26T20:12:31.0560789Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0564339Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-08-26T20:12:31.0567602Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-08-26T20:12:31.0570692Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-08-26T20:12:31.0573912Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-08-26T20:12:31.0577091Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-08-26T20:12:31.0580483Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-08-26T20:12:31.0583877Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0586866Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-08-26T20:12:31.0590127Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-08-26T20:12:31.0593140Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-08-26T20:12:31.0596457Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-08-26T20:12:31.0599783Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0602802Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-08-26T20:12:31.0605821Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-08-26T20:12:31.0608770Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-08-26T20:12:31.0611944Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-08-26T20:12:31.0615190Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0618237Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-08-26T20:12:31.0622008Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-08-26T20:12:31.0625029Z adding 'torch/include/ATen/ops/group_norm.h' 2025-08-26T20:12:31.0628328Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0631235Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-08-26T20:12:31.0634359Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-08-26T20:12:31.0637505Z adding 'torch/include/ATen/ops/gru.h' 2025-08-26T20:12:31.0640702Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-08-26T20:12:31.0643965Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0646809Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-08-26T20:12:31.0649975Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-08-26T20:12:31.0653248Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0656144Z adding 'torch/include/ATen/ops/gru_native.h' 2025-08-26T20:12:31.0659424Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-08-26T20:12:31.0662686Z adding 'torch/include/ATen/ops/gt.h' 2025-08-26T20:12:31.0666062Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0668849Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-08-26T20:12:31.0671912Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-08-26T20:12:31.0674877Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-08-26T20:12:31.0678034Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-08-26T20:12:31.0681080Z adding 'torch/include/ATen/ops/gt_native.h' 2025-08-26T20:12:31.0684490Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-08-26T20:12:31.0688274Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-08-26T20:12:31.0691840Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0694950Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-08-26T20:12:31.0698980Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-08-26T20:12:31.0702150Z adding 'torch/include/ATen/ops/hann_window.h' 2025-08-26T20:12:31.0705549Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0708470Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-08-26T20:12:31.0711780Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-08-26T20:12:31.0714974Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-08-26T20:12:31.0718172Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-08-26T20:12:31.0722047Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0725038Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-08-26T20:12:31.0728963Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-08-26T20:12:31.0732115Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-08-26T20:12:31.0735662Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-08-26T20:12:31.0739151Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-08-26T20:12:31.0742486Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-08-26T20:12:31.0746372Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0749410Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-08-26T20:12:31.0753407Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-08-26T20:12:31.0756260Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-08-26T20:12:31.0760013Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-08-26T20:12:31.0763301Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-08-26T20:12:31.0766886Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-08-26T20:12:31.0770533Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-08-26T20:12:31.0773779Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-08-26T20:12:31.0777779Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0780764Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-08-26T20:12:31.0784540Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-08-26T20:12:31.0787769Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-08-26T20:12:31.0791283Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-08-26T20:12:31.0794741Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-08-26T20:12:31.0798044Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-08-26T20:12:31.0802020Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0805026Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-08-26T20:12:31.0808799Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-08-26T20:12:31.0811843Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-08-26T20:12:31.0815580Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-08-26T20:12:31.0819001Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-08-26T20:12:31.0822450Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-08-26T20:12:31.0826150Z adding 'torch/include/ATen/ops/hardswish.h' 2025-08-26T20:12:31.0829392Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-08-26T20:12:31.0833386Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.0836496Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-08-26T20:12:31.0840196Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-08-26T20:12:31.0843559Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-08-26T20:12:31.0847139Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-08-26T20:12:31.0850829Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-08-26T20:12:31.0854073Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-08-26T20:12:31.0857676Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-08-26T20:12:31.0860698Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-08-26T20:12:31.0864538Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-08-26T20:12:31.0868015Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-08-26T20:12:31.0871804Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-08-26T20:12:31.0875403Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-08-26T20:12:31.0878503Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-08-26T20:12:31.0882047Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-08-26T20:12:31.0885391Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-08-26T20:12:31.0889263Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-08-26T20:12:31.0892830Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-08-26T20:12:31.0896138Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-08-26T20:12:31.0899674Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-08-26T20:12:31.0903050Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-08-26T20:12:31.0906769Z adding 'torch/include/ATen/ops/hash_tensor.h' 2025-08-26T20:12:31.0910177Z adding 'torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0914775Z adding 'torch/include/ATen/ops/hash_tensor_cpu_dispatch.h' 2025-08-26T20:12:31.0919865Z adding 'torch/include/ATen/ops/hash_tensor_cuda_dispatch.h' 2025-08-26T20:12:31.0924353Z adding 'torch/include/ATen/ops/hash_tensor_meta.h' 2025-08-26T20:12:31.0929196Z adding 'torch/include/ATen/ops/hash_tensor_meta_dispatch.h' 2025-08-26T20:12:31.0933787Z adding 'torch/include/ATen/ops/hash_tensor_native.h' 2025-08-26T20:12:31.0937375Z adding 'torch/include/ATen/ops/hash_tensor_ops.h' 2025-08-26T20:12:31.0941180Z adding 'torch/include/ATen/ops/heaviside.h' 2025-08-26T20:12:31.0944796Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.0948373Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-08-26T20:12:31.0951524Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-08-26T20:12:31.0955263Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-08-26T20:12:31.0958434Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-08-26T20:12:31.0962273Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-08-26T20:12:31.0965573Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-08-26T20:12:31.0968789Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-08-26T20:12:31.0972785Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.0975785Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-08-26T20:12:31.0978972Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-08-26T20:12:31.0982031Z adding 'torch/include/ATen/ops/histc.h' 2025-08-26T20:12:31.0985171Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-08-26T20:12:31.0988879Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-08-26T20:12:31.0992081Z adding 'torch/include/ATen/ops/histc_native.h' 2025-08-26T20:12:31.0995435Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-08-26T20:12:31.0998736Z adding 'torch/include/ATen/ops/histogram.h' 2025-08-26T20:12:31.1001966Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-08-26T20:12:31.1005034Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-08-26T20:12:31.1008603Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-08-26T20:12:31.1011999Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-08-26T20:12:31.1015327Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1018283Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-08-26T20:12:31.1022396Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-08-26T20:12:31.1025666Z adding 'torch/include/ATen/ops/hsplit.h' 2025-08-26T20:12:31.1028890Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1031766Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-08-26T20:12:31.1034902Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-08-26T20:12:31.1038236Z adding 'torch/include/ATen/ops/hspmm.h' 2025-08-26T20:12:31.1041139Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-08-26T20:12:31.1044205Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-08-26T20:12:31.1047333Z adding 'torch/include/ATen/ops/hstack.h' 2025-08-26T20:12:31.1050608Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1053422Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-08-26T20:12:31.1056541Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-08-26T20:12:31.1059751Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-08-26T20:12:31.1062955Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-08-26T20:12:31.1066387Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1069734Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-08-26T20:12:31.1073351Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-08-26T20:12:31.1076477Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-08-26T20:12:31.1080283Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-08-26T20:12:31.1083523Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-08-26T20:12:31.1087409Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-08-26T20:12:31.1090777Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-08-26T20:12:31.1094257Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-08-26T20:12:31.1097885Z adding 'torch/include/ATen/ops/hypot.h' 2025-08-26T20:12:31.1101300Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1104847Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-08-26T20:12:31.1108047Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-08-26T20:12:31.1111754Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-08-26T20:12:31.1115005Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-08-26T20:12:31.1118506Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-08-26T20:12:31.1122338Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-08-26T20:12:31.1125607Z adding 'torch/include/ATen/ops/i0.h' 2025-08-26T20:12:31.1129620Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1132679Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-08-26T20:12:31.1136325Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-08-26T20:12:31.1139451Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-08-26T20:12:31.1143239Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-08-26T20:12:31.1146724Z adding 'torch/include/ATen/ops/i0_native.h' 2025-08-26T20:12:31.1150029Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-08-26T20:12:31.1153699Z adding 'torch/include/ATen/ops/igamma.h' 2025-08-26T20:12:31.1157195Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1160840Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-08-26T20:12:31.1164093Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-08-26T20:12:31.1167704Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-08-26T20:12:31.1171262Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-08-26T20:12:31.1174471Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-08-26T20:12:31.1178178Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-08-26T20:12:31.1181357Z adding 'torch/include/ATen/ops/igammac.h' 2025-08-26T20:12:31.1185318Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1188349Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-08-26T20:12:31.1192067Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-08-26T20:12:31.1195590Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-08-26T20:12:31.1199032Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-08-26T20:12:31.1202458Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-08-26T20:12:31.1205963Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-08-26T20:12:31.1209769Z adding 'torch/include/ATen/ops/im2col.h' 2025-08-26T20:12:31.1213106Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-08-26T20:12:31.1216896Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-08-26T20:12:31.1220343Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-08-26T20:12:31.1223767Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-08-26T20:12:31.1228095Z adding 'torch/include/ATen/ops/imag.h' 2025-08-26T20:12:31.1231428Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1234995Z adding 'torch/include/ATen/ops/imag_native.h' 2025-08-26T20:12:31.1238366Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-08-26T20:12:31.1241859Z adding 'torch/include/ATen/ops/index.h' 2025-08-26T20:12:31.1245662Z adding 'torch/include/ATen/ops/index_add.h' 2025-08-26T20:12:31.1249192Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1252838Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1255951Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-08-26T20:12:31.1259901Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-08-26T20:12:31.1263432Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-08-26T20:12:31.1266799Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-08-26T20:12:31.1270412Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-08-26T20:12:31.1273876Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-08-26T20:12:31.1277981Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1281102Z adding 'torch/include/ATen/ops/index_copy.h' 2025-08-26T20:12:31.1285141Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1288853Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1291909Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-08-26T20:12:31.1295610Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-08-26T20:12:31.1298784Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-08-26T20:12:31.1302642Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-08-26T20:12:31.1306074Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-08-26T20:12:31.1309845Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-08-26T20:12:31.1313493Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-08-26T20:12:31.1316675Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-08-26T20:12:31.1320529Z adding 'torch/include/ATen/ops/index_fill.h' 2025-08-26T20:12:31.1324036Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1328151Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1331774Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-08-26T20:12:31.1334854Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-08-26T20:12:31.1338452Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-08-26T20:12:31.1341603Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-08-26T20:12:31.1346019Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-08-26T20:12:31.1349970Z adding 'torch/include/ATen/ops/index_meta.h' 2025-08-26T20:12:31.1353305Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-08-26T20:12:31.1356904Z adding 'torch/include/ATen/ops/index_native.h' 2025-08-26T20:12:31.1360245Z adding 'torch/include/ATen/ops/index_ops.h' 2025-08-26T20:12:31.1364086Z adding 'torch/include/ATen/ops/index_put.h' 2025-08-26T20:12:31.1367892Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1371118Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-08-26T20:12:31.1374990Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-08-26T20:12:31.1378297Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-08-26T20:12:31.1382457Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1385671Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-08-26T20:12:31.1389366Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-08-26T20:12:31.1393049Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-08-26T20:12:31.1396485Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-08-26T20:12:31.1400053Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-08-26T20:12:31.1403352Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-08-26T20:12:31.1407429Z adding 'torch/include/ATen/ops/index_select.h' 2025-08-26T20:12:31.1411125Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-08-26T20:12:31.1414749Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1418595Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-08-26T20:12:31.1421707Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-08-26T20:12:31.1425478Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1428562Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-08-26T20:12:31.1432428Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-08-26T20:12:31.1435570Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-08-26T20:12:31.1439111Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-08-26T20:12:31.1442535Z adding 'torch/include/ATen/ops/indices.h' 2025-08-26T20:12:31.1446010Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1448974Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-08-26T20:12:31.1452205Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1455359Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1458465Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-08-26T20:12:31.1462101Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-08-26T20:12:31.1465101Z adding 'torch/include/ATen/ops/indices_native.h' 2025-08-26T20:12:31.1468181Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-08-26T20:12:31.1471303Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-08-26T20:12:31.1474549Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1477368Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-08-26T20:12:31.1480442Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-08-26T20:12:31.1483652Z adding 'torch/include/ATen/ops/inner.h' 2025-08-26T20:12:31.1486783Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1489893Z adding 'torch/include/ATen/ops/inner_native.h' 2025-08-26T20:12:31.1493584Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-08-26T20:12:31.1496732Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-08-26T20:12:31.1499998Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1503047Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-08-26T20:12:31.1506150Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-08-26T20:12:31.1509090Z adding 'torch/include/ATen/ops/int_repr.h' 2025-08-26T20:12:31.1512397Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1515185Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-08-26T20:12:31.1518307Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-08-26T20:12:31.1521666Z adding 'torch/include/ATen/ops/inverse.h' 2025-08-26T20:12:31.1524924Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1527709Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-08-26T20:12:31.1530879Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-08-26T20:12:31.1533738Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-08-26T20:12:31.1536904Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1539756Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-08-26T20:12:31.1542921Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-08-26T20:12:31.1546164Z adding 'torch/include/ATen/ops/is_complex.h' 2025-08-26T20:12:31.1549999Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1552825Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-08-26T20:12:31.1555863Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-08-26T20:12:31.1558852Z adding 'torch/include/ATen/ops/is_conj.h' 2025-08-26T20:12:31.1561985Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1565059Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-08-26T20:12:31.1568431Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-08-26T20:12:31.1571454Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-08-26T20:12:31.1574678Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1577509Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-08-26T20:12:31.1580540Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-08-26T20:12:31.1583537Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-08-26T20:12:31.1586738Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1589560Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-08-26T20:12:31.1592604Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-08-26T20:12:31.1595625Z adding 'torch/include/ATen/ops/is_inference.h' 2025-08-26T20:12:31.1598818Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1601678Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-08-26T20:12:31.1604671Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-08-26T20:12:31.1607734Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-08-26T20:12:31.1610896Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1613690Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-08-26T20:12:31.1616716Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-08-26T20:12:31.1619711Z adding 'torch/include/ATen/ops/is_neg.h' 2025-08-26T20:12:31.1622800Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1625641Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-08-26T20:12:31.1628696Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-08-26T20:12:31.1631654Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-08-26T20:12:31.1634809Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1637603Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-08-26T20:12:31.1640647Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-08-26T20:12:31.1643557Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-08-26T20:12:31.1647157Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1649849Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-08-26T20:12:31.1652839Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-08-26T20:12:31.1655941Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-08-26T20:12:31.1659076Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1661889Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-08-26T20:12:31.1664917Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-08-26T20:12:31.1667833Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-08-26T20:12:31.1671004Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-08-26T20:12:31.1674091Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-08-26T20:12:31.1676938Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-08-26T20:12:31.1680010Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-08-26T20:12:31.1683015Z adding 'torch/include/ATen/ops/is_signed.h' 2025-08-26T20:12:31.1686309Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1689124Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-08-26T20:12:31.1692328Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-08-26T20:12:31.1695321Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-08-26T20:12:31.1698359Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1701365Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-08-26T20:12:31.1704407Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-08-26T20:12:31.1707492Z adding 'torch/include/ATen/ops/isclose.h' 2025-08-26T20:12:31.1710765Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1713455Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-08-26T20:12:31.1716501Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-08-26T20:12:31.1719454Z adding 'torch/include/ATen/ops/isfinite.h' 2025-08-26T20:12:31.1722615Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1725967Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-08-26T20:12:31.1729192Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-08-26T20:12:31.1732500Z adding 'torch/include/ATen/ops/isin.h' 2025-08-26T20:12:31.1735875Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1738892Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-08-26T20:12:31.1742071Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-08-26T20:12:31.1745088Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-08-26T20:12:31.1748262Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-08-26T20:12:31.1751334Z adding 'torch/include/ATen/ops/isin_native.h' 2025-08-26T20:12:31.1754739Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-08-26T20:12:31.1757934Z adding 'torch/include/ATen/ops/isinf.h' 2025-08-26T20:12:31.1761164Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1763999Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-08-26T20:12:31.1767232Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-08-26T20:12:31.1770525Z adding 'torch/include/ATen/ops/isnan.h' 2025-08-26T20:12:31.1773560Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1776341Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-08-26T20:12:31.1779313Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-08-26T20:12:31.1782287Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-08-26T20:12:31.1785423Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-08-26T20:12:31.1788507Z adding 'torch/include/ATen/ops/isneginf.h' 2025-08-26T20:12:31.1791944Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1794808Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-08-26T20:12:31.1797701Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-08-26T20:12:31.1800612Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-08-26T20:12:31.1803702Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-08-26T20:12:31.1806731Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-08-26T20:12:31.1809858Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-08-26T20:12:31.1812948Z adding 'torch/include/ATen/ops/isposinf.h' 2025-08-26T20:12:31.1816214Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1819060Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-08-26T20:12:31.1822105Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-08-26T20:12:31.1824979Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-08-26T20:12:31.1829556Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-08-26T20:12:31.1834380Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-08-26T20:12:31.1839220Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-08-26T20:12:31.1843883Z adding 'torch/include/ATen/ops/isreal.h' 2025-08-26T20:12:31.1848819Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1853429Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-08-26T20:12:31.1857987Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-08-26T20:12:31.1862761Z adding 'torch/include/ATen/ops/istft.h' 2025-08-26T20:12:31.1867696Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1872347Z adding 'torch/include/ATen/ops/istft_native.h' 2025-08-26T20:12:31.1877228Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-08-26T20:12:31.1881871Z adding 'torch/include/ATen/ops/item.h' 2025-08-26T20:12:31.1885683Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1889083Z adding 'torch/include/ATen/ops/item_native.h' 2025-08-26T20:12:31.1892465Z adding 'torch/include/ATen/ops/item_ops.h' 2025-08-26T20:12:31.1896646Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-08-26T20:12:31.1900209Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1903942Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-08-26T20:12:31.1907596Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-08-26T20:12:31.1910776Z adding 'torch/include/ATen/ops/kl_div.h' 2025-08-26T20:12:31.1914814Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1917824Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-08-26T20:12:31.1920941Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-08-26T20:12:31.1923906Z adding 'torch/include/ATen/ops/kron.h' 2025-08-26T20:12:31.1927231Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1930639Z adding 'torch/include/ATen/ops/kron_native.h' 2025-08-26T20:12:31.1934019Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-08-26T20:12:31.1937851Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-08-26T20:12:31.1941326Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.1944388Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1947416Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-08-26T20:12:31.1950507Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-08-26T20:12:31.1953493Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-08-26T20:12:31.1956886Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-08-26T20:12:31.1960122Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-08-26T20:12:31.1964117Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1967099Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-08-26T20:12:31.1970212Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-08-26T20:12:31.1973413Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-08-26T20:12:31.1976679Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.1980219Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-08-26T20:12:31.1983517Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-08-26T20:12:31.1986555Z adding 'torch/include/ATen/ops/lcm.h' 2025-08-26T20:12:31.1989855Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.1993334Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-08-26T20:12:31.1996447Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-08-26T20:12:31.1999418Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-08-26T20:12:31.2002491Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-08-26T20:12:31.2005746Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-08-26T20:12:31.2009121Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-08-26T20:12:31.2012141Z adding 'torch/include/ATen/ops/ldexp.h' 2025-08-26T20:12:31.2016450Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2020956Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-08-26T20:12:31.2025955Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-08-26T20:12:31.2031123Z adding 'torch/include/ATen/ops/le.h' 2025-08-26T20:12:31.2035990Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2040612Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-08-26T20:12:31.2045453Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-08-26T20:12:31.2050145Z adding 'torch/include/ATen/ops/le_meta.h' 2025-08-26T20:12:31.2054945Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-08-26T20:12:31.2059727Z adding 'torch/include/ATen/ops/le_native.h' 2025-08-26T20:12:31.2064998Z adding 'torch/include/ATen/ops/le_ops.h' 2025-08-26T20:12:31.2069197Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-08-26T20:12:31.2072613Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-08-26T20:12:31.2076513Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2080040Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-08-26T20:12:31.2083291Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-08-26T20:12:31.2086947Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-08-26T20:12:31.2090197Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-08-26T20:12:31.2093886Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-08-26T20:12:31.2097266Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-08-26T20:12:31.2101051Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2104457Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-08-26T20:12:31.2107691Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-08-26T20:12:31.2111186Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-08-26T20:12:31.2114400Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-08-26T20:12:31.2117399Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-08-26T20:12:31.2120679Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-08-26T20:12:31.2124350Z adding 'torch/include/ATen/ops/lerp.h' 2025-08-26T20:12:31.2127872Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2130929Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-08-26T20:12:31.2134048Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-08-26T20:12:31.2137499Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-08-26T20:12:31.2140920Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-08-26T20:12:31.2143976Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-08-26T20:12:31.2147392Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-08-26T20:12:31.2150592Z adding 'torch/include/ATen/ops/less.h' 2025-08-26T20:12:31.2153922Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2156940Z adding 'torch/include/ATen/ops/less_equal.h' 2025-08-26T20:12:31.2160284Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2163388Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-08-26T20:12:31.2166685Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-08-26T20:12:31.2170178Z adding 'torch/include/ATen/ops/less_native.h' 2025-08-26T20:12:31.2173596Z adding 'torch/include/ATen/ops/less_ops.h' 2025-08-26T20:12:31.2176783Z adding 'torch/include/ATen/ops/lgamma.h' 2025-08-26T20:12:31.2180137Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2182964Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-08-26T20:12:31.2186178Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-08-26T20:12:31.2189170Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-08-26T20:12:31.2192165Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-08-26T20:12:31.2195146Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-08-26T20:12:31.2198274Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-08-26T20:12:31.2201344Z adding 'torch/include/ATen/ops/lift.h' 2025-08-26T20:12:31.2204566Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.2207555Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-08-26T20:12:31.2210899Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.2213822Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-08-26T20:12:31.2216937Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.2220189Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2222977Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-08-26T20:12:31.2226633Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-08-26T20:12:31.2229796Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-08-26T20:12:31.2232923Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-08-26T20:12:31.2235783Z adding 'torch/include/ATen/ops/lift_native.h' 2025-08-26T20:12:31.2238943Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-08-26T20:12:31.2242063Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-08-26T20:12:31.2245381Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2248463Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-08-26T20:12:31.2251845Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2254765Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-08-26T20:12:31.2257983Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-08-26T20:12:31.2260959Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-08-26T20:12:31.2263975Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-08-26T20:12:31.2266946Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-08-26T20:12:31.2270104Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-08-26T20:12:31.2273058Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-08-26T20:12:31.2276152Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-08-26T20:12:31.2279297Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-08-26T20:12:31.2282591Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2285548Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-08-26T20:12:31.2288820Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-08-26T20:12:31.2292039Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-08-26T20:12:31.2295361Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2298328Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-08-26T20:12:31.2301500Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-08-26T20:12:31.2304341Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-08-26T20:12:31.2307404Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-08-26T20:12:31.2310347Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-08-26T20:12:31.2313500Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-08-26T20:12:31.2316534Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-08-26T20:12:31.2319811Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2322543Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-08-26T20:12:31.2325891Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-08-26T20:12:31.2329359Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-08-26T20:12:31.2333185Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2336142Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-08-26T20:12:31.2339823Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-08-26T20:12:31.2343015Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-08-26T20:12:31.2346852Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-08-26T20:12:31.2350074Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-08-26T20:12:31.2353604Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-08-26T20:12:31.2357175Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-08-26T20:12:31.2360969Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-08-26T20:12:31.2364612Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2367652Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-08-26T20:12:31.2371501Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-08-26T20:12:31.2374704Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-08-26T20:12:31.2378570Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2381998Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-08-26T20:12:31.2385533Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-08-26T20:12:31.2388846Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-08-26T20:12:31.2392016Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-08-26T20:12:31.2395694Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-08-26T20:12:31.2399031Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2402603Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-08-26T20:12:31.2406199Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-08-26T20:12:31.2409785Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-08-26T20:12:31.2413456Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-08-26T20:12:31.2416600Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-08-26T20:12:31.2420609Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-08-26T20:12:31.2425525Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-08-26T20:12:31.2430253Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-08-26T20:12:31.2435158Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2439834Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-08-26T20:12:31.2444849Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2449556Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-08-26T20:12:31.2454378Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-08-26T20:12:31.2459085Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-08-26T20:12:31.2462866Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-08-26T20:12:31.2466214Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-08-26T20:12:31.2469885Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-08-26T20:12:31.2473443Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-08-26T20:12:31.2476749Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-08-26T20:12:31.2480724Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-08-26T20:12:31.2484102Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2487155Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-08-26T20:12:31.2490763Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2494254Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-08-26T20:12:31.2497374Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-08-26T20:12:31.2500408Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-08-26T20:12:31.2503503Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-08-26T20:12:31.2506548Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-08-26T20:12:31.2510614Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-08-26T20:12:31.2513745Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-08-26T20:12:31.2516897Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-08-26T20:12:31.2520116Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-08-26T20:12:31.2523437Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2526337Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-08-26T20:12:31.2529425Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-08-26T20:12:31.2532393Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-08-26T20:12:31.2535493Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-08-26T20:12:31.2538653Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-08-26T20:12:31.2542780Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-08-26T20:12:31.2545871Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-08-26T20:12:31.2549051Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.2552098Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-08-26T20:12:31.2555339Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-08-26T20:12:31.2558356Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-08-26T20:12:31.2561624Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-08-26T20:12:31.2564904Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-08-26T20:12:31.2568364Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2571120Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-08-26T20:12:31.2574155Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-08-26T20:12:31.2577974Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-08-26T20:12:31.2581300Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2584320Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-08-26T20:12:31.2587744Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2590722Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-08-26T20:12:31.2594425Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-08-26T20:12:31.2597659Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-08-26T20:12:31.2601265Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-08-26T20:12:31.2604777Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-08-26T20:12:31.2608239Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-08-26T20:12:31.2612073Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-08-26T20:12:31.2615384Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-08-26T20:12:31.2618838Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-08-26T20:12:31.2622442Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-08-26T20:12:31.2625830Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-08-26T20:12:31.2629621Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-08-26T20:12:31.2633117Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-08-26T20:12:31.2637023Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2639903Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-08-26T20:12:31.2643727Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-08-26T20:12:31.2647160Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-08-26T20:12:31.2650625Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-08-26T20:12:31.2654162Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-08-26T20:12:31.2657548Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-08-26T20:12:31.2661239Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-08-26T20:12:31.2664579Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2668153Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-08-26T20:12:31.2671548Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-08-26T20:12:31.2675045Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-08-26T20:12:31.2678902Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.2681982Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-08-26T20:12:31.2685695Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-08-26T20:12:31.2688788Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-08-26T20:12:31.2692617Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-08-26T20:12:31.2696149Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-08-26T20:12:31.2700029Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2703819Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-08-26T20:12:31.2707554Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-08-26T20:12:31.2711362Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-08-26T20:12:31.2714921Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2718189Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-08-26T20:12:31.2722240Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-08-26T20:12:31.2725940Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-08-26T20:12:31.2730137Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2733522Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-08-26T20:12:31.2737458Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-08-26T20:12:31.2741275Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-08-26T20:12:31.2744689Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2748220Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-08-26T20:12:31.2751606Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-08-26T20:12:31.2755283Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-08-26T20:12:31.2759229Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2762336Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-08-26T20:12:31.2766448Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-08-26T20:12:31.2770533Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-08-26T20:12:31.2774232Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.2777870Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2781147Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2784811Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-08-26T20:12:31.2788851Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-08-26T20:12:31.2793054Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-08-26T20:12:31.2797118Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2800075Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-08-26T20:12:31.2803859Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-08-26T20:12:31.2807393Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-08-26T20:12:31.2810778Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-08-26T20:12:31.2814343Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-08-26T20:12:31.2817669Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-08-26T20:12:31.2821415Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-08-26T20:12:31.2824752Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2828339Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-08-26T20:12:31.2831941Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-08-26T20:12:31.2835316Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-08-26T20:12:31.2839119Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2842275Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-08-26T20:12:31.2846313Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2849304Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-08-26T20:12:31.2853186Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-08-26T20:12:31.2856800Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-08-26T20:12:31.2860105Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-08-26T20:12:31.2863756Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-08-26T20:12:31.2867102Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-08-26T20:12:31.2870811Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-08-26T20:12:31.2873853Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-08-26T20:12:31.2877798Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-08-26T20:12:31.2881363Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-08-26T20:12:31.2884893Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2888456Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-08-26T20:12:31.2891809Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-08-26T20:12:31.2895644Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-08-26T20:12:31.2899080Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2902526Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-08-26T20:12:31.2906182Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-08-26T20:12:31.2909414Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-08-26T20:12:31.2913258Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2916230Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-08-26T20:12:31.2920047Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-08-26T20:12:31.2923359Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-08-26T20:12:31.2927577Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2930797Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-08-26T20:12:31.2934540Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-08-26T20:12:31.2937613Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-08-26T20:12:31.2940886Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2944681Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-08-26T20:12:31.2947792Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-08-26T20:12:31.2950906Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-08-26T20:12:31.2954244Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.2957023Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-08-26T20:12:31.2960901Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-08-26T20:12:31.2964168Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-08-26T20:12:31.2967698Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.2970759Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-08-26T20:12:31.2973891Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-08-26T20:12:31.2976886Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-08-26T20:12:31.2980045Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-08-26T20:12:31.2983060Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-08-26T20:12:31.2986259Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-08-26T20:12:31.2989379Z adding 'torch/include/ATen/ops/linear.h' 2025-08-26T20:12:31.2993446Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-08-26T20:12:31.2996791Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.2999718Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-08-26T20:12:31.3002978Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-08-26T20:12:31.3006382Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3009445Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3012357Z adding 'torch/include/ATen/ops/linear_native.h' 2025-08-26T20:12:31.3015503Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-08-26T20:12:31.3019094Z adding 'torch/include/ATen/ops/linspace.h' 2025-08-26T20:12:31.3022720Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3025738Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-08-26T20:12:31.3028775Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-08-26T20:12:31.3031816Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-08-26T20:12:31.3034862Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-08-26T20:12:31.3038632Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-08-26T20:12:31.3041851Z adding 'torch/include/ATen/ops/log.h' 2025-08-26T20:12:31.3044910Z adding 'torch/include/ATen/ops/log10.h' 2025-08-26T20:12:31.3049096Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3052087Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-08-26T20:12:31.3055295Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-08-26T20:12:31.3058335Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-08-26T20:12:31.3061368Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-08-26T20:12:31.3064302Z adding 'torch/include/ATen/ops/log10_native.h' 2025-08-26T20:12:31.3067470Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-08-26T20:12:31.3070558Z adding 'torch/include/ATen/ops/log1p.h' 2025-08-26T20:12:31.3073789Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3076658Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-08-26T20:12:31.3080116Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-08-26T20:12:31.3083097Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-08-26T20:12:31.3086333Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-08-26T20:12:31.3089249Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-08-26T20:12:31.3092454Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-08-26T20:12:31.3095674Z adding 'torch/include/ATen/ops/log2.h' 2025-08-26T20:12:31.3099056Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3101996Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-08-26T20:12:31.3105580Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-08-26T20:12:31.3108053Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-08-26T20:12:31.3111044Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-08-26T20:12:31.3113992Z adding 'torch/include/ATen/ops/log2_native.h' 2025-08-26T20:12:31.3117132Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-08-26T20:12:31.3127049Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3129980Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-08-26T20:12:31.3130999Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-08-26T20:12:31.3134103Z adding 'torch/include/ATen/ops/log_meta.h' 2025-08-26T20:12:31.3137511Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-08-26T20:12:31.3140303Z adding 'torch/include/ATen/ops/log_native.h' 2025-08-26T20:12:31.3143363Z adding 'torch/include/ATen/ops/log_normal.h' 2025-08-26T20:12:31.3146727Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3149736Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-08-26T20:12:31.3152763Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-08-26T20:12:31.3155819Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-08-26T20:12:31.3158777Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-08-26T20:12:31.3161987Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-08-26T20:12:31.3165226Z adding 'torch/include/ATen/ops/log_ops.h' 2025-08-26T20:12:31.3168731Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-08-26T20:12:31.3171634Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-08-26T20:12:31.3174781Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-08-26T20:12:31.3177864Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-08-26T20:12:31.3180848Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-08-26T20:12:31.3184002Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-08-26T20:12:31.3187187Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3190195Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-08-26T20:12:31.3193295Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-08-26T20:12:31.3196321Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-08-26T20:12:31.3199312Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-08-26T20:12:31.3202493Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-08-26T20:12:31.3205530Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-08-26T20:12:31.3208698Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-08-26T20:12:31.3211834Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-08-26T20:12:31.3215045Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3218080Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3221009Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-08-26T20:12:31.3224255Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-08-26T20:12:31.3227371Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-08-26T20:12:31.3230461Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-08-26T20:12:31.3233790Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3237323Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-08-26T20:12:31.3240389Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-08-26T20:12:31.3243347Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-08-26T20:12:31.3246569Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-08-26T20:12:31.3249565Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-08-26T20:12:31.3252756Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-08-26T20:12:31.3256633Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3258966Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-08-26T20:12:31.3261996Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-08-26T20:12:31.3264917Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-08-26T20:12:31.3267981Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-08-26T20:12:31.3270941Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-08-26T20:12:31.3274084Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-08-26T20:12:31.3277205Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-08-26T20:12:31.3280465Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3283588Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3286547Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-08-26T20:12:31.3289919Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-08-26T20:12:31.3292981Z adding 'torch/include/ATen/ops/logdet.h' 2025-08-26T20:12:31.3296173Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3299029Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-08-26T20:12:31.3302093Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-08-26T20:12:31.3305177Z adding 'torch/include/ATen/ops/logical_and.h' 2025-08-26T20:12:31.3308370Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3311301Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-08-26T20:12:31.3314369Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-08-26T20:12:31.3317416Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-08-26T20:12:31.3320627Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-08-26T20:12:31.3323733Z adding 'torch/include/ATen/ops/logical_not.h' 2025-08-26T20:12:31.3327056Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3330007Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-08-26T20:12:31.3333312Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-08-26T20:12:31.3336587Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-08-26T20:12:31.3340153Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-08-26T20:12:31.3343875Z adding 'torch/include/ATen/ops/logical_or.h' 2025-08-26T20:12:31.3347174Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3350784Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-08-26T20:12:31.3353944Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-08-26T20:12:31.3357611Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-08-26T20:12:31.3361048Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-08-26T20:12:31.3364658Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-08-26T20:12:31.3368604Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3371662Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-08-26T20:12:31.3375285Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-08-26T20:12:31.3378351Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-08-26T20:12:31.3382259Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-08-26T20:12:31.3385644Z adding 'torch/include/ATen/ops/logit.h' 2025-08-26T20:12:31.3389349Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-08-26T20:12:31.3393153Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3396198Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-08-26T20:12:31.3399855Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-08-26T20:12:31.3402962Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-08-26T20:12:31.3406936Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-08-26T20:12:31.3410095Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-08-26T20:12:31.3413849Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-08-26T20:12:31.3417537Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-08-26T20:12:31.3420771Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-08-26T20:12:31.3424731Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-08-26T20:12:31.3429501Z adding 'torch/include/ATen/ops/logit_native.h' 2025-08-26T20:12:31.3434343Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-08-26T20:12:31.3440041Z adding 'torch/include/ATen/ops/logspace.h' 2025-08-26T20:12:31.3444275Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3448160Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-08-26T20:12:31.3452966Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-08-26T20:12:31.3457668Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-08-26T20:12:31.3462461Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-08-26T20:12:31.3468185Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-08-26T20:12:31.3471651Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-08-26T20:12:31.3475731Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3478980Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3482863Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3486148Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-08-26T20:12:31.3490061Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-08-26T20:12:31.3493318Z adding 'torch/include/ATen/ops/lshift.h' 2025-08-26T20:12:31.3496620Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3500366Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-08-26T20:12:31.3503822Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-08-26T20:12:31.3506923Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-08-26T20:12:31.3509913Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-08-26T20:12:31.3513298Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-08-26T20:12:31.3517341Z adding 'torch/include/ATen/ops/lstm.h' 2025-08-26T20:12:31.3520548Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-08-26T20:12:31.3523825Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3527128Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-08-26T20:12:31.3530004Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-08-26T20:12:31.3533201Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3536427Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-08-26T20:12:31.3539849Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3542828Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-08-26T20:12:31.3546753Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-08-26T20:12:31.3550209Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-08-26T20:12:31.3553556Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-08-26T20:12:31.3556753Z adding 'torch/include/ATen/ops/lt.h' 2025-08-26T20:12:31.3560135Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3562972Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-08-26T20:12:31.3566872Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-08-26T20:12:31.3570007Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-08-26T20:12:31.3573136Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-08-26T20:12:31.3576142Z adding 'torch/include/ATen/ops/lt_native.h' 2025-08-26T20:12:31.3579503Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-08-26T20:12:31.3583077Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-08-26T20:12:31.3586401Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3589273Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-08-26T20:12:31.3592774Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-08-26T20:12:31.3596012Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-08-26T20:12:31.3599309Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3602279Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-08-26T20:12:31.3605434Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-08-26T20:12:31.3608494Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-08-26T20:12:31.3611618Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-08-26T20:12:31.3614601Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-08-26T20:12:31.3617888Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-08-26T20:12:31.3620846Z adding 'torch/include/ATen/ops/mH.h' 2025-08-26T20:12:31.3623982Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3626792Z adding 'torch/include/ATen/ops/mH_native.h' 2025-08-26T20:12:31.3629810Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-08-26T20:12:31.3632712Z adding 'torch/include/ATen/ops/mT.h' 2025-08-26T20:12:31.3635859Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3638700Z adding 'torch/include/ATen/ops/mT_native.h' 2025-08-26T20:12:31.3641712Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-08-26T20:12:31.3644811Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-08-26T20:12:31.3648212Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3651016Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-08-26T20:12:31.3654103Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-08-26T20:12:31.3657240Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-08-26T20:12:31.3660567Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3663510Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-08-26T20:12:31.3666521Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-08-26T20:12:31.3669539Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-08-26T20:12:31.3672614Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-08-26T20:12:31.3676049Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-08-26T20:12:31.3679266Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-08-26T20:12:31.3682418Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-08-26T20:12:31.3685781Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3688613Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-08-26T20:12:31.3691951Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-08-26T20:12:31.3695188Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3698104Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-08-26T20:12:31.3701132Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-08-26T20:12:31.3704149Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-08-26T20:12:31.3707059Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-08-26T20:12:31.3710425Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-08-26T20:12:31.3713768Z adding 'torch/include/ATen/ops/masked_select.h' 2025-08-26T20:12:31.3716840Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-08-26T20:12:31.3720074Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3722951Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-08-26T20:12:31.3726212Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-08-26T20:12:31.3729221Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-08-26T20:12:31.3732273Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-08-26T20:12:31.3735241Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-08-26T20:12:31.3738373Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-08-26T20:12:31.3742475Z adding 'torch/include/ATen/ops/matmul.h' 2025-08-26T20:12:31.3745580Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-08-26T20:12:31.3749308Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3752592Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-08-26T20:12:31.3756093Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-08-26T20:12:31.3759890Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3762914Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-08-26T20:12:31.3766743Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-08-26T20:12:31.3769809Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-08-26T20:12:31.3773764Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3777146Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-08-26T20:12:31.3780470Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-08-26T20:12:31.3783960Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-08-26T20:12:31.3787149Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-08-26T20:12:31.3790922Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3793859Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-08-26T20:12:31.3797603Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-08-26T20:12:31.3800930Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3804411Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-08-26T20:12:31.3808025Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-08-26T20:12:31.3811413Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-08-26T20:12:31.3815301Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3818170Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-08-26T20:12:31.3821974Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-08-26T20:12:31.3825486Z adding 'torch/include/ATen/ops/max.h' 2025-08-26T20:12:31.3829463Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3833128Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3836307Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-08-26T20:12:31.3840052Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-08-26T20:12:31.3843243Z adding 'torch/include/ATen/ops/max_meta.h' 2025-08-26T20:12:31.3847173Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-08-26T20:12:31.3850530Z adding 'torch/include/ATen/ops/max_native.h' 2025-08-26T20:12:31.3854571Z adding 'torch/include/ATen/ops/max_ops.h' 2025-08-26T20:12:31.3858342Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-08-26T20:12:31.3861667Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3865242Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-08-26T20:12:31.3868839Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-08-26T20:12:31.3872480Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-08-26T20:12:31.3876291Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3879273Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-08-26T20:12:31.3882992Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-08-26T20:12:31.3886356Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-08-26T20:12:31.3890278Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-08-26T20:12:31.3893702Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.3897151Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-08-26T20:12:31.3900936Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-08-26T20:12:31.3904322Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3907773Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-08-26T20:12:31.3911022Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-08-26T20:12:31.3914963Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-08-26T20:12:31.3918523Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-08-26T20:12:31.3922301Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3925915Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-08-26T20:12:31.3929189Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-08-26T20:12:31.3933404Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-08-26T20:12:31.3938300Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-08-26T20:12:31.3943044Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-08-26T20:12:31.3948114Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-08-26T20:12:31.3953299Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.3956634Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-08-26T20:12:31.3960512Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-08-26T20:12:31.3963707Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-08-26T20:12:31.3967681Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-08-26T20:12:31.3970802Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-08-26T20:12:31.3974864Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-08-26T20:12:31.3978055Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-08-26T20:12:31.3981288Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.3984594Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-08-26T20:12:31.3988118Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-08-26T20:12:31.3991420Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-08-26T20:12:31.3994657Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-08-26T20:12:31.3997899Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-08-26T20:12:31.4001595Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-08-26T20:12:31.4004899Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-08-26T20:12:31.4008393Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-08-26T20:12:31.4011640Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-08-26T20:12:31.4014821Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-08-26T20:12:31.4017874Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-08-26T20:12:31.4021201Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-08-26T20:12:31.4024456Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-08-26T20:12:31.4027990Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-08-26T20:12:31.4030893Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-08-26T20:12:31.4034660Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-08-26T20:12:31.4037906Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-08-26T20:12:31.4041459Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-08-26T20:12:31.4044671Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-08-26T20:12:31.4047989Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-08-26T20:12:31.4051037Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-08-26T20:12:31.4054234Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-08-26T20:12:31.4057334Z adding 'torch/include/ATen/ops/maximum.h' 2025-08-26T20:12:31.4060625Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.4063497Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-08-26T20:12:31.4066638Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-08-26T20:12:31.4069611Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-08-26T20:12:31.4072693Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-08-26T20:12:31.4075614Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-08-26T20:12:31.4078745Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-08-26T20:12:31.4082077Z adding 'torch/include/ATen/ops/mean.h' 2025-08-26T20:12:31.4085930Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4089460Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.4092271Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4095267Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-08-26T20:12:31.4098312Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-08-26T20:12:31.4101289Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-08-26T20:12:31.4104402Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-08-26T20:12:31.4107492Z adding 'torch/include/ATen/ops/mean_native.h' 2025-08-26T20:12:31.4110977Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-08-26T20:12:31.4114413Z adding 'torch/include/ATen/ops/median.h' 2025-08-26T20:12:31.4117683Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4120791Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4123787Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-08-26T20:12:31.4127041Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-08-26T20:12:31.4130089Z adding 'torch/include/ATen/ops/median_native.h' 2025-08-26T20:12:31.4133549Z adding 'torch/include/ATen/ops/median_ops.h' 2025-08-26T20:12:31.4136720Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-08-26T20:12:31.4139895Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4142732Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-08-26T20:12:31.4145850Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-08-26T20:12:31.4149281Z adding 'torch/include/ATen/ops/min.h' 2025-08-26T20:12:31.4152694Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.4155790Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4158788Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-08-26T20:12:31.4161913Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-08-26T20:12:31.4165008Z adding 'torch/include/ATen/ops/min_meta.h' 2025-08-26T20:12:31.4168252Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-08-26T20:12:31.4171333Z adding 'torch/include/ATen/ops/min_native.h' 2025-08-26T20:12:31.4174973Z adding 'torch/include/ATen/ops/min_ops.h' 2025-08-26T20:12:31.4178105Z adding 'torch/include/ATen/ops/minimum.h' 2025-08-26T20:12:31.4181450Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.4184340Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-08-26T20:12:31.4187353Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-08-26T20:12:31.4190278Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-08-26T20:12:31.4193366Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-08-26T20:12:31.4196304Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-08-26T20:12:31.4199430Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-08-26T20:12:31.4202665Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-08-26T20:12:31.4206226Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-08-26T20:12:31.4209643Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4212708Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-08-26T20:12:31.4215714Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-08-26T20:12:31.4219104Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-08-26T20:12:31.4222427Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4225449Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-08-26T20:12:31.4228449Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-08-26T20:12:31.4231770Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-08-26T20:12:31.4235345Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-08-26T20:12:31.4238877Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-08-26T20:12:31.4242707Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-08-26T20:12:31.4256646Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-08-26T20:12:31.4257267Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-08-26T20:12:31.4257859Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4258466Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-08-26T20:12:31.4260764Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-08-26T20:12:31.4264145Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-08-26T20:12:31.4268178Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-08-26T20:12:31.4271776Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-08-26T20:12:31.4275081Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-08-26T20:12:31.4278855Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-08-26T20:12:31.4282653Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-08-26T20:12:31.4287070Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4290620Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-08-26T20:12:31.4293893Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-08-26T20:12:31.4297745Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-08-26T20:12:31.4301446Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-08-26T20:12:31.4305749Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4309444Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-08-26T20:12:31.4312621Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-08-26T20:12:31.4316494Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-08-26T20:12:31.4320041Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-08-26T20:12:31.4324349Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-08-26T20:12:31.4328578Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4331818Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-08-26T20:12:31.4335688Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-08-26T20:12:31.4340430Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-08-26T20:12:31.4344092Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4347798Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-08-26T20:12:31.4351094Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-08-26T20:12:31.4355092Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-08-26T20:12:31.4358782Z adding 'torch/include/ATen/ops/mish.h' 2025-08-26T20:12:31.4361932Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-08-26T20:12:31.4365790Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4368874Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-08-26T20:12:31.4372681Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-08-26T20:12:31.4375767Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-08-26T20:12:31.4379429Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-08-26T20:12:31.4383253Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.4386270Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-08-26T20:12:31.4389920Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-08-26T20:12:31.4393031Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-08-26T20:12:31.4396798Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-08-26T20:12:31.4399851Z adding 'torch/include/ATen/ops/mish_native.h' 2025-08-26T20:12:31.4403756Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-08-26T20:12:31.4407538Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-08-26T20:12:31.4410922Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-08-26T20:12:31.4414799Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4417923Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-08-26T20:12:31.4421738Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-08-26T20:12:31.4424845Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-08-26T20:12:31.4428689Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-08-26T20:12:31.4432910Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-08-26T20:12:31.4438476Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4443206Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-08-26T20:12:31.4448308Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-08-26T20:12:31.4453161Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-08-26T20:12:31.4457106Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-08-26T20:12:31.4460947Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4464284Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-08-26T20:12:31.4468301Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4471313Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-08-26T20:12:31.4475240Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-08-26T20:12:31.4478401Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-08-26T20:12:31.4481649Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-08-26T20:12:31.4485401Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-08-26T20:12:31.4489053Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4491962Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-08-26T20:12:31.4495222Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-08-26T20:12:31.4498441Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4501722Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-08-26T20:12:31.4505395Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-08-26T20:12:31.4508553Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-08-26T20:12:31.4511823Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-08-26T20:12:31.4515195Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4518164Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-08-26T20:12:31.4521441Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-08-26T20:12:31.4524728Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4527728Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-08-26T20:12:31.4530966Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-08-26T20:12:31.4534887Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-08-26T20:12:31.4538291Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-08-26T20:12:31.4541685Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4544625Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-08-26T20:12:31.4547850Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-08-26T20:12:31.4551129Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4554016Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-08-26T20:12:31.4557182Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-08-26T20:12:31.4561161Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-08-26T20:12:31.4564471Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4567499Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-08-26T20:12:31.4570748Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-08-26T20:12:31.4574345Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-08-26T20:12:31.4577902Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4580866Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-08-26T20:12:31.4584206Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-08-26T20:12:31.4588201Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-08-26T20:12:31.4591926Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-08-26T20:12:31.4595479Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4598616Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-08-26T20:12:31.4601782Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-08-26T20:12:31.4605507Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-08-26T20:12:31.4609015Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4612063Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-08-26T20:12:31.4615157Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-08-26T20:12:31.4618602Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-08-26T20:12:31.4621916Z adding 'torch/include/ATen/ops/mm.h' 2025-08-26T20:12:31.4625265Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.4628116Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-08-26T20:12:31.4631197Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-08-26T20:12:31.4634161Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-08-26T20:12:31.4637199Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-08-26T20:12:31.4640235Z adding 'torch/include/ATen/ops/mm_native.h' 2025-08-26T20:12:31.4643592Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-08-26T20:12:31.4646948Z adding 'torch/include/ATen/ops/mode.h' 2025-08-26T20:12:31.4650261Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4653396Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4656313Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-08-26T20:12:31.4659352Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-08-26T20:12:31.4662375Z adding 'torch/include/ATen/ops/mode_native.h' 2025-08-26T20:12:31.4665716Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-08-26T20:12:31.4668862Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-08-26T20:12:31.4672085Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4674939Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-08-26T20:12:31.4678094Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-08-26T20:12:31.4681122Z adding 'torch/include/ATen/ops/movedim.h' 2025-08-26T20:12:31.4684313Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4687860Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-08-26T20:12:31.4691151Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-08-26T20:12:31.4694887Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-08-26T20:12:31.4698493Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4701476Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-08-26T20:12:31.4704756Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-08-26T20:12:31.4708574Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-08-26T20:12:31.4712243Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4715174Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-08-26T20:12:31.4718681Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-08-26T20:12:31.4721783Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-08-26T20:12:31.4724941Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-08-26T20:12:31.4728199Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-08-26T20:12:31.4731276Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-08-26T20:12:31.4734254Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-08-26T20:12:31.4737388Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-08-26T20:12:31.4740689Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.4743616Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-08-26T20:12:31.4746616Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-08-26T20:12:31.4749573Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-08-26T20:12:31.4752614Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-08-26T20:12:31.4755591Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-08-26T20:12:31.4758738Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-08-26T20:12:31.4761771Z adding 'torch/include/ATen/ops/msort.h' 2025-08-26T20:12:31.4764998Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4767989Z adding 'torch/include/ATen/ops/msort_native.h' 2025-08-26T20:12:31.4771124Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-08-26T20:12:31.4774208Z adding 'torch/include/ATen/ops/mul.h' 2025-08-26T20:12:31.4777416Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4780541Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.4783470Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-08-26T20:12:31.4786513Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-08-26T20:12:31.4790556Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-08-26T20:12:31.4793355Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-08-26T20:12:31.4796489Z adding 'torch/include/ATen/ops/mul_native.h' 2025-08-26T20:12:31.4799880Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-08-26T20:12:31.4803174Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-08-26T20:12:31.4806552Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-08-26T20:12:31.4809822Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-08-26T20:12:31.4812992Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-08-26T20:12:31.4816022Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-08-26T20:12:31.4819283Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-08-26T20:12:31.4822503Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-08-26T20:12:31.4825722Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-08-26T20:12:31.4828814Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-08-26T20:12:31.4832074Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-08-26T20:12:31.4835230Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-08-26T20:12:31.4838400Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-08-26T20:12:31.4841621Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-08-26T20:12:31.4844737Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-08-26T20:12:31.4847837Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-08-26T20:12:31.4851043Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-08-26T20:12:31.4854280Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4857287Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-08-26T20:12:31.4860467Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-08-26T20:12:31.4863548Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-08-26T20:12:31.4866523Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-08-26T20:12:31.4869733Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-08-26T20:12:31.4872753Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-08-26T20:12:31.4875912Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-08-26T20:12:31.4879229Z adding 'torch/include/ATen/ops/multinomial.h' 2025-08-26T20:12:31.4882540Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-08-26T20:12:31.4885836Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-08-26T20:12:31.4889384Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-08-26T20:12:31.4892716Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-08-26T20:12:31.4895870Z adding 'torch/include/ATen/ops/multiply.h' 2025-08-26T20:12:31.4899178Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4902020Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-08-26T20:12:31.4905304Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-08-26T20:12:31.4908405Z adding 'torch/include/ATen/ops/mv.h' 2025-08-26T20:12:31.4911582Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4914526Z adding 'torch/include/ATen/ops/mv_native.h' 2025-08-26T20:12:31.4917601Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-08-26T20:12:31.4920688Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-08-26T20:12:31.4923894Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4926941Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-08-26T20:12:31.4929951Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-08-26T20:12:31.4932921Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-08-26T20:12:31.4936062Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-08-26T20:12:31.4939499Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-08-26T20:12:31.4942499Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4945466Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-08-26T20:12:31.4948546Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-08-26T20:12:31.4951551Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-08-26T20:12:31.4954758Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-08-26T20:12:31.4957957Z adding 'torch/include/ATen/ops/nanmean.h' 2025-08-26T20:12:31.4961482Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4964112Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-08-26T20:12:31.4967497Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-08-26T20:12:31.4970848Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-08-26T20:12:31.4974180Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.4977213Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.4980153Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-08-26T20:12:31.4983214Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-08-26T20:12:31.4986254Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-08-26T20:12:31.4990326Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-08-26T20:12:31.4995417Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-08-26T20:12:31.5000587Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5005196Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-08-26T20:12:31.5010531Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-08-26T20:12:31.5015469Z adding 'torch/include/ATen/ops/nansum.h' 2025-08-26T20:12:31.5020384Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-08-26T20:12:31.5025175Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-08-26T20:12:31.5029909Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-08-26T20:12:31.5034794Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-08-26T20:12:31.5039758Z adding 'torch/include/ATen/ops/narrow.h' 2025-08-26T20:12:31.5044769Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5049826Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-08-26T20:12:31.5054139Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.5057801Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-08-26T20:12:31.5061023Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-08-26T20:12:31.5064787Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-08-26T20:12:31.5068006Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-08-26T20:12:31.5071868Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-08-26T20:12:31.5075248Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-08-26T20:12:31.5078646Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-08-26T20:12:31.5082651Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5086159Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-08-26T20:12:31.5089768Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-08-26T20:12:31.5092888Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-08-26T20:12:31.5096305Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-08-26T20:12:31.5099563Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-08-26T20:12:31.5102846Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-08-26T20:12:31.5106025Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-08-26T20:12:31.5109291Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-08-26T20:12:31.5112456Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-08-26T20:12:31.5115693Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5118647Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-08-26T20:12:31.5128298Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-08-26T20:12:31.5131315Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-08-26T20:12:31.5134421Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-08-26T20:12:31.5137633Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-08-26T20:12:31.5140952Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5143891Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-08-26T20:12:31.5146924Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-08-26T20:12:31.5149845Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-08-26T20:12:31.5153026Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-08-26T20:12:31.5156252Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5159246Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-08-26T20:12:31.5162318Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-08-26T20:12:31.5165318Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-08-26T20:12:31.5168602Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-08-26T20:12:31.5172332Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-08-26T20:12:31.5176177Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-08-26T20:12:31.5179764Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5182869Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-08-26T20:12:31.5185989Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-08-26T20:12:31.5189088Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-08-26T20:12:31.5192476Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-08-26T20:12:31.5195902Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5199010Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-08-26T20:12:31.5202109Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-08-26T20:12:31.5205508Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-08-26T20:12:31.5208605Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-08-26T20:12:31.5212132Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-08-26T20:12:31.5215998Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-08-26T20:12:31.5219583Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5222659Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-08-26T20:12:31.5225783Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-08-26T20:12:31.5228902Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-08-26T20:12:31.5232742Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-08-26T20:12:31.5235678Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5239656Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-08-26T20:12:31.5242855Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-08-26T20:12:31.5246571Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-08-26T20:12:31.5250120Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-08-26T20:12:31.5254295Z adding 'torch/include/ATen/ops/native_norm.h' 2025-08-26T20:12:31.5257601Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5261127Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-08-26T20:12:31.5265087Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-08-26T20:12:31.5268381Z adding 'torch/include/ATen/ops/ne.h' 2025-08-26T20:12:31.5272294Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.5275342Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-08-26T20:12:31.5279413Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-08-26T20:12:31.5282869Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-08-26T20:12:31.5286363Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-08-26T20:12:31.5289944Z adding 'torch/include/ATen/ops/ne_native.h' 2025-08-26T20:12:31.5293456Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-08-26T20:12:31.5297349Z adding 'torch/include/ATen/ops/neg.h' 2025-08-26T20:12:31.5300933Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.5304366Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-08-26T20:12:31.5307857Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-08-26T20:12:31.5310976Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-08-26T20:12:31.5314654Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-08-26T20:12:31.5317779Z adding 'torch/include/ATen/ops/neg_native.h' 2025-08-26T20:12:31.5321615Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-08-26T20:12:31.5324816Z adding 'torch/include/ATen/ops/negative.h' 2025-08-26T20:12:31.5328974Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5332285Z adding 'torch/include/ATen/ops/negative_native.h' 2025-08-26T20:12:31.5335686Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-08-26T20:12:31.5339368Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-08-26T20:12:31.5342698Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5346262Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-08-26T20:12:31.5349445Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-08-26T20:12:31.5353515Z adding 'torch/include/ATen/ops/new_empty.h' 2025-08-26T20:12:31.5357534Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5360596Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-08-26T20:12:31.5364478Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-08-26T20:12:31.5368406Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-08-26T20:12:31.5372369Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5376217Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.5379239Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-08-26T20:12:31.5383181Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-08-26T20:12:31.5386658Z adding 'torch/include/ATen/ops/new_full.h' 2025-08-26T20:12:31.5390796Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5394288Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-08-26T20:12:31.5397764Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-08-26T20:12:31.5401735Z adding 'torch/include/ATen/ops/new_ones.h' 2025-08-26T20:12:31.5405675Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5408935Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-08-26T20:12:31.5412674Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-08-26T20:12:31.5416204Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-08-26T20:12:31.5420342Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5423262Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-08-26T20:12:31.5427492Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-08-26T20:12:31.5430736Z adding 'torch/include/ATen/ops/nextafter.h' 2025-08-26T20:12:31.5434375Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.5438115Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-08-26T20:12:31.5442877Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-08-26T20:12:31.5447739Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-08-26T20:12:31.5452471Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-08-26T20:12:31.5457151Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-08-26T20:12:31.5461014Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-08-26T20:12:31.5465119Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-08-26T20:12:31.5468832Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-08-26T20:12:31.5473204Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-08-26T20:12:31.5476804Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-08-26T20:12:31.5480794Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-08-26T20:12:31.5483903Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-08-26T20:12:31.5487308Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-08-26T20:12:31.5491745Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5494928Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-08-26T20:12:31.5498289Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-08-26T20:12:31.5501557Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-08-26T20:12:31.5504682Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-08-26T20:12:31.5508807Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-08-26T20:12:31.5511935Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-08-26T20:12:31.5515222Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-08-26T20:12:31.5518805Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-08-26T20:12:31.5522314Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.5525497Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-08-26T20:12:31.5528790Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-08-26T20:12:31.5531812Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-08-26T20:12:31.5534989Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-08-26T20:12:31.5538734Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-08-26T20:12:31.5542068Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-08-26T20:12:31.5545489Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5548878Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-08-26T20:12:31.5552388Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.5555379Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-08-26T20:12:31.5558584Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-08-26T20:12:31.5561881Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-08-26T20:12:31.5565175Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-08-26T20:12:31.5568286Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-08-26T20:12:31.5571585Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-08-26T20:12:31.5574622Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-08-26T20:12:31.5577792Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-08-26T20:12:31.5581066Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5584028Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-08-26T20:12:31.5587067Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-08-26T20:12:31.5590490Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-08-26T20:12:31.5593830Z adding 'torch/include/ATen/ops/nonzero.h' 2025-08-26T20:12:31.5597222Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-08-26T20:12:31.5600295Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-08-26T20:12:31.5603289Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-08-26T20:12:31.5606375Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-08-26T20:12:31.5609575Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5612426Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-08-26T20:12:31.5615483Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-08-26T20:12:31.5618593Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-08-26T20:12:31.5621893Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-08-26T20:12:31.5625128Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-08-26T20:12:31.5628249Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-08-26T20:12:31.5631297Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-08-26T20:12:31.5634492Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-08-26T20:12:31.5638060Z adding 'torch/include/ATen/ops/norm.h' 2025-08-26T20:12:31.5641480Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5644680Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.5647891Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5650936Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-08-26T20:12:31.5654061Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-08-26T20:12:31.5657405Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-08-26T20:12:31.5660340Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5663161Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-08-26T20:12:31.5666283Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-08-26T20:12:31.5669229Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-08-26T20:12:31.5672346Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-08-26T20:12:31.5675505Z adding 'torch/include/ATen/ops/norm_native.h' 2025-08-26T20:12:31.5679603Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-08-26T20:12:31.5683547Z adding 'torch/include/ATen/ops/normal.h' 2025-08-26T20:12:31.5687389Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5690516Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-08-26T20:12:31.5693695Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-08-26T20:12:31.5697832Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-08-26T20:12:31.5700909Z adding 'torch/include/ATen/ops/normal_native.h' 2025-08-26T20:12:31.5704820Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-08-26T20:12:31.5708200Z adding 'torch/include/ATen/ops/not_equal.h' 2025-08-26T20:12:31.5711512Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5714354Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-08-26T20:12:31.5717721Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-08-26T20:12:31.5721054Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-08-26T20:12:31.5724270Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5727299Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-08-26T20:12:31.5730553Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-08-26T20:12:31.5733542Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-08-26T20:12:31.5736815Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5739561Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-08-26T20:12:31.5742597Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-08-26T20:12:31.5745550Z adding 'torch/include/ATen/ops/one_hot.h' 2025-08-26T20:12:31.5748927Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5751776Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-08-26T20:12:31.5754864Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-08-26T20:12:31.5758413Z adding 'torch/include/ATen/ops/ones.h' 2025-08-26T20:12:31.5761891Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5765057Z adding 'torch/include/ATen/ops/ones_like.h' 2025-08-26T20:12:31.5768479Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5771347Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-08-26T20:12:31.5774604Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-08-26T20:12:31.5777672Z adding 'torch/include/ATen/ops/ones_native.h' 2025-08-26T20:12:31.5781186Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-08-26T20:12:31.5784376Z adding 'torch/include/ATen/ops/or.h' 2025-08-26T20:12:31.5787544Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5790359Z adding 'torch/include/ATen/ops/or_native.h' 2025-08-26T20:12:31.5793592Z adding 'torch/include/ATen/ops/or_ops.h' 2025-08-26T20:12:31.5797211Z adding 'torch/include/ATen/ops/orgqr.h' 2025-08-26T20:12:31.5800563Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5804036Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-08-26T20:12:31.5807404Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-08-26T20:12:31.5811221Z adding 'torch/include/ATen/ops/ormqr.h' 2025-08-26T20:12:31.5814688Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-08-26T20:12:31.5818175Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-08-26T20:12:31.5821639Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-08-26T20:12:31.5824978Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-08-26T20:12:31.5828649Z adding 'torch/include/ATen/ops/outer.h' 2025-08-26T20:12:31.5832061Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5835545Z adding 'torch/include/ATen/ops/outer_native.h' 2025-08-26T20:12:31.5838784Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-08-26T20:12:31.5842439Z adding 'torch/include/ATen/ops/output_nr.h' 2025-08-26T20:12:31.5846162Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5849230Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-08-26T20:12:31.5852883Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-08-26T20:12:31.5856157Z adding 'torch/include/ATen/ops/pad.h' 2025-08-26T20:12:31.5860023Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5862969Z adding 'torch/include/ATen/ops/pad_native.h' 2025-08-26T20:12:31.5866793Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-08-26T20:12:31.5870154Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-08-26T20:12:31.5873792Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5877227Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-08-26T20:12:31.5880445Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-08-26T20:12:31.5884158Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-08-26T20:12:31.5887621Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5891179Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-08-26T20:12:31.5894486Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-08-26T20:12:31.5898028Z adding 'torch/include/ATen/ops/pdist.h' 2025-08-26T20:12:31.5901676Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5904741Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-08-26T20:12:31.5908321Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-08-26T20:12:31.5912050Z adding 'torch/include/ATen/ops/permute.h' 2025-08-26T20:12:31.5916042Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5919487Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-08-26T20:12:31.5922963Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5926745Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.5929686Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-08-26T20:12:31.5933375Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-08-26T20:12:31.5936445Z adding 'torch/include/ATen/ops/permute_native.h' 2025-08-26T20:12:31.5940869Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-08-26T20:12:31.5943979Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-08-26T20:12:31.5948163Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5952760Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-08-26T20:12:31.5956971Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-08-26T20:12:31.5960106Z adding 'torch/include/ATen/ops/pinverse.h' 2025-08-26T20:12:31.5964957Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.5968112Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-08-26T20:12:31.5972212Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-08-26T20:12:31.5976661Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-08-26T20:12:31.5979987Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.5985135Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.5991663Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-08-26T20:12:31.5994507Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-08-26T20:12:31.5998128Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-08-26T20:12:31.6001413Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-08-26T20:12:31.6004750Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6008310Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.6011369Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-08-26T20:12:31.6014851Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-08-26T20:12:31.6018066Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-08-26T20:12:31.6021219Z adding 'torch/include/ATen/ops/poisson.h' 2025-08-26T20:12:31.6024484Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6027540Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-08-26T20:12:31.6030882Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-08-26T20:12:31.6033889Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-08-26T20:12:31.6037013Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-08-26T20:12:31.6040399Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6043247Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-08-26T20:12:31.6046812Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-08-26T20:12:31.6049941Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-08-26T20:12:31.6053081Z adding 'torch/include/ATen/ops/polar.h' 2025-08-26T20:12:31.6056293Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6059283Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-08-26T20:12:31.6062389Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-08-26T20:12:31.6065465Z adding 'torch/include/ATen/ops/polar_native.h' 2025-08-26T20:12:31.6068578Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-08-26T20:12:31.6071662Z adding 'torch/include/ATen/ops/polygamma.h' 2025-08-26T20:12:31.6074962Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6078451Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.6081397Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-08-26T20:12:31.6084474Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-08-26T20:12:31.6087623Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-08-26T20:12:31.6090810Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-08-26T20:12:31.6093865Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-08-26T20:12:31.6097335Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-08-26T20:12:31.6100431Z adding 'torch/include/ATen/ops/positive.h' 2025-08-26T20:12:31.6103697Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6106549Z adding 'torch/include/ATen/ops/positive_native.h' 2025-08-26T20:12:31.6109640Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-08-26T20:12:31.6112875Z adding 'torch/include/ATen/ops/pow.h' 2025-08-26T20:12:31.6116312Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.6119294Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-08-26T20:12:31.6122464Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-08-26T20:12:31.6125519Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-08-26T20:12:31.6128739Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-08-26T20:12:31.6131932Z adding 'torch/include/ATen/ops/pow_native.h' 2025-08-26T20:12:31.6135754Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-08-26T20:12:31.6138984Z adding 'torch/include/ATen/ops/prelu.h' 2025-08-26T20:12:31.6142246Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6145172Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-08-26T20:12:31.6148292Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-08-26T20:12:31.6151617Z adding 'torch/include/ATen/ops/prod.h' 2025-08-26T20:12:31.6154915Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6158108Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.6161203Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6164300Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-08-26T20:12:31.6167551Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-08-26T20:12:31.6170589Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-08-26T20:12:31.6173700Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-08-26T20:12:31.6176815Z adding 'torch/include/ATen/ops/prod_native.h' 2025-08-26T20:12:31.6180255Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-08-26T20:12:31.6183371Z adding 'torch/include/ATen/ops/promote_types.h' 2025-08-26T20:12:31.6186619Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6189535Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-08-26T20:12:31.6192797Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-08-26T20:12:31.6195866Z adding 'torch/include/ATen/ops/put.h' 2025-08-26T20:12:31.6199165Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6202060Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-08-26T20:12:31.6205116Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-08-26T20:12:31.6208348Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-08-26T20:12:31.6211335Z adding 'torch/include/ATen/ops/put_native.h' 2025-08-26T20:12:31.6214634Z adding 'torch/include/ATen/ops/put_ops.h' 2025-08-26T20:12:31.6218140Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-08-26T20:12:31.6220990Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-08-26T20:12:31.6223981Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-08-26T20:12:31.6227055Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-08-26T20:12:31.6230332Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6233217Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-08-26T20:12:31.6236586Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-08-26T20:12:31.6240015Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-08-26T20:12:31.6243066Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6246117Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-08-26T20:12:31.6249285Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-08-26T20:12:31.6252262Z adding 'torch/include/ATen/ops/q_scale.h' 2025-08-26T20:12:31.6255258Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-08-26T20:12:31.6258353Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-08-26T20:12:31.6261428Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-08-26T20:12:31.6264456Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-08-26T20:12:31.6267808Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-08-26T20:12:31.6270911Z adding 'torch/include/ATen/ops/qr.h' 2025-08-26T20:12:31.6274193Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6277070Z adding 'torch/include/ATen/ops/qr_native.h' 2025-08-26T20:12:31.6280605Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-08-26T20:12:31.6283416Z adding 'torch/include/ATen/ops/qscheme.h' 2025-08-26T20:12:31.6286456Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-08-26T20:12:31.6289547Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-08-26T20:12:31.6292839Z adding 'torch/include/ATen/ops/quantile.h' 2025-08-26T20:12:31.6296275Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6299245Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-08-26T20:12:31.6302641Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-08-26T20:12:31.6306258Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-08-26T20:12:31.6309339Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6312337Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-08-26T20:12:31.6315374Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-08-26T20:12:31.6318367Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-08-26T20:12:31.6321647Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-08-26T20:12:31.6325090Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-08-26T20:12:31.6328765Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6331819Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-08-26T20:12:31.6335086Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-08-26T20:12:31.6338189Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-08-26T20:12:31.6341664Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6344846Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-08-26T20:12:31.6348032Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-08-26T20:12:31.6351131Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-08-26T20:12:31.6354523Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-08-26T20:12:31.6357827Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-08-26T20:12:31.6361434Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-08-26T20:12:31.6365217Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-08-26T20:12:31.6368852Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6371835Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-08-26T20:12:31.6375326Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-08-26T20:12:31.6378537Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-08-26T20:12:31.6382023Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6384959Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-08-26T20:12:31.6388392Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-08-26T20:12:31.6391831Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-08-26T20:12:31.6395123Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6398240Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-08-26T20:12:31.6401499Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-08-26T20:12:31.6404890Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-08-26T20:12:31.6408461Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6411553Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-08-26T20:12:31.6414986Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-08-26T20:12:31.6418268Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-08-26T20:12:31.6421763Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6424746Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-08-26T20:12:31.6428215Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-08-26T20:12:31.6431551Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-08-26T20:12:31.6435040Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6438043Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-08-26T20:12:31.6441563Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-08-26T20:12:31.6444974Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-08-26T20:12:31.6448915Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6452415Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-08-26T20:12:31.6456180Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-08-26T20:12:31.6459965Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-08-26T20:12:31.6463831Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6467320Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-08-26T20:12:31.6471198Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-08-26T20:12:31.6474813Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-08-26T20:12:31.6478148Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6481213Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-08-26T20:12:31.6484510Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-08-26T20:12:31.6489590Z adding 'torch/include/ATen/ops/rand.h' 2025-08-26T20:12:31.6493996Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6497430Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6500723Z adding 'torch/include/ATen/ops/rand_like.h' 2025-08-26T20:12:31.6504140Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6507104Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-08-26T20:12:31.6510584Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-08-26T20:12:31.6513910Z adding 'torch/include/ATen/ops/rand_native.h' 2025-08-26T20:12:31.6517846Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-08-26T20:12:31.6522773Z adding 'torch/include/ATen/ops/randint.h' 2025-08-26T20:12:31.6527369Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6531647Z adding 'torch/include/ATen/ops/randint_like.h' 2025-08-26T20:12:31.6535677Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6538832Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-08-26T20:12:31.6542506Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-08-26T20:12:31.6545805Z adding 'torch/include/ATen/ops/randint_native.h' 2025-08-26T20:12:31.6549521Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-08-26T20:12:31.6554637Z adding 'torch/include/ATen/ops/randn.h' 2025-08-26T20:12:31.6558954Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6562521Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6565898Z adding 'torch/include/ATen/ops/randn_like.h' 2025-08-26T20:12:31.6569299Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6572557Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-26T20:12:31.6575448Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-08-26T20:12:31.6578789Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-08-26T20:12:31.6581971Z adding 'torch/include/ATen/ops/randn_native.h' 2025-08-26T20:12:31.6585691Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-08-26T20:12:31.6589156Z adding 'torch/include/ATen/ops/random.h' 2025-08-26T20:12:31.6592607Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6595830Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-08-26T20:12:31.6598990Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-08-26T20:12:31.6602002Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-08-26T20:12:31.6605216Z adding 'torch/include/ATen/ops/random_native.h' 2025-08-26T20:12:31.6608930Z adding 'torch/include/ATen/ops/random_ops.h' 2025-08-26T20:12:31.6612975Z adding 'torch/include/ATen/ops/randperm.h' 2025-08-26T20:12:31.6616859Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6619916Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-08-26T20:12:31.6622975Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-08-26T20:12:31.6626297Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-08-26T20:12:31.6629708Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-08-26T20:12:31.6633171Z adding 'torch/include/ATen/ops/range.h' 2025-08-26T20:12:31.6636717Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6639720Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-08-26T20:12:31.6642694Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-08-26T20:12:31.6645840Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-08-26T20:12:31.6648893Z adding 'torch/include/ATen/ops/range_native.h' 2025-08-26T20:12:31.6652339Z adding 'torch/include/ATen/ops/range_ops.h' 2025-08-26T20:12:31.6655500Z adding 'torch/include/ATen/ops/ravel.h' 2025-08-26T20:12:31.6658771Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6661689Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-08-26T20:12:31.6664726Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-08-26T20:12:31.6667721Z adding 'torch/include/ATen/ops/real.h' 2025-08-26T20:12:31.6670933Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6673798Z adding 'torch/include/ATen/ops/real_native.h' 2025-08-26T20:12:31.6676893Z adding 'torch/include/ATen/ops/real_ops.h' 2025-08-26T20:12:31.6680030Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-08-26T20:12:31.6684150Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.6687245Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-08-26T20:12:31.6690379Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-08-26T20:12:31.6693390Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-08-26T20:12:31.6696488Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-08-26T20:12:31.6699564Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-08-26T20:12:31.6702824Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-08-26T20:12:31.6705717Z adding 'torch/include/ATen/ops/record_stream.h' 2025-08-26T20:12:31.6708796Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-08-26T20:12:31.6711787Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-08-26T20:12:31.6714919Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-08-26T20:12:31.6717867Z adding 'torch/include/ATen/ops/refine_names.h' 2025-08-26T20:12:31.6721075Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6723937Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-08-26T20:12:31.6727173Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-08-26T20:12:31.6730521Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-08-26T20:12:31.6734017Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-08-26T20:12:31.6737563Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.6740590Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-08-26T20:12:31.6743866Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-08-26T20:12:31.6746874Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-08-26T20:12:31.6749938Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-08-26T20:12:31.6752977Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-08-26T20:12:31.6756321Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-08-26T20:12:31.6759728Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.6762740Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-08-26T20:12:31.6765998Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-08-26T20:12:31.6769041Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-08-26T20:12:31.6772190Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-08-26T20:12:31.6775241Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-08-26T20:12:31.6778427Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-08-26T20:12:31.6781752Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-08-26T20:12:31.6785282Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-08-26T20:12:31.6788611Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-08-26T20:12:31.6791802Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-08-26T20:12:31.6794801Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-08-26T20:12:31.6797992Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-08-26T20:12:31.6801161Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-08-26T20:12:31.6804329Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-08-26T20:12:31.6807438Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-08-26T20:12:31.6810776Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-08-26T20:12:31.6814096Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-08-26T20:12:31.6817496Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-08-26T20:12:31.6821058Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.6823993Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-08-26T20:12:31.6827397Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-08-26T20:12:31.6830441Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-08-26T20:12:31.6833765Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-08-26T20:12:31.6836805Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-08-26T20:12:31.6839934Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-08-26T20:12:31.6843262Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.6846372Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-08-26T20:12:31.6849499Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-08-26T20:12:31.6852645Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-08-26T20:12:31.6856124Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-08-26T20:12:31.6859160Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-08-26T20:12:31.6862309Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-08-26T20:12:31.6865368Z adding 'torch/include/ATen/ops/relu.h' 2025-08-26T20:12:31.6868445Z adding 'torch/include/ATen/ops/relu6.h' 2025-08-26T20:12:31.6871790Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6874660Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-08-26T20:12:31.6877967Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-08-26T20:12:31.6881230Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6884352Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-08-26T20:12:31.6887508Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-08-26T20:12:31.6890768Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-08-26T20:12:31.6893967Z adding 'torch/include/ATen/ops/relu_native.h' 2025-08-26T20:12:31.6897236Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-08-26T20:12:31.6900672Z adding 'torch/include/ATen/ops/remainder.h' 2025-08-26T20:12:31.6904085Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6907464Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.6910451Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-08-26T20:12:31.6913738Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-08-26T20:12:31.6916845Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-08-26T20:12:31.6919991Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-08-26T20:12:31.6923159Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-08-26T20:12:31.6926817Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-08-26T20:12:31.6930171Z adding 'torch/include/ATen/ops/rename.h' 2025-08-26T20:12:31.6933490Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6936593Z adding 'torch/include/ATen/ops/rename_native.h' 2025-08-26T20:12:31.6939854Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-08-26T20:12:31.6943054Z adding 'torch/include/ATen/ops/renorm.h' 2025-08-26T20:12:31.6946668Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.6950142Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-08-26T20:12:31.6953829Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-08-26T20:12:31.6957455Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-08-26T20:12:31.6961119Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-08-26T20:12:31.6964651Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-08-26T20:12:31.6968529Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-08-26T20:12:31.6974038Z adding 'torch/include/ATen/ops/repeat.h' 2025-08-26T20:12:31.6976196Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6979824Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-08-26T20:12:31.6983393Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.6986772Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.6989866Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-08-26T20:12:31.6993142Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-08-26T20:12:31.6996220Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-08-26T20:12:31.6999834Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-08-26T20:12:31.7002944Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-08-26T20:12:31.7006256Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-08-26T20:12:31.7009811Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-08-26T20:12:31.7013336Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-08-26T20:12:31.7016846Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7019825Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-08-26T20:12:31.7023178Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-08-26T20:12:31.7026441Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-08-26T20:12:31.7029704Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-08-26T20:12:31.7032920Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-08-26T20:12:31.7036139Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-08-26T20:12:31.7039389Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7042350Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-08-26T20:12:31.7045526Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-08-26T20:12:31.7048632Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-08-26T20:12:31.7051796Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-08-26T20:12:31.7054911Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-08-26T20:12:31.7058249Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-08-26T20:12:31.7061566Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-08-26T20:12:31.7065104Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-08-26T20:12:31.7068478Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-08-26T20:12:31.7071648Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-08-26T20:12:31.7074668Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-08-26T20:12:31.7077890Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-08-26T20:12:31.7081248Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7084221Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-08-26T20:12:31.7087651Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-08-26T20:12:31.7090658Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-08-26T20:12:31.7093739Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-08-26T20:12:31.7096849Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-08-26T20:12:31.7100121Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-08-26T20:12:31.7103637Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-08-26T20:12:31.7107219Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-08-26T20:12:31.7110576Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-08-26T20:12:31.7113804Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-08-26T20:12:31.7116765Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-08-26T20:12:31.7119975Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-08-26T20:12:31.7123335Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7126440Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-08-26T20:12:31.7129750Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-08-26T20:12:31.7132779Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-08-26T20:12:31.7135831Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-08-26T20:12:31.7138874Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-08-26T20:12:31.7142048Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-08-26T20:12:31.7145011Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-08-26T20:12:31.7148355Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7151265Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-08-26T20:12:31.7154377Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-08-26T20:12:31.7157501Z adding 'torch/include/ATen/ops/reshape.h' 2025-08-26T20:12:31.7160557Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-08-26T20:12:31.7163835Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7167057Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-26T20:12:31.7169874Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-08-26T20:12:31.7173096Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-08-26T20:12:31.7176349Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7179440Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-26T20:12:31.7182223Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-08-26T20:12:31.7185317Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-08-26T20:12:31.7188752Z adding 'torch/include/ATen/ops/resize.h' 2025-08-26T20:12:31.7192091Z adding 'torch/include/ATen/ops/resize_as.h' 2025-08-26T20:12:31.7195431Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7198389Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-08-26T20:12:31.7201733Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-08-26T20:12:31.7204942Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-08-26T20:12:31.7208416Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7211422Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-08-26T20:12:31.7214447Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-08-26T20:12:31.7217872Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-08-26T20:12:31.7221217Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7224179Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-08-26T20:12:31.7227273Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-08-26T20:12:31.7230346Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-08-26T20:12:31.7233399Z adding 'torch/include/ATen/ops/resize_native.h' 2025-08-26T20:12:31.7236719Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-08-26T20:12:31.7239884Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-08-26T20:12:31.7243070Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7246026Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-08-26T20:12:31.7249155Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-08-26T20:12:31.7252187Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-08-26T20:12:31.7255486Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7258408Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-08-26T20:12:31.7261562Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-08-26T20:12:31.7265298Z adding 'torch/include/ATen/ops/result_type.h' 2025-08-26T20:12:31.7268827Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7271732Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-08-26T20:12:31.7275173Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-08-26T20:12:31.7278302Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-08-26T20:12:31.7281704Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7284614Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-08-26T20:12:31.7287936Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-08-26T20:12:31.7290917Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-08-26T20:12:31.7294340Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7297230Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-08-26T20:12:31.7300512Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-08-26T20:12:31.7303902Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-08-26T20:12:31.7307248Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7310324Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-08-26T20:12:31.7313586Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-08-26T20:12:31.7316942Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-08-26T20:12:31.7320702Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-08-26T20:12:31.7323608Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7326752Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-08-26T20:12:31.7329949Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-08-26T20:12:31.7333524Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7336452Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-08-26T20:12:31.7339955Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-08-26T20:12:31.7343261Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-08-26T20:12:31.7346468Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-08-26T20:12:31.7349883Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7352795Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-08-26T20:12:31.7356119Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-08-26T20:12:31.7359469Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7362648Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-08-26T20:12:31.7366152Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-08-26T20:12:31.7369640Z adding 'torch/include/ATen/ops/roll.h' 2025-08-26T20:12:31.7373149Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7376186Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-08-26T20:12:31.7379428Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-08-26T20:12:31.7382453Z adding 'torch/include/ATen/ops/roll_native.h' 2025-08-26T20:12:31.7385870Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-08-26T20:12:31.7389145Z adding 'torch/include/ATen/ops/rot90.h' 2025-08-26T20:12:31.7392529Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7395511Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-08-26T20:12:31.7398749Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-08-26T20:12:31.7402144Z adding 'torch/include/ATen/ops/round.h' 2025-08-26T20:12:31.7405686Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7408899Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-08-26T20:12:31.7412117Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-08-26T20:12:31.7415175Z adding 'torch/include/ATen/ops/round_meta.h' 2025-08-26T20:12:31.7418480Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-08-26T20:12:31.7421538Z adding 'torch/include/ATen/ops/round_native.h' 2025-08-26T20:12:31.7425706Z adding 'torch/include/ATen/ops/round_ops.h' 2025-08-26T20:12:31.7428964Z adding 'torch/include/ATen/ops/row_indices.h' 2025-08-26T20:12:31.7432400Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7435506Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-08-26T20:12:31.7438799Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7442151Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7444973Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-08-26T20:12:31.7448700Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-08-26T20:12:31.7461429Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-08-26T20:12:31.7461571Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-08-26T20:12:31.7461711Z adding 'torch/include/ATen/ops/row_stack.h' 2025-08-26T20:12:31.7463013Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7467243Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-08-26T20:12:31.7469384Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-08-26T20:12:31.7473241Z adding 'torch/include/ATen/ops/rrelu.h' 2025-08-26T20:12:31.7475961Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7479298Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-08-26T20:12:31.7482348Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-08-26T20:12:31.7486001Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-08-26T20:12:31.7489362Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-08-26T20:12:31.7492729Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7496433Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-08-26T20:12:31.7499105Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-08-26T20:12:31.7502406Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7505605Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-08-26T20:12:31.7508793Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-08-26T20:12:31.7512453Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-08-26T20:12:31.7515211Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-08-26T20:12:31.7518701Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-08-26T20:12:31.7521955Z adding 'torch/include/ATen/ops/rshift.h' 2025-08-26T20:12:31.7525222Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7528360Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-08-26T20:12:31.7531420Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-08-26T20:12:31.7534486Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-08-26T20:12:31.7537493Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-08-26T20:12:31.7540923Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-08-26T20:12:31.7544335Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-08-26T20:12:31.7547769Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7550646Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-08-26T20:12:31.7553724Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-08-26T20:12:31.7556741Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-08-26T20:12:31.7559820Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-08-26T20:12:31.7562864Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-08-26T20:12:31.7566133Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-08-26T20:12:31.7569368Z adding 'torch/include/ATen/ops/rsub.h' 2025-08-26T20:12:31.7572967Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7576122Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-08-26T20:12:31.7579059Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-08-26T20:12:31.7582085Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-08-26T20:12:31.7585433Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-08-26T20:12:31.7588728Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-08-26T20:12:31.7592046Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7595017Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-08-26T20:12:31.7598268Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-08-26T20:12:31.7601615Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-08-26T20:12:31.7605072Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7608124Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-08-26T20:12:31.7611461Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-08-26T20:12:31.7614849Z adding 'torch/include/ATen/ops/scatter.h' 2025-08-26T20:12:31.7618132Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-08-26T20:12:31.7621502Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7624524Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7627546Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-08-26T20:12:31.7630665Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-08-26T20:12:31.7633690Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-08-26T20:12:31.7636793Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-08-26T20:12:31.7639784Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-08-26T20:12:31.7643118Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-08-26T20:12:31.7646706Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7649773Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7652932Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-08-26T20:12:31.7656197Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-08-26T20:12:31.7659322Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-08-26T20:12:31.7662607Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-08-26T20:12:31.7665739Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-08-26T20:12:31.7669713Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-08-26T20:12:31.7673214Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-08-26T20:12:31.7676618Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7679587Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-08-26T20:12:31.7682735Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-08-26T20:12:31.7685900Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-08-26T20:12:31.7689071Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-08-26T20:12:31.7692494Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-08-26T20:12:31.7695446Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-08-26T20:12:31.7698776Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-08-26T20:12:31.7702460Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-08-26T20:12:31.7705613Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-08-26T20:12:31.7708770Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-08-26T20:12:31.7712325Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-08-26T20:12:31.7715738Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-08-26T20:12:31.7719125Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7722534Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-08-26T20:12:31.7725816Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-08-26T20:12:31.7728897Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-08-26T20:12:31.7732207Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-08-26T20:12:31.7735428Z adding 'torch/include/ATen/ops/select.h' 2025-08-26T20:12:31.7738909Z adding 'torch/include/ATen/ops/select_backward.h' 2025-08-26T20:12:31.7742397Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7745637Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7748470Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-08-26T20:12:31.7751657Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-08-26T20:12:31.7754898Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7758016Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7761243Z adding 'torch/include/ATen/ops/select_copy.h' 2025-08-26T20:12:31.7764640Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7768120Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7770900Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-08-26T20:12:31.7774116Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-08-26T20:12:31.7777468Z adding 'torch/include/ATen/ops/select_native.h' 2025-08-26T20:12:31.7780531Z adding 'torch/include/ATen/ops/select_ops.h' 2025-08-26T20:12:31.7783763Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-08-26T20:12:31.7787222Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7790405Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7793250Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-08-26T20:12:31.7796519Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-08-26T20:12:31.7799571Z adding 'torch/include/ATen/ops/selu.h' 2025-08-26T20:12:31.7803154Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7806016Z adding 'torch/include/ATen/ops/selu_native.h' 2025-08-26T20:12:31.7809279Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-08-26T20:12:31.7812922Z adding 'torch/include/ATen/ops/set.h' 2025-08-26T20:12:31.7816570Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.7819836Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7822804Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-08-26T20:12:31.7825936Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-08-26T20:12:31.7828921Z adding 'torch/include/ATen/ops/set_data.h' 2025-08-26T20:12:31.7832159Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7835174Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-08-26T20:12:31.7838221Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-08-26T20:12:31.7841669Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-08-26T20:12:31.7844604Z adding 'torch/include/ATen/ops/set_native.h' 2025-08-26T20:12:31.7848605Z adding 'torch/include/ATen/ops/set_ops.h' 2025-08-26T20:12:31.7851920Z adding 'torch/include/ATen/ops/sgn.h' 2025-08-26T20:12:31.7855259Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7858196Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-08-26T20:12:31.7861354Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-08-26T20:12:31.7864309Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-08-26T20:12:31.7867422Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-08-26T20:12:31.7870431Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-08-26T20:12:31.7873636Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-08-26T20:12:31.7876750Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-08-26T20:12:31.7879890Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-08-26T20:12:31.7883312Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7886385Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-08-26T20:12:31.7889457Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-08-26T20:12:31.7892439Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-08-26T20:12:31.7895594Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-08-26T20:12:31.7898632Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-08-26T20:12:31.7901829Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-08-26T20:12:31.7905285Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7908375Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-08-26T20:12:31.7911545Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-08-26T20:12:31.7914698Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-08-26T20:12:31.7917837Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-08-26T20:12:31.7921008Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-08-26T20:12:31.7924277Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-08-26T20:12:31.7927655Z adding 'torch/include/ATen/ops/sign.h' 2025-08-26T20:12:31.7931098Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7934075Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-08-26T20:12:31.7937352Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-08-26T20:12:31.7940380Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-08-26T20:12:31.7943701Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-08-26T20:12:31.7946758Z adding 'torch/include/ATen/ops/sign_native.h' 2025-08-26T20:12:31.7950189Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-08-26T20:12:31.7953326Z adding 'torch/include/ATen/ops/signbit.h' 2025-08-26T20:12:31.7956765Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7959903Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-08-26T20:12:31.7963660Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-08-26T20:12:31.7967219Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-08-26T20:12:31.7970895Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-08-26T20:12:31.7994020Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-08-26T20:12:31.7994401Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-08-26T20:12:31.7994703Z adding 'torch/include/ATen/ops/silu.h' 2025-08-26T20:12:31.7995020Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-08-26T20:12:31.7995573Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.7996291Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.7997208Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-08-26T20:12:31.7999165Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-08-26T20:12:31.8002286Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-08-26T20:12:31.8006254Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-08-26T20:12:31.8008795Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-08-26T20:12:31.8012137Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-08-26T20:12:31.8016059Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8018617Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-08-26T20:12:31.8021720Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-08-26T20:12:31.8024738Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-08-26T20:12:31.8029193Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-08-26T20:12:31.8031101Z adding 'torch/include/ATen/ops/silu_native.h' 2025-08-26T20:12:31.8034603Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-08-26T20:12:31.8037456Z adding 'torch/include/ATen/ops/sin.h' 2025-08-26T20:12:31.8040730Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8043616Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-08-26T20:12:31.8047046Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-08-26T20:12:31.8050096Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-08-26T20:12:31.8053157Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-08-26T20:12:31.8056189Z adding 'torch/include/ATen/ops/sin_native.h' 2025-08-26T20:12:31.8059532Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-08-26T20:12:31.8062629Z adding 'torch/include/ATen/ops/sinc.h' 2025-08-26T20:12:31.8065795Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8068678Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-08-26T20:12:31.8071726Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-08-26T20:12:31.8074732Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-08-26T20:12:31.8077994Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-08-26T20:12:31.8081012Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-08-26T20:12:31.8084303Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-08-26T20:12:31.8087732Z adding 'torch/include/ATen/ops/sinh.h' 2025-08-26T20:12:31.8090924Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8093878Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-08-26T20:12:31.8096966Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-08-26T20:12:31.8100003Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-08-26T20:12:31.8103130Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-08-26T20:12:31.8106449Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-08-26T20:12:31.8109834Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-08-26T20:12:31.8112944Z adding 'torch/include/ATen/ops/size.h' 2025-08-26T20:12:31.8116054Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8118997Z adding 'torch/include/ATen/ops/size_native.h' 2025-08-26T20:12:31.8122151Z adding 'torch/include/ATen/ops/size_ops.h' 2025-08-26T20:12:31.8125542Z adding 'torch/include/ATen/ops/slice.h' 2025-08-26T20:12:31.8129021Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-08-26T20:12:31.8132838Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8135814Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-08-26T20:12:31.8139099Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-08-26T20:12:31.8142409Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8146034Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-08-26T20:12:31.8150095Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8153558Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8156167Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-08-26T20:12:31.8159303Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-08-26T20:12:31.8162767Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-08-26T20:12:31.8166277Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8170094Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-08-26T20:12:31.8174130Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-08-26T20:12:31.8176577Z adding 'torch/include/ATen/ops/slice_native.h' 2025-08-26T20:12:31.8179887Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-08-26T20:12:31.8183983Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-08-26T20:12:31.8187122Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8190564Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8193475Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-08-26T20:12:31.8196898Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-08-26T20:12:31.8200122Z adding 'torch/include/ATen/ops/slogdet.h' 2025-08-26T20:12:31.8203602Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8206853Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-08-26T20:12:31.8210088Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-08-26T20:12:31.8213753Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-08-26T20:12:31.8217338Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8220999Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-08-26T20:12:31.8224581Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-08-26T20:12:31.8227724Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-08-26T20:12:31.8231187Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-08-26T20:12:31.8234267Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-08-26T20:12:31.8237755Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-08-26T20:12:31.8241632Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-08-26T20:12:31.8245192Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8248616Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-08-26T20:12:31.8251770Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-08-26T20:12:31.8255024Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-08-26T20:12:31.8258818Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-08-26T20:12:31.8262181Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-08-26T20:12:31.8265991Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8269163Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-08-26T20:12:31.8272506Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-08-26T20:12:31.8276003Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-08-26T20:12:31.8279071Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-08-26T20:12:31.8282994Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-08-26T20:12:31.8287307Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8290112Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-08-26T20:12:31.8293604Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-08-26T20:12:31.8296724Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-08-26T20:12:31.8300220Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-08-26T20:12:31.8303777Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-08-26T20:12:31.8306908Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-08-26T20:12:31.8310815Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-08-26T20:12:31.8314346Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-08-26T20:12:31.8317879Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-08-26T20:12:31.8321601Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-08-26T20:12:31.8324654Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-08-26T20:12:31.8327950Z adding 'torch/include/ATen/ops/smm.h' 2025-08-26T20:12:31.8331241Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8334434Z adding 'torch/include/ATen/ops/smm_native.h' 2025-08-26T20:12:31.8337584Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-08-26T20:12:31.8340937Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-08-26T20:12:31.8344466Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-08-26T20:12:31.8347634Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8350784Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-08-26T20:12:31.8353943Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-08-26T20:12:31.8357122Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-08-26T20:12:31.8360405Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-08-26T20:12:31.8363935Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8367385Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-08-26T20:12:31.8370283Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-08-26T20:12:31.8373463Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-08-26T20:12:31.8376901Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-08-26T20:12:31.8379902Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-08-26T20:12:31.8383103Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-08-26T20:12:31.8386476Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-08-26T20:12:31.8390628Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-08-26T20:12:31.8393440Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8396292Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-08-26T20:12:31.8399552Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-08-26T20:12:31.8403267Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8406337Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-08-26T20:12:31.8409984Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-08-26T20:12:31.8413066Z adding 'torch/include/ATen/ops/softmax.h' 2025-08-26T20:12:31.8416476Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8419709Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8422636Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-08-26T20:12:31.8426080Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-08-26T20:12:31.8429401Z adding 'torch/include/ATen/ops/softplus.h' 2025-08-26T20:12:31.8432755Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-08-26T20:12:31.8436108Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8439175Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-08-26T20:12:31.8442408Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-08-26T20:12:31.8445567Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-08-26T20:12:31.8448954Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-08-26T20:12:31.8451991Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-08-26T20:12:31.8455462Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-08-26T20:12:31.8458821Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8461954Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-08-26T20:12:31.8465230Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-08-26T20:12:31.8468196Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-08-26T20:12:31.8471435Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-08-26T20:12:31.8474432Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-08-26T20:12:31.8477679Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-08-26T20:12:31.8480795Z adding 'torch/include/ATen/ops/softshrink.h' 2025-08-26T20:12:31.8483958Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-08-26T20:12:31.8487653Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8490626Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-08-26T20:12:31.8493741Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-08-26T20:12:31.8496753Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-08-26T20:12:31.8499881Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-08-26T20:12:31.8502893Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-08-26T20:12:31.8506087Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-08-26T20:12:31.8509390Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8512296Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-08-26T20:12:31.8515360Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-08-26T20:12:31.8518533Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-08-26T20:12:31.8521698Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-08-26T20:12:31.8524664Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-08-26T20:12:31.8528078Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-08-26T20:12:31.8531472Z adding 'torch/include/ATen/ops/sort.h' 2025-08-26T20:12:31.8534808Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8537940Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8541000Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8544016Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-08-26T20:12:31.8547070Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-08-26T20:12:31.8550050Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-08-26T20:12:31.8553123Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-08-26T20:12:31.8556195Z adding 'torch/include/ATen/ops/sort_native.h' 2025-08-26T20:12:31.8559764Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-08-26T20:12:31.8563184Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-08-26T20:12:31.8566666Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8569589Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-08-26T20:12:31.8572960Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-08-26T20:12:31.8576513Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-08-26T20:12:31.8579896Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8582841Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-08-26T20:12:31.8586108Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-08-26T20:12:31.8589695Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-08-26T20:12:31.8593312Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8596204Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-08-26T20:12:31.8599479Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-08-26T20:12:31.8602859Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-08-26T20:12:31.8606393Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8609799Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8612741Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-08-26T20:12:31.8616189Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-08-26T20:12:31.8619538Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-08-26T20:12:31.8623051Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8625972Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-08-26T20:12:31.8629258Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-08-26T20:12:31.8632534Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-08-26T20:12:31.8635913Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8638822Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-08-26T20:12:31.8649742Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-08-26T20:12:31.8652904Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-08-26T20:12:31.8656148Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8658980Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-08-26T20:12:31.8662005Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-08-26T20:12:31.8665032Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-08-26T20:12:31.8668258Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8671099Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-08-26T20:12:31.8675071Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-08-26T20:12:31.8677485Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-08-26T20:12:31.8681079Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-08-26T20:12:31.8684051Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8687235Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-08-26T20:12:31.8690236Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-08-26T20:12:31.8693623Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-08-26T20:12:31.8696875Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8699948Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-08-26T20:12:31.8702926Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-08-26T20:12:31.8706267Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-08-26T20:12:31.8709566Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-08-26T20:12:31.8712608Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-08-26T20:12:31.8715973Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-08-26T20:12:31.8718996Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-08-26T20:12:31.8722410Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8725346Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-08-26T20:12:31.8728991Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-08-26T20:12:31.8733100Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-08-26T20:12:31.8737387Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-08-26T20:12:31.8751665Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-08-26T20:12:31.8752268Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-08-26T20:12:31.8752640Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-08-26T20:12:31.8753222Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8754374Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-08-26T20:12:31.8757487Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-08-26T20:12:31.8760412Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-08-26T20:12:31.8763719Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-08-26T20:12:31.8766729Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-08-26T20:12:31.8770029Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-08-26T20:12:31.8773108Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-08-26T20:12:31.8776557Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8779578Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-08-26T20:12:31.8782648Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-08-26T20:12:31.8785721Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-08-26T20:12:31.8788828Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-08-26T20:12:31.8791880Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-08-26T20:12:31.8795035Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-08-26T20:12:31.8798253Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-08-26T20:12:31.8801539Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8804762Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-08-26T20:12:31.8807983Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-08-26T20:12:31.8810988Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-08-26T20:12:31.8814157Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-08-26T20:12:31.8817109Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-08-26T20:12:31.8820341Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-08-26T20:12:31.8830412Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-08-26T20:12:31.8832919Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8833593Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-08-26T20:12:31.8837287Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-08-26T20:12:31.8840406Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-08-26T20:12:31.8843461Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-08-26T20:12:31.8846545Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-08-26T20:12:31.8849901Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-08-26T20:12:31.8853377Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-08-26T20:12:31.8857177Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8860857Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8864166Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-08-26T20:12:31.8867717Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-08-26T20:12:31.8871084Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-08-26T20:12:31.8874539Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-08-26T20:12:31.8877602Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-08-26T20:12:31.8881180Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-08-26T20:12:31.8884611Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-08-26T20:12:31.8888220Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8891423Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8894552Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-08-26T20:12:31.8897663Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-08-26T20:12:31.8900749Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-08-26T20:12:31.8903910Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-08-26T20:12:31.8907066Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-08-26T20:12:31.8910597Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-08-26T20:12:31.8913971Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-08-26T20:12:31.8917312Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8920478Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8923374Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-08-26T20:12:31.8926682Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-08-26T20:12:31.8929694Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-08-26T20:12:31.8933419Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-08-26T20:12:31.8936523Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-08-26T20:12:31.8939830Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-08-26T20:12:31.8943101Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-08-26T20:12:31.8946425Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.8949587Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8952495Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-08-26T20:12:31.8955513Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-08-26T20:12:31.8958610Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-08-26T20:12:31.8961697Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-08-26T20:12:31.8964843Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-08-26T20:12:31.8968354Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-08-26T20:12:31.8971452Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-08-26T20:12:31.8974722Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.8977542Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-08-26T20:12:31.8980624Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-08-26T20:12:31.8983818Z adding 'torch/include/ATen/ops/special_entr.h' 2025-08-26T20:12:31.8987105Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.8989963Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-08-26T20:12:31.8992925Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-08-26T20:12:31.8995803Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-08-26T20:12:31.8998852Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-08-26T20:12:31.9001763Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-08-26T20:12:31.9004885Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-08-26T20:12:31.9008060Z adding 'torch/include/ATen/ops/special_erf.h' 2025-08-26T20:12:31.9011326Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9014183Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-08-26T20:12:31.9017394Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-08-26T20:12:31.9020436Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-08-26T20:12:31.9023656Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9026588Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-08-26T20:12:31.9029593Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-08-26T20:12:31.9032631Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-08-26T20:12:31.9035887Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9038737Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-08-26T20:12:31.9041725Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-08-26T20:12:31.9044747Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-08-26T20:12:31.9047975Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-08-26T20:12:31.9050935Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-08-26T20:12:31.9054101Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-08-26T20:12:31.9057137Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-08-26T20:12:31.9060343Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9063143Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-08-26T20:12:31.9066211Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-08-26T20:12:31.9069246Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-08-26T20:12:31.9072532Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9075415Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-08-26T20:12:31.9078548Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-08-26T20:12:31.9081589Z adding 'torch/include/ATen/ops/special_expit.h' 2025-08-26T20:12:31.9084757Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9087704Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-08-26T20:12:31.9090778Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-08-26T20:12:31.9093806Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-08-26T20:12:31.9096983Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9099827Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-08-26T20:12:31.9102979Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-08-26T20:12:31.9106050Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-08-26T20:12:31.9109294Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9112252Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-08-26T20:12:31.9115356Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-08-26T20:12:31.9118488Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-08-26T20:12:31.9121729Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9124559Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-08-26T20:12:31.9127820Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-08-26T20:12:31.9130871Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-08-26T20:12:31.9134142Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9136977Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-08-26T20:12:31.9140064Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-08-26T20:12:31.9143308Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-08-26T20:12:31.9146664Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9150025Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9152983Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-08-26T20:12:31.9156057Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-08-26T20:12:31.9159015Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-08-26T20:12:31.9162122Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-08-26T20:12:31.9165026Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-08-26T20:12:31.9168518Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-08-26T20:12:31.9171799Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-08-26T20:12:31.9175160Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9178369Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9181256Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-08-26T20:12:31.9184297Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-08-26T20:12:31.9187200Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-08-26T20:12:31.9190299Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-08-26T20:12:31.9193303Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-08-26T20:12:31.9196652Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-08-26T20:12:31.9199759Z adding 'torch/include/ATen/ops/special_i0.h' 2025-08-26T20:12:31.9202974Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9205876Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-08-26T20:12:31.9209029Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-08-26T20:12:31.9212103Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-08-26T20:12:31.9215373Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9218249Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-08-26T20:12:31.9221299Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-08-26T20:12:31.9224244Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-08-26T20:12:31.9227308Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-08-26T20:12:31.9230213Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-08-26T20:12:31.9233334Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-08-26T20:12:31.9236426Z adding 'torch/include/ATen/ops/special_i1.h' 2025-08-26T20:12:31.9239694Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9242542Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-08-26T20:12:31.9245595Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-08-26T20:12:31.9248635Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-08-26T20:12:31.9251785Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-08-26T20:12:31.9254772Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-08-26T20:12:31.9257875Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-08-26T20:12:31.9260907Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-08-26T20:12:31.9264177Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9267459Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-08-26T20:12:31.9270252Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-08-26T20:12:31.9273327Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-08-26T20:12:31.9276426Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-08-26T20:12:31.9279551Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-08-26T20:12:31.9282556Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-08-26T20:12:31.9285918Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-08-26T20:12:31.9289384Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9292751Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9295739Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-08-26T20:12:31.9298870Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-08-26T20:12:31.9301879Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-08-26T20:12:31.9305098Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-08-26T20:12:31.9308124Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-08-26T20:12:31.9311624Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-08-26T20:12:31.9314979Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-08-26T20:12:31.9318665Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9321961Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9324900Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-08-26T20:12:31.9328209Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-08-26T20:12:31.9331147Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-08-26T20:12:31.9334351Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-08-26T20:12:31.9337378Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-08-26T20:12:31.9340906Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-08-26T20:12:31.9344089Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-08-26T20:12:31.9347345Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9350318Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-08-26T20:12:31.9353521Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-08-26T20:12:31.9356782Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-08-26T20:12:31.9360065Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9363100Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-08-26T20:12:31.9366236Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-08-26T20:12:31.9369326Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-08-26T20:12:31.9372547Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-08-26T20:12:31.9375566Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-08-26T20:12:31.9378782Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-08-26T20:12:31.9381837Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-08-26T20:12:31.9385197Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9388023Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-08-26T20:12:31.9391268Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-08-26T20:12:31.9394408Z adding 'torch/include/ATen/ops/special_logit.h' 2025-08-26T20:12:31.9397880Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9400824Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-08-26T20:12:31.9404050Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-08-26T20:12:31.9407400Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-08-26T20:12:31.9410733Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9413659Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-08-26T20:12:31.9416836Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-08-26T20:12:31.9420196Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-08-26T20:12:31.9423474Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9426622Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-08-26T20:12:31.9429639Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-08-26T20:12:31.9432659Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-08-26T20:12:31.9435833Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-08-26T20:12:31.9438821Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-08-26T20:12:31.9442093Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-08-26T20:12:31.9445176Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-08-26T20:12:31.9448742Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9451679Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-08-26T20:12:31.9454886Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-08-26T20:12:31.9457824Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-08-26T20:12:31.9461315Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-08-26T20:12:31.9464635Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-08-26T20:12:31.9468266Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-08-26T20:12:31.9471790Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-08-26T20:12:31.9475413Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9478337Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-08-26T20:12:31.9481608Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-08-26T20:12:31.9484565Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-08-26T20:12:31.9487947Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-08-26T20:12:31.9491098Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-08-26T20:12:31.9494414Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-08-26T20:12:31.9497529Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-08-26T20:12:31.9501005Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9503901Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-08-26T20:12:31.9506952Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-08-26T20:12:31.9510049Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-08-26T20:12:31.9513111Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-08-26T20:12:31.9516060Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-08-26T20:12:31.9519158Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-08-26T20:12:31.9522171Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-08-26T20:12:31.9525719Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9528642Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-08-26T20:12:31.9531755Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-08-26T20:12:31.9534783Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-08-26T20:12:31.9538017Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9540787Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-08-26T20:12:31.9543876Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-08-26T20:12:31.9546926Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-08-26T20:12:31.9550491Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9553442Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-08-26T20:12:31.9556568Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-08-26T20:12:31.9559517Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-08-26T20:12:31.9562529Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-08-26T20:12:31.9565534Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-08-26T20:12:31.9568664Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-08-26T20:12:31.9571704Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-08-26T20:12:31.9574913Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9577778Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-08-26T20:12:31.9580904Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-08-26T20:12:31.9583915Z adding 'torch/include/ATen/ops/special_psi.h' 2025-08-26T20:12:31.9587092Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9589921Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-08-26T20:12:31.9592988Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-08-26T20:12:31.9596105Z adding 'torch/include/ATen/ops/special_round.h' 2025-08-26T20:12:31.9599327Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9602178Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-08-26T20:12:31.9605340Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-08-26T20:12:31.9608605Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-08-26T20:12:31.9612302Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9615068Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-08-26T20:12:31.9617986Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-08-26T20:12:31.9620901Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-08-26T20:12:31.9623962Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-08-26T20:12:31.9626927Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-08-26T20:12:31.9630053Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-08-26T20:12:31.9633085Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-08-26T20:12:31.9636408Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9639219Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-08-26T20:12:31.9642218Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-08-26T20:12:31.9645143Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-08-26T20:12:31.9648978Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-08-26T20:12:31.9652018Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-08-26T20:12:31.9655189Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-08-26T20:12:31.9658606Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-08-26T20:12:31.9662004Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9665234Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9668065Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-08-26T20:12:31.9671098Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-08-26T20:12:31.9674068Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-08-26T20:12:31.9677234Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-08-26T20:12:31.9680184Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-08-26T20:12:31.9683498Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-08-26T20:12:31.9686953Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-08-26T20:12:31.9690260Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9693424Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9696343Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-08-26T20:12:31.9699472Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-08-26T20:12:31.9702450Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-08-26T20:12:31.9705561Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-08-26T20:12:31.9708615Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-08-26T20:12:31.9712037Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-08-26T20:12:31.9715489Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-08-26T20:12:31.9719076Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9722308Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9725481Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-08-26T20:12:31.9728651Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-08-26T20:12:31.9731812Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-08-26T20:12:31.9734957Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-08-26T20:12:31.9738116Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-08-26T20:12:31.9741688Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-08-26T20:12:31.9745305Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-08-26T20:12:31.9748671Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9751857Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9754957Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-08-26T20:12:31.9758133Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-08-26T20:12:31.9761175Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-08-26T20:12:31.9765036Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-08-26T20:12:31.9767683Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-08-26T20:12:31.9771180Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-08-26T20:12:31.9774271Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-08-26T20:12:31.9777938Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9780793Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-08-26T20:12:31.9784043Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-08-26T20:12:31.9787203Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-08-26T20:12:31.9790500Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9793601Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-08-26T20:12:31.9796675Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-08-26T20:12:31.9799950Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-08-26T20:12:31.9803312Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9806492Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-08-26T20:12:31.9809621Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-08-26T20:12:31.9812649Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-08-26T20:12:31.9815909Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-08-26T20:12:31.9818956Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-08-26T20:12:31.9822219Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-08-26T20:12:31.9825427Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-08-26T20:12:31.9828952Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9832140Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9835195Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-08-26T20:12:31.9838402Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-08-26T20:12:31.9841420Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-08-26T20:12:31.9844683Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-08-26T20:12:31.9848050Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-08-26T20:12:31.9851622Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-08-26T20:12:31.9854952Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-08-26T20:12:31.9858458Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9861452Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-08-26T20:12:31.9864900Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-08-26T20:12:31.9868384Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-08-26T20:12:31.9871776Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9875048Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9878011Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-08-26T20:12:31.9881199Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-08-26T20:12:31.9884262Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-08-26T20:12:31.9887520Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-08-26T20:12:31.9890672Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-08-26T20:12:31.9894123Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-08-26T20:12:31.9897616Z adding 'torch/include/ATen/ops/split.h' 2025-08-26T20:12:31.9900947Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9904160Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9907495Z adding 'torch/include/ATen/ops/split_copy.h' 2025-08-26T20:12:31.9910882Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9914289Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9917193Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-08-26T20:12:31.9920545Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-08-26T20:12:31.9923592Z adding 'torch/include/ATen/ops/split_native.h' 2025-08-26T20:12:31.9926995Z adding 'torch/include/ATen/ops/split_ops.h' 2025-08-26T20:12:31.9930350Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-08-26T20:12:31.9933712Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9937183Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-08-26T20:12:31.9940544Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:31.9943926Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9946996Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-08-26T20:12:31.9950313Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-08-26T20:12:31.9953758Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-08-26T20:12:31.9956696Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-08-26T20:12:31.9995087Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-08-26T20:12:31.9995209Z adding 'torch/include/ATen/ops/sqrt.h' 2025-08-26T20:12:31.9995516Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:31.9995654Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-08-26T20:12:31.9995792Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-08-26T20:12:31.9995913Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-08-26T20:12:31.9996047Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-08-26T20:12:31.9996155Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-08-26T20:12:31.9996261Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-08-26T20:12:31.9996363Z adding 'torch/include/ATen/ops/square.h' 2025-08-26T20:12:31.9996608Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:31.9998238Z adding 'torch/include/ATen/ops/square_native.h' 2025-08-26T20:12:32.0001487Z adding 'torch/include/ATen/ops/square_ops.h' 2025-08-26T20:12:32.0004605Z adding 'torch/include/ATen/ops/squeeze.h' 2025-08-26T20:12:32.0008213Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0011320Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0014692Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-08-26T20:12:32.0018249Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0021600Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0024451Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-08-26T20:12:32.0028033Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-08-26T20:12:32.0031418Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-08-26T20:12:32.0034866Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-08-26T20:12:32.0038125Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-08-26T20:12:32.0041521Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0044499Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-08-26T20:12:32.0047902Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-08-26T20:12:32.0050969Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-08-26T20:12:32.0054203Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-08-26T20:12:32.0057338Z adding 'torch/include/ATen/ops/stack.h' 2025-08-26T20:12:32.0060572Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0063437Z adding 'torch/include/ATen/ops/stack_native.h' 2025-08-26T20:12:32.0066610Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-08-26T20:12:32.0070080Z adding 'torch/include/ATen/ops/std.h' 2025-08-26T20:12:32.0073469Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0076653Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-08-26T20:12:32.0079766Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-08-26T20:12:32.0083096Z adding 'torch/include/ATen/ops/std_mean.h' 2025-08-26T20:12:32.0086605Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0089813Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0092752Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-08-26T20:12:32.0095855Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-08-26T20:12:32.0098885Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-08-26T20:12:32.0102477Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-08-26T20:12:32.0105787Z adding 'torch/include/ATen/ops/std_native.h' 2025-08-26T20:12:32.0109508Z adding 'torch/include/ATen/ops/std_ops.h' 2025-08-26T20:12:32.0113067Z adding 'torch/include/ATen/ops/stft.h' 2025-08-26T20:12:32.0116445Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0119427Z adding 'torch/include/ATen/ops/stft_native.h' 2025-08-26T20:12:32.0122794Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-08-26T20:12:32.0126004Z adding 'torch/include/ATen/ops/stride.h' 2025-08-26T20:12:32.0129251Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0132188Z adding 'torch/include/ATen/ops/stride_native.h' 2025-08-26T20:12:32.0135590Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-08-26T20:12:32.0138778Z adding 'torch/include/ATen/ops/sub.h' 2025-08-26T20:12:32.0142093Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0145273Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0148173Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-08-26T20:12:32.0151217Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-08-26T20:12:32.0154247Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-08-26T20:12:32.0157390Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-08-26T20:12:32.0160526Z adding 'torch/include/ATen/ops/sub_native.h' 2025-08-26T20:12:32.0163951Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-08-26T20:12:32.0167331Z adding 'torch/include/ATen/ops/subtract.h' 2025-08-26T20:12:32.0170680Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0173555Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-08-26T20:12:32.0176859Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-08-26T20:12:32.0180248Z adding 'torch/include/ATen/ops/sum.h' 2025-08-26T20:12:32.0183571Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0186742Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0189822Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0192857Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-08-26T20:12:32.0195938Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-08-26T20:12:32.0198940Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-08-26T20:12:32.0202309Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-08-26T20:12:32.0205578Z adding 'torch/include/ATen/ops/sum_native.h' 2025-08-26T20:12:32.0209145Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-08-26T20:12:32.0212353Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-08-26T20:12:32.0215574Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0218538Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-08-26T20:12:32.0221603Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-08-26T20:12:32.0224679Z adding 'torch/include/ATen/ops/svd.h' 2025-08-26T20:12:32.0228056Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0230926Z adding 'torch/include/ATen/ops/svd_native.h' 2025-08-26T20:12:32.0239777Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-08-26T20:12:32.0239920Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-08-26T20:12:32.0241319Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0244007Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-08-26T20:12:32.0247875Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-08-26T20:12:32.0250986Z adding 'torch/include/ATen/ops/swapdims.h' 2025-08-26T20:12:32.0254452Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0257363Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-08-26T20:12:32.0260695Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-08-26T20:12:32.0263801Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-08-26T20:12:32.0267209Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0270143Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-08-26T20:12:32.0273567Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0276549Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-08-26T20:12:32.0279909Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-08-26T20:12:32.0282916Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-08-26T20:12:32.0286086Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-08-26T20:12:32.0289229Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-08-26T20:12:32.0292497Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0301025Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-08-26T20:12:32.0304116Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-08-26T20:12:32.0307266Z adding 'torch/include/ATen/ops/sym_size.h' 2025-08-26T20:12:32.0310542Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0313584Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-08-26T20:12:32.0316821Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-08-26T20:12:32.0319983Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-08-26T20:12:32.0323266Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0326269Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-08-26T20:12:32.0329510Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-08-26T20:12:32.0332526Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-08-26T20:12:32.0335871Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0339794Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-08-26T20:12:32.0342189Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-08-26T20:12:32.0345169Z adding 'torch/include/ATen/ops/t.h' 2025-08-26T20:12:32.0348423Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0351494Z adding 'torch/include/ATen/ops/t_copy.h' 2025-08-26T20:12:32.0354718Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0358148Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0360851Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-08-26T20:12:32.0364140Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-08-26T20:12:32.0367251Z adding 'torch/include/ATen/ops/t_native.h' 2025-08-26T20:12:32.0370609Z adding 'torch/include/ATen/ops/t_ops.h' 2025-08-26T20:12:32.0373820Z adding 'torch/include/ATen/ops/take.h' 2025-08-26T20:12:32.0377026Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-08-26T20:12:32.0380873Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0383598Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-08-26T20:12:32.0387057Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-08-26T20:12:32.0390177Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-08-26T20:12:32.0393399Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-08-26T20:12:32.0397315Z adding 'torch/include/ATen/ops/take_native.h' 2025-08-26T20:12:32.0400624Z adding 'torch/include/ATen/ops/take_ops.h' 2025-08-26T20:12:32.0403813Z adding 'torch/include/ATen/ops/tan.h' 2025-08-26T20:12:32.0407202Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0410252Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-08-26T20:12:32.0413687Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-08-26T20:12:32.0416433Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-08-26T20:12:32.0419703Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-08-26T20:12:32.0422726Z adding 'torch/include/ATen/ops/tan_native.h' 2025-08-26T20:12:32.0426078Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-08-26T20:12:32.0429208Z adding 'torch/include/ATen/ops/tanh.h' 2025-08-26T20:12:32.0432498Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-08-26T20:12:32.0435861Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0439052Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-08-26T20:12:32.0442079Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-08-26T20:12:32.0445138Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-08-26T20:12:32.0448462Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-08-26T20:12:32.0451545Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-08-26T20:12:32.0454817Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-08-26T20:12:32.0458116Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0461312Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-08-26T20:12:32.0464777Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-08-26T20:12:32.0468033Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-08-26T20:12:32.0471144Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-08-26T20:12:32.0474416Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-08-26T20:12:32.0477756Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-08-26T20:12:32.0481093Z adding 'torch/include/ATen/ops/tensor.h' 2025-08-26T20:12:32.0484576Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-08-26T20:12:32.0488191Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0491315Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-08-26T20:12:32.0494608Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-08-26T20:12:32.0497723Z adding 'torch/include/ATen/ops/tensordot.h' 2025-08-26T20:12:32.0501255Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0504125Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-08-26T20:12:32.0507368Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-08-26T20:12:32.0510886Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-08-26T20:12:32.0514391Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0517474Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-08-26T20:12:32.0520758Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-08-26T20:12:32.0523960Z adding 'torch/include/ATen/ops/threshold.h' 2025-08-26T20:12:32.0527238Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-08-26T20:12:32.0530629Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0533542Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-08-26T20:12:32.0536669Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-08-26T20:12:32.0539580Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-08-26T20:12:32.0542719Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-08-26T20:12:32.0545787Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-08-26T20:12:32.0549291Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-08-26T20:12:32.0552725Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0555819Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-08-26T20:12:32.0558899Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-08-26T20:12:32.0562044Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-08-26T20:12:32.0564952Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-08-26T20:12:32.0568053Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-08-26T20:12:32.0571321Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-08-26T20:12:32.0574467Z adding 'torch/include/ATen/ops/tile.h' 2025-08-26T20:12:32.0577721Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0580629Z adding 'torch/include/ATen/ops/tile_native.h' 2025-08-26T20:12:32.0583678Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-08-26T20:12:32.0586612Z adding 'torch/include/ATen/ops/to.h' 2025-08-26T20:12:32.0589928Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0592778Z adding 'torch/include/ATen/ops/to_dense.h' 2025-08-26T20:12:32.0595819Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-08-26T20:12:32.0599112Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0602079Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-08-26T20:12:32.0605331Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-08-26T20:12:32.0608640Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0611488Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-08-26T20:12:32.0614614Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-08-26T20:12:32.0617817Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-08-26T20:12:32.0620867Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-08-26T20:12:32.0624111Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0627014Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-08-26T20:12:32.0630108Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-08-26T20:12:32.0633325Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0636305Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-08-26T20:12:32.0639236Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-08-26T20:12:32.0642412Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-08-26T20:12:32.0645535Z adding 'torch/include/ATen/ops/to_native.h' 2025-08-26T20:12:32.0649028Z adding 'torch/include/ATen/ops/to_ops.h' 2025-08-26T20:12:32.0652509Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-08-26T20:12:32.0655929Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0658861Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-08-26T20:12:32.0662046Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-08-26T20:12:32.0665015Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-08-26T20:12:32.0667929Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-08-26T20:12:32.0671160Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0674052Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-08-26T20:12:32.0677188Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-08-26T20:12:32.0680169Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-08-26T20:12:32.0683418Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0686337Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-08-26T20:12:32.0689430Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-08-26T20:12:32.0692674Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0695498Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-08-26T20:12:32.0698751Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0701587Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-08-26T20:12:32.0704650Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-08-26T20:12:32.0707787Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-08-26T20:12:32.0711041Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0714042Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-08-26T20:12:32.0717256Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-08-26T20:12:32.0720363Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-08-26T20:12:32.0723932Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-08-26T20:12:32.0727602Z adding 'torch/include/ATen/ops/topk.h' 2025-08-26T20:12:32.0731239Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0734336Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-08-26T20:12:32.0737547Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-08-26T20:12:32.0740675Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-08-26T20:12:32.0743847Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-08-26T20:12:32.0747033Z adding 'torch/include/ATen/ops/topk_native.h' 2025-08-26T20:12:32.0750296Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-08-26T20:12:32.0753620Z adding 'torch/include/ATen/ops/trace.h' 2025-08-26T20:12:32.0756838Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-08-26T20:12:32.0760205Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0763137Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-08-26T20:12:32.0766416Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-08-26T20:12:32.0769738Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0772720Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-08-26T20:12:32.0775933Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-08-26T20:12:32.0778918Z adding 'torch/include/ATen/ops/trace_native.h' 2025-08-26T20:12:32.0782212Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-08-26T20:12:32.0785342Z adding 'torch/include/ATen/ops/transpose.h' 2025-08-26T20:12:32.0788642Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0791800Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0794797Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-08-26T20:12:32.0798212Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0801416Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0804382Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-08-26T20:12:32.0807679Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-08-26T20:12:32.0810857Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-08-26T20:12:32.0814117Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-08-26T20:12:32.0817353Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-08-26T20:12:32.0820739Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0823657Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-08-26T20:12:32.0826990Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-08-26T20:12:32.0830106Z adding 'torch/include/ATen/ops/trapz.h' 2025-08-26T20:12:32.0833589Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0836392Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-08-26T20:12:32.0839753Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-08-26T20:12:32.0842998Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-08-26T20:12:32.0846575Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0849704Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-08-26T20:12:32.0852833Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-08-26T20:12:32.0855961Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-08-26T20:12:32.0859171Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-08-26T20:12:32.0862407Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-08-26T20:12:32.0865658Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-08-26T20:12:32.0868867Z adding 'torch/include/ATen/ops/tril.h' 2025-08-26T20:12:32.0872292Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0875193Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-08-26T20:12:32.0878425Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-08-26T20:12:32.0881715Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-08-26T20:12:32.0885132Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0888316Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-08-26T20:12:32.0891577Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-08-26T20:12:32.0894692Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-08-26T20:12:32.0898255Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-08-26T20:12:32.0901517Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-08-26T20:12:32.0904635Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-08-26T20:12:32.0907827Z adding 'torch/include/ATen/ops/tril_native.h' 2025-08-26T20:12:32.0911020Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-08-26T20:12:32.0914325Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-08-26T20:12:32.0917692Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0920626Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-08-26T20:12:32.0923903Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-08-26T20:12:32.0927099Z adding 'torch/include/ATen/ops/triu.h' 2025-08-26T20:12:32.0930603Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0933537Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-08-26T20:12:32.0936768Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-08-26T20:12:32.0940316Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-08-26T20:12:32.0943420Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.0946495Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-08-26T20:12:32.0949679Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-08-26T20:12:32.0953084Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-08-26T20:12:32.0956089Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-08-26T20:12:32.0959317Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-08-26T20:12:32.0962513Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-08-26T20:12:32.0965902Z adding 'torch/include/ATen/ops/triu_native.h' 2025-08-26T20:12:32.0976342Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-08-26T20:12:32.0976476Z adding 'torch/include/ATen/ops/true_divide.h' 2025-08-26T20:12:32.0976747Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.0979320Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-08-26T20:12:32.0982962Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-08-26T20:12:32.0986139Z adding 'torch/include/ATen/ops/trunc.h' 2025-08-26T20:12:32.0989495Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.0992395Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-08-26T20:12:32.1005705Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-08-26T20:12:32.1005839Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-08-26T20:12:32.1006092Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-08-26T20:12:32.1008090Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-08-26T20:12:32.1011672Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-08-26T20:12:32.1015091Z adding 'torch/include/ATen/ops/type_as.h' 2025-08-26T20:12:32.1018628Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1021870Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-08-26T20:12:32.1025563Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-08-26T20:12:32.1029042Z adding 'torch/include/ATen/ops/unbind.h' 2025-08-26T20:12:32.1050500Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1050890Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1051008Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-08-26T20:12:32.1051278Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1051610Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1051746Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-08-26T20:12:32.1053404Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-08-26T20:12:32.1056491Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-08-26T20:12:32.1059658Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-08-26T20:12:32.1063115Z adding 'torch/include/ATen/ops/unflatten.h' 2025-08-26T20:12:32.1066488Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1069632Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-08-26T20:12:32.1072931Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1076159Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-08-26T20:12:32.1079565Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-08-26T20:12:32.1082439Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-08-26T20:12:32.1085929Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-08-26T20:12:32.1089007Z adding 'torch/include/ATen/ops/unfold.h' 2025-08-26T20:12:32.1092472Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-08-26T20:12:32.1096062Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1099092Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-08-26T20:12:32.1102173Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-08-26T20:12:32.1105151Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-08-26T20:12:32.1108339Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-08-26T20:12:32.1111532Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-08-26T20:12:32.1115002Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1118209Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1120937Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-08-26T20:12:32.1124130Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-08-26T20:12:32.1127507Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-08-26T20:12:32.1130609Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-08-26T20:12:32.1133657Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-08-26T20:12:32.1137402Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-08-26T20:12:32.1140548Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-08-26T20:12:32.1143700Z adding 'torch/include/ATen/ops/uniform.h' 2025-08-26T20:12:32.1147013Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1149986Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-08-26T20:12:32.1153063Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-08-26T20:12:32.1156217Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-08-26T20:12:32.1159174Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-08-26T20:12:32.1162426Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-08-26T20:12:32.1165799Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-08-26T20:12:32.1169144Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1172128Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-08-26T20:12:32.1175433Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-08-26T20:12:32.1178342Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-08-26T20:12:32.1181569Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-08-26T20:12:32.1184958Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-08-26T20:12:32.1188313Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1191425Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-08-26T20:12:32.1194853Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1197866Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-08-26T20:12:32.1200797Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-08-26T20:12:32.1203814Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-08-26T20:12:32.1207184Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-08-26T20:12:32.1210322Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-08-26T20:12:32.1213605Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-08-26T20:12:32.1216658Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-08-26T20:12:32.1219775Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-08-26T20:12:32.1222875Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-08-26T20:12:32.1226102Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1228921Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-08-26T20:12:32.1232129Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-08-26T20:12:32.1235463Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-08-26T20:12:32.1238741Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1241626Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-08-26T20:12:32.1244795Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-08-26T20:12:32.1248339Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-08-26T20:12:32.1252179Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1255178Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-08-26T20:12:32.1258272Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-08-26T20:12:32.1261278Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-08-26T20:12:32.1264493Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1267393Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-08-26T20:12:32.1270652Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1273788Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1276530Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-08-26T20:12:32.1279780Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-08-26T20:12:32.1282710Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-08-26T20:12:32.1286082Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-08-26T20:12:32.1289823Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-08-26T20:12:32.1293612Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-08-26T20:12:32.1297460Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1300610Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-08-26T20:12:32.1303941Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-08-26T20:12:32.1307146Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-08-26T20:12:32.1310546Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-08-26T20:12:32.1313730Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-08-26T20:12:32.1316909Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-08-26T20:12:32.1320449Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1323563Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1326877Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-08-26T20:12:32.1330357Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-08-26T20:12:32.1333478Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-08-26T20:12:32.1336704Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-08-26T20:12:32.1339796Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-08-26T20:12:32.1343307Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-08-26T20:12:32.1347338Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-08-26T20:12:32.1351346Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-08-26T20:12:32.1355072Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1358055Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-08-26T20:12:32.1361479Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-08-26T20:12:32.1364691Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-08-26T20:12:32.1368191Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-08-26T20:12:32.1371574Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-08-26T20:12:32.1374929Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-08-26T20:12:32.1378235Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1381565Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1384686Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1387947Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-08-26T20:12:32.1391364Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-08-26T20:12:32.1394518Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-08-26T20:12:32.1397727Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-08-26T20:12:32.1400983Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-08-26T20:12:32.1404486Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-08-26T20:12:32.1408386Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-08-26T20:12:32.1412346Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-08-26T20:12:32.1416080Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1419033Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-08-26T20:12:32.1422350Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-08-26T20:12:32.1425430Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-08-26T20:12:32.1428860Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-08-26T20:12:32.1433172Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-08-26T20:12:32.1435789Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-08-26T20:12:32.1439171Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1442243Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1445560Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-08-26T20:12:32.1448820Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-08-26T20:12:32.1452199Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-08-26T20:12:32.1455361Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-08-26T20:12:32.1458517Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-08-26T20:12:32.1461928Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-08-26T20:12:32.1465483Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-08-26T20:12:32.1469545Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-08-26T20:12:32.1473725Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1477188Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-08-26T20:12:32.1480870Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-08-26T20:12:32.1484326Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-08-26T20:12:32.1488167Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-08-26T20:12:32.1491273Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-08-26T20:12:32.1494850Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-08-26T20:12:32.1498279Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1501341Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1504406Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-08-26T20:12:32.1507801Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-08-26T20:12:32.1510833Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-08-26T20:12:32.1514352Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-08-26T20:12:32.1517529Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-08-26T20:12:32.1520703Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-08-26T20:12:32.1524636Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-08-26T20:12:32.1528586Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-08-26T20:12:32.1532159Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1535208Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-08-26T20:12:32.1538472Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-08-26T20:12:32.1541722Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-08-26T20:12:32.1544939Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-08-26T20:12:32.1548007Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-08-26T20:12:32.1551261Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-08-26T20:12:32.1554639Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1557755Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1561791Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1564964Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-08-26T20:12:32.1568441Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-08-26T20:12:32.1571553Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-08-26T20:12:32.1574872Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-08-26T20:12:32.1577981Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-08-26T20:12:32.1581397Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-08-26T20:12:32.1585076Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-08-26T20:12:32.1588833Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-08-26T20:12:32.1592536Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1595601Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-08-26T20:12:32.1598737Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-08-26T20:12:32.1601800Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-08-26T20:12:32.1605061Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-08-26T20:12:32.1608237Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-08-26T20:12:32.1611652Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-08-26T20:12:32.1615268Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1618193Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1621315Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-08-26T20:12:32.1624543Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-08-26T20:12:32.1627572Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-08-26T20:12:32.1630889Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-08-26T20:12:32.1634012Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-08-26T20:12:32.1637248Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-08-26T20:12:32.1640991Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-08-26T20:12:32.1644852Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-08-26T20:12:32.1648631Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1651786Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-08-26T20:12:32.1661273Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-08-26T20:12:32.1664466Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-08-26T20:12:32.1667749Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-08-26T20:12:32.1670992Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-08-26T20:12:32.1674316Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-08-26T20:12:32.1677619Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1680618Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1683711Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-08-26T20:12:32.1687041Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-08-26T20:12:32.1690254Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-08-26T20:12:32.1693415Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-08-26T20:12:32.1696447Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-08-26T20:12:32.1699745Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-08-26T20:12:32.1703051Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-08-26T20:12:32.1706446Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1709299Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-08-26T20:12:32.1712505Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-08-26T20:12:32.1715294Z adding 'torch/include/ATen/ops/values.h' 2025-08-26T20:12:32.1718436Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1721329Z adding 'torch/include/ATen/ops/values_copy.h' 2025-08-26T20:12:32.1724638Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1727890Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1730674Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-08-26T20:12:32.1733738Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-08-26T20:12:32.1736692Z adding 'torch/include/ATen/ops/values_native.h' 2025-08-26T20:12:32.1739785Z adding 'torch/include/ATen/ops/values_ops.h' 2025-08-26T20:12:32.1742857Z adding 'torch/include/ATen/ops/vander.h' 2025-08-26T20:12:32.1746036Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1748940Z adding 'torch/include/ATen/ops/vander_native.h' 2025-08-26T20:12:32.1752022Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-08-26T20:12:32.1755265Z adding 'torch/include/ATen/ops/var.h' 2025-08-26T20:12:32.1758657Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1761672Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-08-26T20:12:32.1764766Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-08-26T20:12:32.1768288Z adding 'torch/include/ATen/ops/var_mean.h' 2025-08-26T20:12:32.1771625Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1774647Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1777865Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-08-26T20:12:32.1780849Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-08-26T20:12:32.1783998Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-08-26T20:12:32.1787636Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-08-26T20:12:32.1791174Z adding 'torch/include/ATen/ops/var_native.h' 2025-08-26T20:12:32.1795221Z adding 'torch/include/ATen/ops/var_ops.h' 2025-08-26T20:12:32.1798485Z adding 'torch/include/ATen/ops/vdot.h' 2025-08-26T20:12:32.1801868Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1804804Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-08-26T20:12:32.1808210Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-08-26T20:12:32.1811857Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-08-26T20:12:32.1814445Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-08-26T20:12:32.1817886Z adding 'torch/include/ATen/ops/view.h' 2025-08-26T20:12:32.1820620Z adding 'torch/include/ATen/ops/view_as.h' 2025-08-26T20:12:32.1831659Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-08-26T20:12:32.1831823Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-08-26T20:12:32.1832154Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1834040Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1875571Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-08-26T20:12:32.1875879Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-08-26T20:12:32.1876055Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-08-26T20:12:32.1876240Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-08-26T20:12:32.1876434Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-08-26T20:12:32.1876586Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-08-26T20:12:32.1876776Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-08-26T20:12:32.1877042Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1877165Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-08-26T20:12:32.1877285Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-08-26T20:12:32.1877399Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-08-26T20:12:32.1877543Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-08-26T20:12:32.1878364Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1881734Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1884417Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-08-26T20:12:32.1887842Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-08-26T20:12:32.1890954Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-08-26T20:12:32.1894203Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-08-26T20:12:32.1897848Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-08-26T20:12:32.1901076Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-08-26T20:12:32.1904172Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-08-26T20:12:32.1907347Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1910792Z adding 'torch/include/ATen/ops/view_copy.h' 2025-08-26T20:12:32.1914252Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1917416Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1920260Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-08-26T20:12:32.1923522Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-08-26T20:12:32.1926880Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-08-26T20:12:32.1929952Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-08-26T20:12:32.1933045Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-08-26T20:12:32.1935960Z adding 'torch/include/ATen/ops/view_native.h' 2025-08-26T20:12:32.1939088Z adding 'torch/include/ATen/ops/view_ops.h' 2025-08-26T20:12:32.1942122Z adding 'torch/include/ATen/ops/vsplit.h' 2025-08-26T20:12:32.1945327Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1948188Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-08-26T20:12:32.1951417Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-08-26T20:12:32.1954442Z adding 'torch/include/ATen/ops/vstack.h' 2025-08-26T20:12:32.1957698Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1960544Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-08-26T20:12:32.1963668Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-08-26T20:12:32.1966969Z adding 'torch/include/ATen/ops/where.h' 2025-08-26T20:12:32.1970775Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.1973811Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-08-26T20:12:32.1976836Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-08-26T20:12:32.1979877Z adding 'torch/include/ATen/ops/where_native.h' 2025-08-26T20:12:32.1983451Z adding 'torch/include/ATen/ops/where_ops.h' 2025-08-26T20:12:32.1986785Z adding 'torch/include/ATen/ops/xlogy.h' 2025-08-26T20:12:32.1990242Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.1993389Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T20:12:32.1996278Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-08-26T20:12:32.1999283Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-08-26T20:12:32.2002233Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-08-26T20:12:32.2012215Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-08-26T20:12:32.2019676Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-08-26T20:12:32.2019799Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-08-26T20:12:32.2022808Z adding 'torch/include/ATen/ops/xor.h' 2025-08-26T20:12:32.2063545Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-08-26T20:12:32.2063684Z adding 'torch/include/ATen/ops/xor_native.h' 2025-08-26T20:12:32.2063802Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-08-26T20:12:32.2063894Z adding 'torch/include/ATen/ops/zero.h' 2025-08-26T20:12:32.2064127Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.2064255Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-08-26T20:12:32.2064481Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-08-26T20:12:32.2064609Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-08-26T20:12:32.2064721Z adding 'torch/include/ATen/ops/zero_native.h' 2025-08-26T20:12:32.2064840Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-08-26T20:12:32.2064945Z adding 'torch/include/ATen/ops/zeros.h' 2025-08-26T20:12:32.2066227Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.2069659Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-08-26T20:12:32.2073013Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-08-26T20:12:32.2076483Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-26T20:12:32.2079372Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-08-26T20:12:32.2082854Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-08-26T20:12:32.2086040Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-08-26T20:12:32.2089782Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-08-26T20:12:32.2096308Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-08-26T20:12:32.2101401Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-08-26T20:12:32.2105763Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-08-26T20:12:32.2108673Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-08-26T20:12:32.2111522Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-08-26T20:12:32.2114749Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-08-26T20:12:32.2118641Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-08-26T20:12:32.2121954Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-08-26T20:12:32.2126023Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-08-26T20:12:32.2129661Z adding 'torch/include/THC/THCAtomics.cuh' 2025-08-26T20:12:32.2132405Z adding 'torch/include/THC/THCDeviceUtils.cuh' 2025-08-26T20:12:32.2141320Z adding 'torch/include/c10/core/Allocator.h' 2025-08-26T20:12:32.2148100Z adding 'torch/include/c10/core/AllocatorConfig.h' 2025-08-26T20:12:32.2151693Z adding 'torch/include/c10/core/AutogradState.h' 2025-08-26T20:12:32.2156378Z adding 'torch/include/c10/core/Backend.h' 2025-08-26T20:12:32.2159993Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-08-26T20:12:32.2163896Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-08-26T20:12:32.2167434Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-08-26T20:12:32.2170848Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-08-26T20:12:32.2174954Z adding 'torch/include/c10/core/Contiguity.h' 2025-08-26T20:12:32.2178555Z adding 'torch/include/c10/core/CopyBytes.h' 2025-08-26T20:12:32.2181542Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-08-26T20:12:32.2184698Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-08-26T20:12:32.2189051Z adding 'torch/include/c10/core/Device.h' 2025-08-26T20:12:32.2192276Z adding 'torch/include/c10/core/DeviceArray.h' 2025-08-26T20:12:32.2196952Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-08-26T20:12:32.2201101Z adding 'torch/include/c10/core/DeviceType.h' 2025-08-26T20:12:32.2214289Z adding 'torch/include/c10/core/DispatchKey.h' 2025-08-26T20:12:32.2231004Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-08-26T20:12:32.2236061Z adding 'torch/include/c10/core/DynamicCast.h' 2025-08-26T20:12:32.2240137Z adding 'torch/include/c10/core/Event.h' 2025-08-26T20:12:32.2244239Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-08-26T20:12:32.2247632Z adding 'torch/include/c10/core/GradMode.h' 2025-08-26T20:12:32.2251418Z adding 'torch/include/c10/core/InferenceMode.h' 2025-08-26T20:12:32.2254763Z adding 'torch/include/c10/core/Layout.h' 2025-08-26T20:12:32.2259933Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-08-26T20:12:32.2263181Z adding 'torch/include/c10/core/OptionalRef.h' 2025-08-26T20:12:32.2266835Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-08-26T20:12:32.2270107Z adding 'torch/include/c10/core/QEngine.h' 2025-08-26T20:12:32.2273231Z adding 'torch/include/c10/core/QScheme.h' 2025-08-26T20:12:32.2276675Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-08-26T20:12:32.2280352Z adding 'torch/include/c10/core/SafePyObject.h' 2025-08-26T20:12:32.2286743Z adding 'torch/include/c10/core/Scalar.h' 2025-08-26T20:12:32.2294687Z adding 'torch/include/c10/core/ScalarType.h' 2025-08-26T20:12:32.2298510Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-08-26T20:12:32.2302963Z adding 'torch/include/c10/core/Storage.h' 2025-08-26T20:12:32.2308814Z adding 'torch/include/c10/core/StorageImpl.h' 2025-08-26T20:12:32.2314009Z adding 'torch/include/c10/core/Stream.h' 2025-08-26T20:12:32.2318568Z adding 'torch/include/c10/core/StreamGuard.h' 2025-08-26T20:12:32.2322536Z adding 'torch/include/c10/core/SymBool.h' 2025-08-26T20:12:32.2326476Z adding 'torch/include/c10/core/SymFloat.h' 2025-08-26T20:12:32.2333003Z adding 'torch/include/c10/core/SymInt.h' 2025-08-26T20:12:32.2337066Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-08-26T20:12:32.2341198Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-08-26T20:12:32.2345720Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-08-26T20:12:32.2388564Z adding 'torch/include/c10/core/TensorImpl.h' 2025-08-26T20:12:32.2401245Z adding 'torch/include/c10/core/TensorOptions.h' 2025-08-26T20:12:32.2405292Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-08-26T20:12:32.2408713Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-08-26T20:12:32.2411797Z adding 'torch/include/c10/core/alignment.h' 2025-08-26T20:12:32.2415521Z adding 'torch/include/c10/core/thread_pool.h' 2025-08-26T20:12:32.2419915Z adding 'torch/include/c10/core/impl/COW.h' 2025-08-26T20:12:32.2423413Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-08-26T20:12:32.2430021Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-08-26T20:12:32.2434061Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-08-26T20:12:32.2437405Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-08-26T20:12:32.2441002Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-08-26T20:12:32.2447980Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-08-26T20:12:32.2452220Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-08-26T20:12:32.2457661Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-08-26T20:12:32.2462426Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-08-26T20:12:32.2468171Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-08-26T20:12:32.2471773Z adding 'torch/include/c10/core/impl/PyInterpreterHooks.h' 2025-08-26T20:12:32.2476046Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-08-26T20:12:32.2479648Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-08-26T20:12:32.2485080Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-08-26T20:12:32.2489142Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-08-26T20:12:32.2493269Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-08-26T20:12:32.2496823Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-08-26T20:12:32.2501588Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-08-26T20:12:32.2506158Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-08-26T20:12:32.2514306Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-08-26T20:12:32.2518605Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-08-26T20:12:32.2523509Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-08-26T20:12:32.2527738Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-08-26T20:12:32.2531787Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-08-26T20:12:32.2535558Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-08-26T20:12:32.2540513Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-08-26T20:12:32.2544216Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-08-26T20:12:32.2547728Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-08-26T20:12:32.2550754Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-08-26T20:12:32.2556315Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-08-26T20:12:32.2560410Z adding 'torch/include/c10/cuda/driver_api.h' 2025-08-26T20:12:32.2566218Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-08-26T20:12:32.2569385Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-08-26T20:12:32.2572253Z adding 'torch/include/c10/cuda/impl/cuda_cmake_macros.h' 2025-08-26T20:12:32.2575676Z adding 'torch/include/c10/macros/Export.h' 2025-08-26T20:12:32.2578387Z adding 'torch/include/c10/macros/Macros.h' 2025-08-26T20:12:32.2581082Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-08-26T20:12:32.2585599Z adding 'torch/include/c10/metal/atomic.h' 2025-08-26T20:12:32.2588866Z adding 'torch/include/c10/metal/common.h' 2025-08-26T20:12:32.2592931Z adding 'torch/include/c10/metal/expm1f.h' 2025-08-26T20:12:32.2599061Z adding 'torch/include/c10/metal/indexing.h' 2025-08-26T20:12:32.2603059Z adding 'torch/include/c10/metal/random.h' 2025-08-26T20:12:32.2607783Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-08-26T20:12:32.2622990Z adding 'torch/include/c10/metal/special_math.h' 2025-08-26T20:12:32.2628669Z adding 'torch/include/c10/metal/utils.h' 2025-08-26T20:12:32.2633661Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-08-26T20:12:32.2637750Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-08-26T20:12:32.2642023Z adding 'torch/include/c10/test/util/Macros.h' 2025-08-26T20:12:32.2647422Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-08-26T20:12:32.2654194Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-08-26T20:12:32.2661667Z adding 'torch/include/c10/util/AbortHandler.h' 2025-08-26T20:12:32.2665803Z adding 'torch/include/c10/util/AlignOf.h' 2025-08-26T20:12:32.2670005Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-08-26T20:12:32.2672790Z adding 'torch/include/c10/util/Array.h' 2025-08-26T20:12:32.2678012Z adding 'torch/include/c10/util/ArrayRef.h' 2025-08-26T20:12:32.2681122Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-08-26T20:12:32.2685602Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-08-26T20:12:32.2688791Z adding 'torch/include/c10/util/BFloat16.h' 2025-08-26T20:12:32.2691693Z adding 'torch/include/c10/util/Backtrace.h' 2025-08-26T20:12:32.2695332Z adding 'torch/include/c10/util/Bitset.h' 2025-08-26T20:12:32.2698825Z adding 'torch/include/c10/util/C++17.h' 2025-08-26T20:12:32.2702240Z adding 'torch/include/c10/util/CallOnce.h' 2025-08-26T20:12:32.2707278Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-08-26T20:12:32.2710885Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-08-26T20:12:32.2714479Z adding 'torch/include/c10/util/Deprecated.h' 2025-08-26T20:12:32.2717638Z adding 'torch/include/c10/util/DimVector.h' 2025-08-26T20:12:32.2720896Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-08-26T20:12:32.2724924Z adding 'torch/include/c10/util/Enumerate.h' 2025-08-26T20:12:32.2735340Z adding 'torch/include/c10/util/Exception.h' 2025-08-26T20:12:32.2740030Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-08-26T20:12:32.2743704Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-08-26T20:12:32.2746855Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-08-26T20:12:32.2751782Z adding 'torch/include/c10/util/Flags.h' 2025-08-26T20:12:32.2754925Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-08-26T20:12:32.2757622Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-08-26T20:12:32.2760281Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-08-26T20:12:32.2763051Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-08-26T20:12:32.2765827Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-08-26T20:12:32.2768380Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-08-26T20:12:32.2771048Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-08-26T20:12:32.2773759Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-08-26T20:12:32.2776379Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-08-26T20:12:32.2779015Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-08-26T20:12:32.2781734Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-08-26T20:12:32.2785276Z adding 'torch/include/c10/util/FunctionRef.h' 2025-08-26T20:12:32.2788798Z adding 'torch/include/c10/util/Gauge.h' 2025-08-26T20:12:32.2791229Z adding 'torch/include/c10/util/Half-inl.h' 2025-08-26T20:12:32.2794520Z adding 'torch/include/c10/util/Half.h' 2025-08-26T20:12:32.2797634Z adding 'torch/include/c10/util/IdWrapper.h' 2025-08-26T20:12:32.2801851Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-08-26T20:12:32.2805188Z adding 'torch/include/c10/util/Lazy.h' 2025-08-26T20:12:32.2810123Z adding 'torch/include/c10/util/LeftRight.h' 2025-08-26T20:12:32.2813568Z adding 'torch/include/c10/util/Load.h' 2025-08-26T20:12:32.2819607Z adding 'torch/include/c10/util/Logging.h' 2025-08-26T20:12:32.2823738Z adding 'torch/include/c10/util/MathConstants.h' 2025-08-26T20:12:32.2828038Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-08-26T20:12:32.2832848Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-08-26T20:12:32.2836398Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-08-26T20:12:32.2839686Z adding 'torch/include/c10/util/Optional.h' 2025-08-26T20:12:32.2844170Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-08-26T20:12:32.2847438Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-08-26T20:12:32.2853032Z adding 'torch/include/c10/util/Registry.h' 2025-08-26T20:12:32.2856636Z adding 'torch/include/c10/util/ScopeExit.h' 2025-08-26T20:12:32.2860002Z adding 'torch/include/c10/util/Semaphore.h' 2025-08-26T20:12:32.2863427Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-08-26T20:12:32.2880859Z adding 'torch/include/c10/util/SmallVector.h' 2025-08-26T20:12:32.2886807Z adding 'torch/include/c10/util/StringUtil.h' 2025-08-26T20:12:32.2890466Z adding 'torch/include/c10/util/Synchronized.h' 2025-08-26T20:12:32.2894371Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-08-26T20:12:32.2898163Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-08-26T20:12:32.2901941Z adding 'torch/include/c10/util/Type.h' 2025-08-26T20:12:32.2906270Z adding 'torch/include/c10/util/TypeCast.h' 2025-08-26T20:12:32.2910413Z adding 'torch/include/c10/util/TypeIndex.h' 2025-08-26T20:12:32.2916849Z adding 'torch/include/c10/util/TypeList.h' 2025-08-26T20:12:32.2920503Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-08-26T20:12:32.2924226Z adding 'torch/include/c10/util/TypeTraits.h' 2025-08-26T20:12:32.2927563Z adding 'torch/include/c10/util/Unicode.h' 2025-08-26T20:12:32.2931580Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-08-26T20:12:32.2934894Z adding 'torch/include/c10/util/Unroll.h' 2025-08-26T20:12:32.2938641Z adding 'torch/include/c10/util/WaitCounter.h' 2025-08-26T20:12:32.2941979Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-08-26T20:12:32.2945696Z adding 'torch/include/c10/util/accumulate.h' 2025-08-26T20:12:32.2948571Z adding 'torch/include/c10/util/bit_cast.h' 2025-08-26T20:12:32.2951438Z adding 'torch/include/c10/util/bits.h' 2025-08-26T20:12:32.2954815Z adding 'torch/include/c10/util/complex.h' 2025-08-26T20:12:32.2960056Z adding 'torch/include/c10/util/complex_math.h' 2025-08-26T20:12:32.2963155Z adding 'torch/include/c10/util/complex_utils.h' 2025-08-26T20:12:32.2966489Z adding 'torch/include/c10/util/copysign.h' 2025-08-26T20:12:32.2969470Z adding 'torch/include/c10/util/env.h' 2025-08-26T20:12:32.2972458Z adding 'torch/include/c10/util/error.h' 2025-08-26T20:12:32.2990267Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-08-26T20:12:32.2994987Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-08-26T20:12:32.2998702Z adding 'torch/include/c10/util/generic_math.h' 2025-08-26T20:12:32.3004569Z adding 'torch/include/c10/util/hash.h' 2025-08-26T20:12:32.3010934Z adding 'torch/include/c10/util/int128.h' 2025-08-26T20:12:32.3024255Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-08-26T20:12:32.3029043Z adding 'torch/include/c10/util/irange.h' 2025-08-26T20:12:32.3039451Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-08-26T20:12:32.3044089Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-08-26T20:12:32.3048996Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-08-26T20:12:32.3052268Z adding 'torch/include/c10/util/numa.h' 2025-08-26T20:12:32.3070205Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-08-26T20:12:32.3075554Z adding 'torch/include/c10/util/overflows.h' 2025-08-26T20:12:32.3078706Z adding 'torch/include/c10/util/overloaded.h' 2025-08-26T20:12:32.3081477Z adding 'torch/include/c10/util/python_stub.h' 2025-08-26T20:12:32.3084138Z adding 'torch/include/c10/util/qint32.h' 2025-08-26T20:12:32.3086883Z adding 'torch/include/c10/util/qint8.h' 2025-08-26T20:12:32.3089562Z adding 'torch/include/c10/util/quint2x4.h' 2025-08-26T20:12:32.3092167Z adding 'torch/include/c10/util/quint4x2.h' 2025-08-26T20:12:32.3094794Z adding 'torch/include/c10/util/quint8.h' 2025-08-26T20:12:32.3098211Z adding 'torch/include/c10/util/safe_numerics.h' 2025-08-26T20:12:32.3102006Z adding 'torch/include/c10/util/signal_handler.h' 2025-08-26T20:12:32.3111092Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-08-26T20:12:32.3115001Z adding 'torch/include/c10/util/ssize.h' 2025-08-26T20:12:32.3118148Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-08-26T20:12:32.3122531Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-08-26T20:12:32.3125807Z adding 'torch/include/c10/util/strides.h' 2025-08-26T20:12:32.3128741Z adding 'torch/include/c10/util/string_utils.h' 2025-08-26T20:12:32.3135461Z adding 'torch/include/c10/util/string_view.h' 2025-08-26T20:12:32.3144923Z adding 'torch/include/c10/util/strong_type.h' 2025-08-26T20:12:32.3149206Z adding 'torch/include/c10/util/tempfile.h' 2025-08-26T20:12:32.3152138Z adding 'torch/include/c10/util/thread_name.h' 2025-08-26T20:12:32.3161202Z adding 'torch/include/c10/util/typeid.h' 2025-08-26T20:12:32.3164902Z adding 'torch/include/c10/util/win32-headers.h' 2025-08-26T20:12:32.3169001Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-08-26T20:12:32.3173809Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-08-26T20:12:32.3177137Z adding 'torch/include/c10/xpu/XPUException.h' 2025-08-26T20:12:32.3180258Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-08-26T20:12:32.3183288Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-08-26T20:12:32.3187877Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-08-26T20:12:32.3193178Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-08-26T20:12:32.3197653Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-08-26T20:12:32.3202289Z adding 'torch/include/caffe2/core/common.h' 2025-08-26T20:12:32.3205782Z adding 'torch/include/caffe2/core/macros.h' 2025-08-26T20:12:32.3209271Z adding 'torch/include/caffe2/core/timer.h' 2025-08-26T20:12:32.3214785Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-08-26T20:12:32.3218958Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-08-26T20:12:32.3222517Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-08-26T20:12:32.3265377Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-08-26T20:12:32.3268844Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-08-26T20:12:32.3272458Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-08-26T20:12:32.3278250Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-08-26T20:12:32.3281992Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-08-26T20:12:32.3285449Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-08-26T20:12:32.3290387Z adding 'torch/include/caffe2/serialize/versions.h' 2025-08-26T20:12:32.3295451Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-08-26T20:12:32.3298877Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-08-26T20:12:32.3302228Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-08-26T20:12:32.3306951Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-08-26T20:12:32.3310220Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-08-26T20:12:32.3316590Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-08-26T20:12:32.3320559Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-08-26T20:12:32.3324814Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-08-26T20:12:32.3328371Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-08-26T20:12:32.3333997Z adding 'torch/include/fmt/args.h' 2025-08-26T20:12:32.3373067Z adding 'torch/include/fmt/base.h' 2025-08-26T20:12:32.3400655Z adding 'torch/include/fmt/chrono.h' 2025-08-26T20:12:32.3412367Z adding 'torch/include/fmt/color.h' 2025-08-26T20:12:32.3420425Z adding 'torch/include/fmt/compile.h' 2025-08-26T20:12:32.3423918Z adding 'torch/include/fmt/core.h' 2025-08-26T20:12:32.3454935Z adding 'torch/include/fmt/format-inl.h' 2025-08-26T20:12:32.3516804Z adding 'torch/include/fmt/format.h' 2025-08-26T20:12:32.3527178Z adding 'torch/include/fmt/os.h' 2025-08-26T20:12:32.3531637Z adding 'torch/include/fmt/ostream.h' 2025-08-26T20:12:32.3540117Z adding 'torch/include/fmt/printf.h' 2025-08-26T20:12:32.3550357Z adding 'torch/include/fmt/ranges.h' 2025-08-26T20:12:32.3558941Z adding 'torch/include/fmt/std.h' 2025-08-26T20:12:32.3564825Z adding 'torch/include/fmt/xchar.h' 2025-08-26T20:12:32.3569447Z adding 'torch/include/fp16/bitcasts.h' 2025-08-26T20:12:32.3576159Z adding 'torch/include/fp16/fp16.h' 2025-08-26T20:12:32.3580594Z adding 'torch/include/fp16/psimd.h' 2025-08-26T20:12:32.3587556Z adding 'torch/include/google/protobuf/any.h' 2025-08-26T20:12:32.3593497Z adding 'torch/include/google/protobuf/any.pb.h' 2025-08-26T20:12:32.3605568Z adding 'torch/include/google/protobuf/api.pb.h' 2025-08-26T20:12:32.3618895Z adding 'torch/include/google/protobuf/arena.h' 2025-08-26T20:12:32.3626640Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-08-26T20:12:32.3633717Z adding 'torch/include/google/protobuf/arenastring.h' 2025-08-26T20:12:32.3666468Z adding 'torch/include/google/protobuf/descriptor.h' 2025-08-26T20:12:32.3749681Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-08-26T20:12:32.3769410Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-08-26T20:12:32.3774653Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-08-26T20:12:32.3780274Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-08-26T20:12:32.3785019Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-08-26T20:12:32.3808305Z adding 'torch/include/google/protobuf/extension_set.h' 2025-08-26T20:12:32.3815448Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-08-26T20:12:32.3826035Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-08-26T20:12:32.3826511Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-08-26T20:12:32.3828897Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-08-26T20:12:32.3835524Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-08-26T20:12:32.3842023Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-08-26T20:12:32.3847946Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-08-26T20:12:32.3851894Z adding 'torch/include/google/protobuf/has_bits.h' 2025-08-26T20:12:32.3856673Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-08-26T20:12:32.3861663Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-08-26T20:12:32.3879104Z adding 'torch/include/google/protobuf/map.h' 2025-08-26T20:12:32.3884872Z adding 'torch/include/google/protobuf/map_entry.h' 2025-08-26T20:12:32.3895140Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-08-26T20:12:32.3906527Z adding 'torch/include/google/protobuf/map_field.h' 2025-08-26T20:12:32.3914570Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-08-26T20:12:32.3918610Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-08-26T20:12:32.3928636Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-08-26T20:12:32.3952101Z adding 'torch/include/google/protobuf/message.h' 2025-08-26T20:12:32.3964534Z adding 'torch/include/google/protobuf/message_lite.h' 2025-08-26T20:12:32.3968920Z adding 'torch/include/google/protobuf/metadata.h' 2025-08-26T20:12:32.3974025Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-08-26T20:12:32.4016570Z adding 'torch/include/google/protobuf/parse_context.h' 2025-08-26T20:12:32.4016973Z adding 'torch/include/google/protobuf/port.h' 2025-08-26T20:12:32.4017330Z adding 'torch/include/google/protobuf/reflection.h' 2025-08-26T20:12:32.4017714Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-08-26T20:12:32.4040706Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-08-26T20:12:32.4049402Z adding 'torch/include/google/protobuf/service.h' 2025-08-26T20:12:32.4054832Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-08-26T20:12:32.4065993Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-08-26T20:12:32.4078267Z adding 'torch/include/google/protobuf/text_format.h' 2025-08-26T20:12:32.4083685Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-08-26T20:12:32.4103094Z adding 'torch/include/google/protobuf/type.pb.h' 2025-08-26T20:12:32.4111844Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-08-26T20:12:32.4119157Z adding 'torch/include/google/protobuf/wire_format.h' 2025-08-26T20:12:32.4140890Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-08-26T20:12:32.4153108Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-08-26T20:12:32.4160577Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-08-26T20:12:32.4170119Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-08-26T20:12:32.4178126Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-08-26T20:12:32.4189418Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-08-26T20:12:32.4194196Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-08-26T20:12:32.4209327Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-08-26T20:12:32.4215983Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-08-26T20:12:32.4220621Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-08-26T20:12:32.4224586Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-08-26T20:12:32.4229314Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-08-26T20:12:32.4233114Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-08-26T20:12:32.4239991Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-08-26T20:12:32.4243956Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-08-26T20:12:32.4248675Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-08-26T20:12:32.4254826Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-08-26T20:12:32.4259672Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-08-26T20:12:32.4265273Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-08-26T20:12:32.4269851Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-08-26T20:12:32.4298387Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-08-26T20:12:32.4304741Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-08-26T20:12:32.4309379Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-08-26T20:12:32.4317028Z adding 'torch/include/google/protobuf/io/printer.h' 2025-08-26T20:12:32.4321360Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-08-26T20:12:32.4330641Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-08-26T20:12:32.4336439Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-08-26T20:12:32.4342311Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-08-26T20:12:32.4349549Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-08-26T20:12:32.4356831Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-08-26T20:12:32.4362782Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-08-26T20:12:32.4367888Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-08-26T20:12:32.4373168Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-08-26T20:12:32.4377695Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-08-26T20:12:32.4390964Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-08-26T20:12:32.4391645Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-08-26T20:12:32.4395336Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-08-26T20:12:32.4405804Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-08-26T20:12:32.4411027Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-08-26T20:12:32.4414894Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-08-26T20:12:32.4419048Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-08-26T20:12:32.4425075Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-08-26T20:12:32.4429505Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-08-26T20:12:32.4433585Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-08-26T20:12:32.4441687Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-08-26T20:12:32.4461289Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-08-26T20:12:32.4466413Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-08-26T20:12:32.4471840Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-08-26T20:12:32.4477471Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-08-26T20:12:32.4483580Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-08-26T20:12:32.4504959Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-08-26T20:12:32.4508398Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-08-26T20:12:32.4515167Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-08-26T20:12:32.4519349Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-08-26T20:12:32.4523125Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-08-26T20:12:32.4528983Z adding 'torch/include/kineto/AbstractConfig.h' 2025-08-26T20:12:32.4532323Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-08-26T20:12:32.4535527Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-08-26T20:12:32.4540045Z adding 'torch/include/kineto/ActivityType.h' 2025-08-26T20:12:32.4542316Z adding 'torch/include/kineto/ClientInterface.h' 2025-08-26T20:12:32.4548828Z adding 'torch/include/kineto/Config.h' 2025-08-26T20:12:32.4553176Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-08-26T20:12:32.4557540Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-08-26T20:12:32.4561028Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-08-26T20:12:32.4564500Z adding 'torch/include/kineto/ITraceActivity.h' 2025-08-26T20:12:32.4567680Z adding 'torch/include/kineto/LoggingAPI.h' 2025-08-26T20:12:32.4570815Z adding 'torch/include/kineto/ThreadUtil.h' 2025-08-26T20:12:32.4573750Z adding 'torch/include/kineto/TraceSpan.h' 2025-08-26T20:12:32.4577527Z adding 'torch/include/kineto/libkineto.h' 2025-08-26T20:12:32.4581030Z adding 'torch/include/kineto/output_base.h' 2025-08-26T20:12:32.4584038Z adding 'torch/include/kineto/time_since_epoch.h' 2025-08-26T20:12:32.4594110Z adding 'torch/include/legacy/ittnotify.h' 2025-08-26T20:12:32.4599460Z adding 'torch/include/mimalloc-2.2/mimalloc-new-delete.h' 2025-08-26T20:12:32.4603076Z adding 'torch/include/mimalloc-2.2/mimalloc-override.h' 2025-08-26T20:12:32.4607019Z adding 'torch/include/mimalloc-2.2/mimalloc-stats.h' 2025-08-26T20:12:32.4618765Z adding 'torch/include/mimalloc-2.2/mimalloc.h' 2025-08-26T20:12:32.4657374Z adding 'torch/include/oneapi/dnnl/dnnl.h' 2025-08-26T20:12:32.4767474Z adding 'torch/include/oneapi/dnnl/dnnl.hpp' 2025-08-26T20:12:32.4786335Z adding 'torch/include/oneapi/dnnl/dnnl_common.h' 2025-08-26T20:12:32.4793084Z adding 'torch/include/oneapi/dnnl/dnnl_common.hpp' 2025-08-26T20:12:32.4798489Z adding 'torch/include/oneapi/dnnl/dnnl_common_types.h' 2025-08-26T20:12:32.4803685Z adding 'torch/include/oneapi/dnnl/dnnl_config.h' 2025-08-26T20:12:32.4807563Z adding 'torch/include/oneapi/dnnl/dnnl_debug.h' 2025-08-26T20:12:32.4818026Z adding 'torch/include/oneapi/dnnl/dnnl_graph.h' 2025-08-26T20:12:32.4840518Z adding 'torch/include/oneapi/dnnl/dnnl_graph.hpp' 2025-08-26T20:12:32.4846275Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.h' 2025-08-26T20:12:32.4850066Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.hpp' 2025-08-26T20:12:32.4854014Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.h' 2025-08-26T20:12:32.4858148Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.hpp' 2025-08-26T20:12:32.4864605Z adding 'torch/include/oneapi/dnnl/dnnl_graph_types.h' 2025-08-26T20:12:32.4870243Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.h' 2025-08-26T20:12:32.4877026Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.hpp' 2025-08-26T20:12:32.4881027Z adding 'torch/include/oneapi/dnnl/dnnl_ocl_types.h' 2025-08-26T20:12:32.4885457Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.h' 2025-08-26T20:12:32.4892020Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.hpp' 2025-08-26T20:12:32.4895493Z adding 'torch/include/oneapi/dnnl/dnnl_sycl_types.h' 2025-08-26T20:12:32.4899322Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.h' 2025-08-26T20:12:32.4903751Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.hpp' 2025-08-26T20:12:32.4906952Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool_iface.hpp' 2025-08-26T20:12:32.4935024Z adding 'torch/include/oneapi/dnnl/dnnl_types.h' 2025-08-26T20:12:32.4942697Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.h' 2025-08-26T20:12:32.4949523Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.hpp' 2025-08-26T20:12:32.4953444Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel_types.h' 2025-08-26T20:12:32.4956800Z adding 'torch/include/oneapi/dnnl/dnnl_version.h' 2025-08-26T20:12:32.4960126Z adding 'torch/include/oneapi/dnnl/dnnl_version_hash.h' 2025-08-26T20:12:32.4970720Z adding 'torch/include/pybind11/attr.h' 2025-08-26T20:12:32.4976168Z adding 'torch/include/pybind11/buffer_info.h' 2025-08-26T20:12:32.5006707Z adding 'torch/include/pybind11/cast.h' 2025-08-26T20:12:32.5013655Z adding 'torch/include/pybind11/chrono.h' 2025-08-26T20:12:32.5016974Z adding 'torch/include/pybind11/common.h' 2025-08-26T20:12:32.5020316Z adding 'torch/include/pybind11/complex.h' 2025-08-26T20:12:32.5023928Z adding 'torch/include/pybind11/critical_section.h' 2025-08-26T20:12:32.5029077Z adding 'torch/include/pybind11/eigen.h' 2025-08-26T20:12:32.5035311Z adding 'torch/include/pybind11/embed.h' 2025-08-26T20:12:32.5039580Z adding 'torch/include/pybind11/eval.h' 2025-08-26T20:12:32.5044067Z adding 'torch/include/pybind11/functional.h' 2025-08-26T20:12:32.5049276Z adding 'torch/include/pybind11/gil.h' 2025-08-26T20:12:32.5053096Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-08-26T20:12:32.5056417Z adding 'torch/include/pybind11/gil_simple.h' 2025-08-26T20:12:32.5061460Z adding 'torch/include/pybind11/iostream.h' 2025-08-26T20:12:32.5065236Z adding 'torch/include/pybind11/native_enum.h' 2025-08-26T20:12:32.5095603Z adding 'torch/include/pybind11/numpy.h' 2025-08-26T20:12:32.5102162Z adding 'torch/include/pybind11/operators.h' 2025-08-26T20:12:32.5105942Z adding 'torch/include/pybind11/options.h' 2025-08-26T20:12:32.5157635Z adding 'torch/include/pybind11/pybind11.h' 2025-08-26T20:12:32.5193295Z adding 'torch/include/pybind11/pytypes.h' 2025-08-26T20:12:32.5204894Z adding 'torch/include/pybind11/stl.h' 2025-08-26T20:12:32.5215570Z adding 'torch/include/pybind11/stl_bind.h' 2025-08-26T20:12:32.5222213Z adding 'torch/include/pybind11/subinterpreter.h' 2025-08-26T20:12:32.5226204Z adding 'torch/include/pybind11/trampoline_self_life_support.h' 2025-08-26T20:12:32.5229887Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-08-26T20:12:32.5234321Z adding 'torch/include/pybind11/typing.h' 2025-08-26T20:12:32.5238148Z adding 'torch/include/pybind11/warnings.h' 2025-08-26T20:12:32.5243120Z adding 'torch/include/pybind11/conduit/pybind11_conduit_v1.h' 2025-08-26T20:12:32.5247496Z adding 'torch/include/pybind11/conduit/pybind11_platform_abi_id.h' 2025-08-26T20:12:32.5250859Z adding 'torch/include/pybind11/conduit/wrap_include_python_h.h' 2025-08-26T20:12:32.5264080Z adding 'torch/include/pybind11/detail/class.h' 2025-08-26T20:12:32.5285052Z adding 'torch/include/pybind11/detail/common.h' 2025-08-26T20:12:32.5290218Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-08-26T20:12:32.5294707Z adding 'torch/include/pybind11/detail/descr.h' 2025-08-26T20:12:32.5298903Z adding 'torch/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h' 2025-08-26T20:12:32.5301926Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-08-26T20:12:32.5306885Z adding 'torch/include/pybind11/detail/function_record_pyobject.h' 2025-08-26T20:12:32.5315966Z adding 'torch/include/pybind11/detail/init.h' 2025-08-26T20:12:32.5327979Z adding 'torch/include/pybind11/detail/internals.h' 2025-08-26T20:12:32.5333682Z adding 'torch/include/pybind11/detail/native_enum_data.h' 2025-08-26T20:12:32.5337285Z adding 'torch/include/pybind11/detail/pybind11_namespace_macros.h' 2025-08-26T20:12:32.5343562Z adding 'torch/include/pybind11/detail/struct_smart_holder.h' 2025-08-26T20:12:32.5367862Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-08-26T20:12:32.5372596Z adding 'torch/include/pybind11/detail/typeid.h' 2025-08-26T20:12:32.5375894Z adding 'torch/include/pybind11/detail/using_smart_holder.h' 2025-08-26T20:12:32.5379747Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-08-26T20:12:32.5383561Z adding 'torch/include/pybind11/eigen/common.h' 2025-08-26T20:12:32.5395627Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-08-26T20:12:32.5402925Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-08-26T20:12:32.5408194Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-08-26T20:12:32.5417209Z adding 'torch/include/torch/custom_class.h' 2025-08-26T20:12:32.5422696Z adding 'torch/include/torch/custom_class_detail.h' 2025-08-26T20:12:32.5425986Z adding 'torch/include/torch/extension.h' 2025-08-26T20:12:32.5441717Z adding 'torch/include/torch/library.h' 2025-08-26T20:12:32.5445899Z adding 'torch/include/torch/script.h' 2025-08-26T20:12:32.5451231Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-08-26T20:12:32.5454473Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-08-26T20:12:32.5457645Z adding 'torch/include/torch/csrc/Device.h' 2025-08-26T20:12:32.5460567Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-08-26T20:12:32.5463690Z adding 'torch/include/torch/csrc/Dtype.h' 2025-08-26T20:12:32.5466857Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-08-26T20:12:32.5469896Z adding 'torch/include/torch/csrc/Event.h' 2025-08-26T20:12:32.5477611Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-08-26T20:12:32.5480441Z adding 'torch/include/torch/csrc/Export.h' 2025-08-26T20:12:32.5483392Z adding 'torch/include/torch/csrc/Generator.h' 2025-08-26T20:12:32.5486335Z adding 'torch/include/torch/csrc/Layout.h' 2025-08-26T20:12:32.5489397Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-08-26T20:12:32.5492376Z adding 'torch/include/torch/csrc/Module.h' 2025-08-26T20:12:32.5495338Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-08-26T20:12:32.5498336Z adding 'torch/include/torch/csrc/PyInterpreterHooks.h' 2025-08-26T20:12:32.5501149Z adding 'torch/include/torch/csrc/QScheme.h' 2025-08-26T20:12:32.5504164Z adding 'torch/include/torch/csrc/Size.h' 2025-08-26T20:12:32.5507288Z adding 'torch/include/torch/csrc/Storage.h' 2025-08-26T20:12:32.5510717Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-08-26T20:12:32.5513291Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-08-26T20:12:32.5516233Z adding 'torch/include/torch/csrc/Stream.h' 2025-08-26T20:12:32.5519011Z adding 'torch/include/torch/csrc/THConcat.h' 2025-08-26T20:12:32.5521990Z adding 'torch/include/torch/csrc/THP.h' 2025-08-26T20:12:32.5524986Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-08-26T20:12:32.5527848Z adding 'torch/include/torch/csrc/Types.h' 2025-08-26T20:12:32.5530990Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-08-26T20:12:32.5533928Z adding 'torch/include/torch/csrc/itt.h' 2025-08-26T20:12:32.5536736Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-08-26T20:12:32.5539667Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-08-26T20:12:32.5542787Z adding 'torch/include/torch/csrc/python_headers.h' 2025-08-26T20:12:32.5546127Z adding 'torch/include/torch/csrc/serialization.h' 2025-08-26T20:12:32.5550671Z adding 'torch/include/torch/csrc/utils.h' 2025-08-26T20:12:32.5556787Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-08-26T20:12:32.5560355Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-08-26T20:12:32.5563524Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-08-26T20:12:32.5566964Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-08-26T20:12:32.5570225Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-08-26T20:12:32.5574768Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-08-26T20:12:32.5579441Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-08-26T20:12:32.5584333Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-08-26T20:12:32.5588371Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-08-26T20:12:32.5592140Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-08-26T20:12:32.5595674Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-08-26T20:12:32.5599710Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-08-26T20:12:32.5603086Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-08-26T20:12:32.5606468Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-08-26T20:12:32.5613218Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-08-26T20:12:32.5619402Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-08-26T20:12:32.5624003Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-08-26T20:12:32.5627459Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-08-26T20:12:32.5634734Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-08-26T20:12:32.5638973Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-08-26T20:12:32.5642747Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-08-26T20:12:32.5646896Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-08-26T20:12:32.5650774Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-08-26T20:12:32.5654222Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-08-26T20:12:32.5659172Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-08-26T20:12:32.5663033Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-08-26T20:12:32.5665942Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-08-26T20:12:32.5669178Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-08-26T20:12:32.5673234Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-08-26T20:12:32.5676334Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-08-26T20:12:32.5679230Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-08-26T20:12:32.5682410Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-08-26T20:12:32.5688562Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-08-26T20:12:32.5692473Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-08-26T20:12:32.5696226Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-08-26T20:12:32.5700981Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-08-26T20:12:32.5709837Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-08-26T20:12:32.5714391Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-08-26T20:12:32.5717785Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-08-26T20:12:32.5721161Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-08-26T20:12:32.5724742Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-08-26T20:12:32.5728111Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-08-26T20:12:32.5732536Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-08-26T20:12:32.5736276Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-08-26T20:12:32.5740415Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-08-26T20:12:32.5744613Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-08-26T20:12:32.5747817Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-08-26T20:12:32.5751450Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-08-26T20:12:32.5754870Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-08-26T20:12:32.5758109Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-08-26T20:12:32.5761181Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-08-26T20:12:32.5764589Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-08-26T20:12:32.5768845Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-08-26T20:12:32.5772134Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-08-26T20:12:32.5775414Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-08-26T20:12:32.5778646Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-08-26T20:12:32.5782168Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-08-26T20:12:32.5789015Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-08-26T20:12:32.5792928Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-08-26T20:12:32.5797142Z adding 'torch/include/torch/csrc/api/include/torch/nativert/ModelRunnerHandle.h' 2025-08-26T20:12:32.5801810Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-08-26T20:12:32.5805191Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-08-26T20:12:32.5809019Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-08-26T20:12:32.5818281Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-08-26T20:12:32.5822170Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-08-26T20:12:32.5825324Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-08-26T20:12:32.5828850Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-08-26T20:12:32.5833341Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-08-26T20:12:32.5836432Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-08-26T20:12:32.5845075Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-08-26T20:12:32.5849322Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-08-26T20:12:32.5853136Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-08-26T20:12:32.5856757Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-08-26T20:12:32.5860593Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-08-26T20:12:32.5864972Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-08-26T20:12:32.5868505Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-08-26T20:12:32.5871913Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-08-26T20:12:32.5875010Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-08-26T20:12:32.5882100Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-08-26T20:12:32.5886997Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-08-26T20:12:32.5890523Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-08-26T20:12:32.5893818Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-08-26T20:12:32.5900829Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-08-26T20:12:32.5906641Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-08-26T20:12:32.5910704Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-08-26T20:12:32.5915057Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-08-26T20:12:32.5921597Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-08-26T20:12:32.5926273Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-08-26T20:12:32.5930693Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-08-26T20:12:32.5934983Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-08-26T20:12:32.5940567Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-08-26T20:12:32.5944605Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-08-26T20:12:32.5948550Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-08-26T20:12:32.5952726Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-08-26T20:12:32.5956419Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-08-26T20:12:32.5960368Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-08-26T20:12:32.5964502Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-08-26T20:12:32.5972227Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-08-26T20:12:32.5977166Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-08-26T20:12:32.5981894Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-08-26T20:12:32.5985807Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-08-26T20:12:32.5992297Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-08-26T20:12:32.5997995Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-08-26T20:12:32.6002749Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-08-26T20:12:32.6007075Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-08-26T20:12:32.6011391Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-08-26T20:12:32.6015190Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-08-26T20:12:32.6018551Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-08-26T20:12:32.6058275Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-08-26T20:12:32.6058974Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-08-26T20:12:32.6060360Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-08-26T20:12:32.6061022Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-08-26T20:12:32.6061718Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-08-26T20:12:32.6063952Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-08-26T20:12:32.6064635Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-08-26T20:12:32.6067591Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-08-26T20:12:32.6072164Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-08-26T20:12:32.6078673Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-08-26T20:12:32.6085976Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-08-26T20:12:32.6089758Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-08-26T20:12:32.6093487Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-08-26T20:12:32.6098056Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-08-26T20:12:32.6101811Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-08-26T20:12:32.6105236Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-08-26T20:12:32.6109973Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-08-26T20:12:32.6113793Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-08-26T20:12:32.6117350Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-08-26T20:12:32.6120942Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-08-26T20:12:32.6127771Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-08-26T20:12:32.6132370Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-08-26T20:12:32.6136453Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-08-26T20:12:32.6140366Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-08-26T20:12:32.6145311Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-08-26T20:12:32.6150854Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-08-26T20:12:32.6153933Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-08-26T20:12:32.6157428Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-08-26T20:12:32.6160911Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-08-26T20:12:32.6164716Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-08-26T20:12:32.6168112Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-08-26T20:12:32.6174807Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-08-26T20:12:32.6180197Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-08-26T20:12:32.6184071Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-08-26T20:12:32.6190109Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-08-26T20:12:32.6194966Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-08-26T20:12:32.6198804Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-08-26T20:12:32.6202440Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-08-26T20:12:32.6206361Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-08-26T20:12:32.6211136Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-08-26T20:12:32.6214884Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-08-26T20:12:32.6220246Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-08-26T20:12:32.6224106Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-08-26T20:12:32.6228327Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-08-26T20:12:32.6231763Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-08-26T20:12:32.6234716Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-08-26T20:12:32.6238342Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-08-26T20:12:32.6242019Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-08-26T20:12:32.6245897Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-08-26T20:12:32.6249519Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-08-26T20:12:32.6252497Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-08-26T20:12:32.6263547Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-08-26T20:12:32.6267250Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-08-26T20:12:32.6273431Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-08-26T20:12:32.6277145Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-08-26T20:12:32.6281349Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-08-26T20:12:32.6284718Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-08-26T20:12:32.6287853Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-08-26T20:12:32.6297546Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-08-26T20:12:32.6300457Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-08-26T20:12:32.6306584Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-08-26T20:12:32.6312514Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-08-26T20:12:32.6326295Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-08-26T20:12:32.6330306Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-08-26T20:12:32.6333438Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-08-26T20:12:32.6339031Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-08-26T20:12:32.6343420Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-08-26T20:12:32.6346494Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-08-26T20:12:32.6350064Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-08-26T20:12:32.6352894Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-08-26T20:12:32.6358019Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-08-26T20:12:32.6364034Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-08-26T20:12:32.6367475Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-08-26T20:12:32.6370641Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-08-26T20:12:32.6373764Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-08-26T20:12:32.6378192Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-08-26T20:12:32.6381010Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-08-26T20:12:32.6384071Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-08-26T20:12:32.6386812Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-08-26T20:12:32.6391268Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-08-26T20:12:32.6395420Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-08-26T20:12:32.6397955Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-08-26T20:12:32.6401128Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-08-26T20:12:32.6403796Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-08-26T20:12:32.6406799Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-08-26T20:12:32.6409928Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-08-26T20:12:32.6412910Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-08-26T20:12:32.6415757Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-08-26T20:12:32.6418831Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-08-26T20:12:32.6422509Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-08-26T20:12:32.6426471Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-08-26T20:12:32.6429918Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-08-26T20:12:32.6433928Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-08-26T20:12:32.6437295Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-08-26T20:12:32.6440186Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-08-26T20:12:32.6456424Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-08-26T20:12:32.6460685Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-08-26T20:12:32.6468535Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-08-26T20:12:32.6472698Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-08-26T20:12:32.6476062Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-08-26T20:12:32.6479077Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-08-26T20:12:32.6484212Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-08-26T20:12:32.6488314Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-08-26T20:12:32.6544645Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-08-26T20:12:32.6560810Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-08-26T20:12:32.6566129Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-08-26T20:12:32.6570293Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-08-26T20:12:32.6573695Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-08-26T20:12:32.6581954Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-08-26T20:12:32.6587140Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-08-26T20:12:32.6590862Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-08-26T20:12:32.6594179Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-08-26T20:12:32.6597410Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-08-26T20:12:32.6600558Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-08-26T20:12:32.6604296Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-08-26T20:12:32.6608152Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-08-26T20:12:32.6613738Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-08-26T20:12:32.6616921Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-08-26T20:12:32.6619800Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-08-26T20:12:32.6622873Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-08-26T20:12:32.6625917Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-08-26T20:12:32.6628669Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-08-26T20:12:32.6631881Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-08-26T20:12:32.6634778Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-08-26T20:12:32.6637825Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-08-26T20:12:32.6641943Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-08-26T20:12:32.6645050Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-08-26T20:12:32.6648053Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-08-26T20:12:32.6650983Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-08-26T20:12:32.6655881Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-08-26T20:12:32.6658888Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-08-26T20:12:32.6662408Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-08-26T20:12:32.6667799Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-08-26T20:12:32.6672905Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-08-26T20:12:32.6678886Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-08-26T20:12:32.6683236Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-08-26T20:12:32.6686716Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-08-26T20:12:32.6690814Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-08-26T20:12:32.6694023Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-08-26T20:12:32.6697171Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-08-26T20:12:32.6700429Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-08-26T20:12:32.6703563Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-08-26T20:12:32.6707255Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-08-26T20:12:32.6710945Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-08-26T20:12:32.6714465Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-08-26T20:12:32.6718007Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-08-26T20:12:32.6721147Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-08-26T20:12:32.6728474Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-08-26T20:12:32.6732054Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-08-26T20:12:32.6736168Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-08-26T20:12:32.6739591Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-08-26T20:12:32.6745006Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-08-26T20:12:32.6753725Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp' 2025-08-26T20:12:32.6757430Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-08-26T20:12:32.6760664Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-08-26T20:12:32.6763817Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-08-26T20:12:32.6767104Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-08-26T20:12:32.6773689Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-08-26T20:12:32.6777118Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-08-26T20:12:32.6781257Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-08-26T20:12:32.6784912Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-08-26T20:12:32.6795064Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-08-26T20:12:32.6802795Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-08-26T20:12:32.6811156Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-08-26T20:12:32.6816473Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-08-26T20:12:32.6838994Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-08-26T20:12:32.6845842Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-08-26T20:12:32.6850359Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-08-26T20:12:32.6855623Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-08-26T20:12:32.6859328Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-08-26T20:12:32.6863369Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-08-26T20:12:32.6867749Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-08-26T20:12:32.6871439Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-08-26T20:12:32.6876684Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-08-26T20:12:32.6881251Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-08-26T20:12:32.6885122Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-08-26T20:12:32.6889724Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-08-26T20:12:32.6893044Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-08-26T20:12:32.6902036Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-08-26T20:12:32.6905327Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-08-26T20:12:32.6909915Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-08-26T20:12:32.6913346Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-08-26T20:12:32.6917382Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-08-26T20:12:32.6920530Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-08-26T20:12:32.6923847Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-08-26T20:12:32.6927375Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-08-26T20:12:32.6930823Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-08-26T20:12:32.6935928Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-08-26T20:12:32.6939476Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-08-26T20:12:32.6942871Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-08-26T20:12:32.6954284Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-08-26T20:12:32.6959119Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-08-26T20:12:32.6962079Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-08-26T20:12:32.6965739Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-08-26T20:12:32.6969070Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-08-26T20:12:32.6973421Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-08-26T20:12:32.6977133Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-08-26T20:12:32.6981478Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-08-26T20:12:32.6984303Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-08-26T20:12:32.6988352Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp' 2025-08-26T20:12:32.6991491Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp' 2025-08-26T20:12:32.6994525Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-08-26T20:12:32.6998644Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-08-26T20:12:32.7006419Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-08-26T20:12:32.7006710Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-08-26T20:12:32.7028967Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h' 2025-08-26T20:12:32.7029265Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp' 2025-08-26T20:12:32.7029593Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp' 2025-08-26T20:12:32.7029891Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp' 2025-08-26T20:12:32.7030240Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp' 2025-08-26T20:12:32.7033039Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp' 2025-08-26T20:12:32.7037018Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp' 2025-08-26T20:12:32.7041775Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-08-26T20:12:32.7046789Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-08-26T20:12:32.7050601Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-08-26T20:12:32.7054095Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-08-26T20:12:32.7057502Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-08-26T20:12:32.7060771Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-08-26T20:12:32.7063990Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-08-26T20:12:32.7068145Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-08-26T20:12:32.7071522Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-08-26T20:12:32.7074947Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-08-26T20:12:32.7078560Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-08-26T20:12:32.7081645Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-08-26T20:12:32.7088422Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-08-26T20:12:32.7092040Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-08-26T20:12:32.7099826Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-08-26T20:12:32.7108289Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-08-26T20:12:32.7112678Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-08-26T20:12:32.7116320Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-08-26T20:12:32.7119867Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-08-26T20:12:32.7122922Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-08-26T20:12:32.7130855Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-08-26T20:12:32.7135384Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-08-26T20:12:32.7138939Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-08-26T20:12:32.7142260Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-08-26T20:12:32.7337661Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-08-26T20:12:32.7342196Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-08-26T20:12:32.7345427Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-08-26T20:12:32.7349803Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-08-26T20:12:32.7354272Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-08-26T20:12:32.7358671Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-08-26T20:12:32.7363814Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-08-26T20:12:32.7367019Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-08-26T20:12:32.7371636Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-08-26T20:12:32.7389352Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-08-26T20:12:32.7393554Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-08-26T20:12:32.7396789Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-08-26T20:12:32.7400230Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-08-26T20:12:32.7403926Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-08-26T20:12:32.7407544Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-08-26T20:12:32.7410770Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-08-26T20:12:32.7415248Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-08-26T20:12:32.7419286Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-08-26T20:12:32.7423038Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-08-26T20:12:32.7426062Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-08-26T20:12:32.7429214Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-08-26T20:12:32.7432153Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-08-26T20:12:32.7436187Z adding 'torch/include/torch/csrc/export/example_upgraders.h' 2025-08-26T20:12:32.7440120Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-08-26T20:12:32.7443114Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-08-26T20:12:32.7447470Z adding 'torch/include/torch/csrc/export/upgrader.h' 2025-08-26T20:12:32.7451405Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-08-26T20:12:32.7454974Z adding 'torch/include/torch/csrc/fx/node.h' 2025-08-26T20:12:32.7459592Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-08-26T20:12:32.7472476Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-08-26T20:12:32.7476698Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-08-26T20:12:32.7479791Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-08-26T20:12:32.7484425Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-08-26T20:12:32.7489174Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-08-26T20:12:32.7493277Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-08-26T20:12:32.7496267Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-08-26T20:12:32.7499227Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-08-26T20:12:32.7502142Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-08-26T20:12:32.7505050Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-08-26T20:12:32.7507893Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-08-26T20:12:32.7512503Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-08-26T20:12:32.7515740Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-08-26T20:12:32.7521149Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-08-26T20:12:32.7524423Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-08-26T20:12:32.7528059Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-08-26T20:12:32.7531950Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-08-26T20:12:32.7534795Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-08-26T20:12:32.7537772Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-08-26T20:12:32.7543070Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-08-26T20:12:32.7546366Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-08-26T20:12:32.7550141Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-08-26T20:12:32.7554705Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-08-26T20:12:32.7559140Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-08-26T20:12:32.7562694Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-08-26T20:12:32.7571509Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_base.h' 2025-08-26T20:12:32.7581514Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-08-26T20:12:32.7585681Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-08-26T20:12:32.7590105Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-08-26T20:12:32.7593893Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-08-26T20:12:32.7599472Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-08-26T20:12:32.7603173Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-08-26T20:12:32.7606587Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-08-26T20:12:32.7610487Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-08-26T20:12:32.7614534Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-08-26T20:12:32.7618107Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-08-26T20:12:32.7630169Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-08-26T20:12:32.7634570Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-08-26T20:12:32.7639150Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/macros.h' 2025-08-26T20:12:32.7647164Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-08-26T20:12:32.7651706Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-08-26T20:12:32.7655670Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h' 2025-08-26T20:12:32.7659115Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-08-26T20:12:32.7662539Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-08-26T20:12:32.7666777Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.h' 2025-08-26T20:12:32.7673786Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-08-26T20:12:32.7681924Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-08-26T20:12:32.7688755Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-08-26T20:12:32.7693813Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-08-26T20:12:32.7697889Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-08-26T20:12:32.7701319Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-08-26T20:12:32.7704256Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-08-26T20:12:32.7707460Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-08-26T20:12:32.7710017Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-08-26T20:12:32.7712700Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-08-26T20:12:32.7716365Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-08-26T20:12:32.7719191Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-08-26T20:12:32.7722511Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-08-26T20:12:32.7724775Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-08-26T20:12:32.7728540Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-08-26T20:12:32.7733237Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-08-26T20:12:32.7736700Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-08-26T20:12:32.7739823Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-08-26T20:12:32.7746477Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-08-26T20:12:32.7751440Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-08-26T20:12:32.7755052Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-08-26T20:12:32.7764859Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-08-26T20:12:32.7769975Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-08-26T20:12:32.7774825Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-08-26T20:12:32.7779873Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-08-26T20:12:32.7783840Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-08-26T20:12:32.7787144Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-08-26T20:12:32.7790689Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-08-26T20:12:32.7793856Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-08-26T20:12:32.7797117Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-08-26T20:12:32.7800250Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-08-26T20:12:32.7803177Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-08-26T20:12:32.7808120Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-08-26T20:12:32.7812098Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-08-26T20:12:32.7815110Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-08-26T20:12:32.7818403Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-08-26T20:12:32.7821548Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-08-26T20:12:32.7825071Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-08-26T20:12:32.7829817Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-08-26T20:12:32.7834359Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-08-26T20:12:32.7838168Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-08-26T20:12:32.7842713Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-08-26T20:12:32.7847854Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-08-26T20:12:32.7852236Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-08-26T20:12:32.7855293Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-08-26T20:12:32.7858826Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-08-26T20:12:32.7861999Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-08-26T20:12:32.7865083Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-08-26T20:12:32.7868854Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-08-26T20:12:32.7872276Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-08-26T20:12:32.7875687Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-08-26T20:12:32.7879853Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-08-26T20:12:32.7883415Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-08-26T20:12:32.7887397Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-08-26T20:12:32.7891150Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-08-26T20:12:32.7894675Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-08-26T20:12:32.7898395Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-08-26T20:12:32.7902213Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-08-26T20:12:32.7906605Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-08-26T20:12:32.7912328Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-08-26T20:12:32.7918434Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-08-26T20:12:32.7921821Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-08-26T20:12:32.7924775Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-08-26T20:12:32.7928471Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-08-26T20:12:32.7932108Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-08-26T20:12:32.7935053Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-08-26T20:12:32.7938522Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-08-26T20:12:32.7942286Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-08-26T20:12:32.7945415Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-08-26T20:12:32.7949281Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-08-26T20:12:32.7952554Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-08-26T20:12:32.7957477Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-08-26T20:12:32.7961968Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-08-26T20:12:32.7965035Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-08-26T20:12:32.7970640Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-08-26T20:12:32.7974058Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-08-26T20:12:32.7977125Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-08-26T20:12:32.7980621Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-08-26T20:12:32.7984019Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-08-26T20:12:32.7987148Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-08-26T20:12:32.7990320Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-08-26T20:12:32.7993495Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-08-26T20:12:32.8001947Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-08-26T20:12:32.8006210Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-08-26T20:12:32.8009907Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-08-26T20:12:32.8013960Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-08-26T20:12:32.8017637Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-08-26T20:12:32.8021085Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-08-26T20:12:32.8024599Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-08-26T20:12:32.8028484Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-08-26T20:12:32.8031745Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-08-26T20:12:32.8035310Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-08-26T20:12:32.8042783Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-08-26T20:12:32.8046905Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-08-26T20:12:32.8049860Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-08-26T20:12:32.8059780Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-08-26T20:12:32.8066186Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-08-26T20:12:32.8071641Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-08-26T20:12:32.8082983Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-08-26T20:12:32.8087226Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-08-26T20:12:32.8095035Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-08-26T20:12:32.8099363Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-08-26T20:12:32.8103051Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-08-26T20:12:32.8107533Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-08-26T20:12:32.8110727Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-08-26T20:12:32.8131539Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-08-26T20:12:32.8136835Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-08-26T20:12:32.8140136Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-08-26T20:12:32.8143788Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-08-26T20:12:32.8146778Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-08-26T20:12:32.8151191Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-08-26T20:12:32.8155328Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-08-26T20:12:32.8158443Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-08-26T20:12:32.8162949Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-08-26T20:12:32.8166714Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-08-26T20:12:32.8171353Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-08-26T20:12:32.8175642Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-08-26T20:12:32.8179045Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-08-26T20:12:32.8182989Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-08-26T20:12:32.8186913Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-08-26T20:12:32.8190301Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-08-26T20:12:32.8193570Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-08-26T20:12:32.8196654Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-08-26T20:12:32.8199882Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-08-26T20:12:32.8204230Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-08-26T20:12:32.8208405Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-08-26T20:12:32.8211785Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-08-26T20:12:32.8214946Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-08-26T20:12:32.8218176Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-08-26T20:12:32.8222215Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-08-26T20:12:32.8225511Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-08-26T20:12:32.8228900Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-08-26T20:12:32.8232414Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-08-26T20:12:32.8235877Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-08-26T20:12:32.8239190Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-08-26T20:12:32.8243263Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-08-26T20:12:32.8246811Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-08-26T20:12:32.8250443Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-08-26T20:12:32.8253800Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-08-26T20:12:32.8258063Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-08-26T20:12:32.8261313Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-08-26T20:12:32.8264770Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-08-26T20:12:32.8269384Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-08-26T20:12:32.8272358Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-08-26T20:12:32.8275549Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-08-26T20:12:32.8279161Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-08-26T20:12:32.8283116Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-08-26T20:12:32.8290900Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-08-26T20:12:32.8294358Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-08-26T20:12:32.8298757Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-08-26T20:12:32.8302286Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-08-26T20:12:32.8305618Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-08-26T20:12:32.8310526Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-08-26T20:12:32.8314779Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-08-26T20:12:32.8317858Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-08-26T20:12:32.8321374Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-08-26T20:12:32.8324853Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-08-26T20:12:32.8330413Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-08-26T20:12:32.8333542Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-08-26T20:12:32.8336515Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-08-26T20:12:32.8339679Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-08-26T20:12:32.8342715Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-08-26T20:12:32.8345741Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-08-26T20:12:32.8348871Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-08-26T20:12:32.8351721Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-08-26T20:12:32.8354864Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-08-26T20:12:32.8358049Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-08-26T20:12:32.8361207Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-08-26T20:12:32.8364106Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-08-26T20:12:32.8367323Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-08-26T20:12:32.8370695Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-08-26T20:12:32.8373807Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-08-26T20:12:32.8376888Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-08-26T20:12:32.8380298Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-08-26T20:12:32.8383326Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-08-26T20:12:32.8386197Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-08-26T20:12:32.8389332Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-08-26T20:12:32.8392451Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-08-26T20:12:32.8395792Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-08-26T20:12:32.8399298Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-08-26T20:12:32.8402574Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-08-26T20:12:32.8405902Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-08-26T20:12:32.8409091Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-08-26T20:12:32.8412282Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-08-26T20:12:32.8415318Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-08-26T20:12:32.8418429Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-08-26T20:12:32.8421577Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-08-26T20:12:32.8424745Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-08-26T20:12:32.8427870Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-08-26T20:12:32.8430685Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-08-26T20:12:32.8433908Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-08-26T20:12:32.8436752Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-08-26T20:12:32.8440102Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-08-26T20:12:32.8443530Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-08-26T20:12:32.8446775Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-08-26T20:12:32.8450041Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-08-26T20:12:32.8452914Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-08-26T20:12:32.8455904Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-08-26T20:12:32.8458985Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-08-26T20:12:32.8462307Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-08-26T20:12:32.8465237Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-08-26T20:12:32.8468297Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-08-26T20:12:32.8471364Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-08-26T20:12:32.8474459Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-08-26T20:12:32.8477283Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-08-26T20:12:32.8480566Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-08-26T20:12:32.8483562Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-08-26T20:12:32.8486999Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-08-26T20:12:32.8490207Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-08-26T20:12:32.8493481Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-08-26T20:12:32.8496593Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-08-26T20:12:32.8499551Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-08-26T20:12:32.8502685Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-08-26T20:12:32.8505963Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-08-26T20:12:32.8509142Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-08-26T20:12:32.8513512Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-08-26T20:12:32.8517169Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-08-26T20:12:32.8520972Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-08-26T20:12:32.8524273Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-08-26T20:12:32.8527772Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-08-26T20:12:32.8531054Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-08-26T20:12:32.8534010Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-08-26T20:12:32.8537160Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-08-26T20:12:32.8540075Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-08-26T20:12:32.8543599Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-08-26T20:12:32.8546590Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-08-26T20:12:32.8549555Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-08-26T20:12:32.8553021Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-08-26T20:12:32.8556187Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-08-26T20:12:32.8559302Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-08-26T20:12:32.8562233Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-08-26T20:12:32.8565546Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-08-26T20:12:32.8568851Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-08-26T20:12:32.8572055Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-08-26T20:12:32.8576142Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-08-26T20:12:32.8579773Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-08-26T20:12:32.8583026Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-08-26T20:12:32.8586726Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-08-26T20:12:32.8590483Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-08-26T20:12:32.8593733Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-08-26T20:12:32.8597067Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-08-26T20:12:32.8600182Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-08-26T20:12:32.8603239Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-08-26T20:12:32.8606692Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-08-26T20:12:32.8610614Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-08-26T20:12:32.8614657Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-08-26T20:12:32.8617669Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-08-26T20:12:32.8621496Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-08-26T20:12:32.8624709Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-08-26T20:12:32.8627648Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-08-26T20:12:32.8630527Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-08-26T20:12:32.8633993Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-08-26T20:12:32.8637546Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-08-26T20:12:32.8640584Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-08-26T20:12:32.8643888Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-08-26T20:12:32.8647101Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-08-26T20:12:32.8650139Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-08-26T20:12:32.8653161Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-08-26T20:12:32.8656196Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-08-26T20:12:32.8659479Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-08-26T20:12:32.8662195Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-08-26T20:12:32.8665166Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-08-26T20:12:32.8668213Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-08-26T20:12:32.8672181Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-08-26T20:12:32.8675346Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-08-26T20:12:32.8679402Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-08-26T20:12:32.8682276Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-08-26T20:12:32.8685879Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-08-26T20:12:32.8689425Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-08-26T20:12:32.8693453Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-08-26T20:12:32.8696880Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-08-26T20:12:32.8699928Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-08-26T20:12:32.8704416Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-08-26T20:12:32.8708194Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-08-26T20:12:32.8711508Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-08-26T20:12:32.8722130Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-08-26T20:12:32.8726588Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-08-26T20:12:32.8730011Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-08-26T20:12:32.8733718Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-08-26T20:12:32.8738236Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-08-26T20:12:32.8741608Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-08-26T20:12:32.8744603Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-08-26T20:12:32.8748103Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-08-26T20:12:32.8752157Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-08-26T20:12:32.8755378Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-08-26T20:12:32.8759874Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-08-26T20:12:32.8776687Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-08-26T20:12:32.8781459Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-08-26T20:12:32.8784617Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-08-26T20:12:32.8788296Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-08-26T20:12:32.8791758Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-08-26T20:12:32.8795701Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-08-26T20:12:32.8800153Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-08-26T20:12:32.8805402Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-08-26T20:12:32.8808974Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-08-26T20:12:32.8811971Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-08-26T20:12:32.8814822Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-08-26T20:12:32.8817767Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-08-26T20:12:32.8820555Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-08-26T20:12:32.8831236Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-08-26T20:12:32.8836324Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-08-26T20:12:32.8840818Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-08-26T20:12:32.8844106Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-08-26T20:12:32.8847569Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-08-26T20:12:32.8850718Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-08-26T20:12:32.8853858Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-08-26T20:12:32.8858032Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-08-26T20:12:32.8862146Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-08-26T20:12:32.8866603Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-08-26T20:12:32.8871637Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-08-26T20:12:32.8876214Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-08-26T20:12:32.8879540Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-08-26T20:12:32.8882689Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-08-26T20:12:32.8886339Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-08-26T20:12:32.8892059Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-08-26T20:12:32.8895550Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-08-26T20:12:32.8898646Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-08-26T20:12:32.8902442Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-08-26T20:12:32.8907684Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-08-26T20:12:32.8917772Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-08-26T20:12:32.8922442Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-08-26T20:12:32.8925908Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-08-26T20:12:32.8928951Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-08-26T20:12:32.8932137Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-08-26T20:12:32.8935373Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-08-26T20:12:32.8938599Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-08-26T20:12:32.8942417Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-08-26T20:12:32.8945599Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-08-26T20:12:32.8948867Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-08-26T20:12:32.8952086Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-08-26T20:12:32.8957067Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-08-26T20:12:32.8969191Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-08-26T20:12:32.8973389Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-08-26T20:12:32.8976664Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-08-26T20:12:32.8982078Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-08-26T20:12:32.8985302Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-08-26T20:12:32.8999222Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-08-26T20:12:32.9003093Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-08-26T20:12:32.9009150Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-08-26T20:12:32.9013845Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-08-26T20:12:32.9017798Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-08-26T20:12:32.9022439Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-08-26T20:12:32.9026447Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-08-26T20:12:32.9030206Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-08-26T20:12:32.9035676Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-08-26T20:12:32.9041398Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-08-26T20:12:32.9045074Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-08-26T20:12:32.9049148Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-08-26T20:12:32.9052346Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-08-26T20:12:32.9056090Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-08-26T20:12:32.9059527Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-08-26T20:12:32.9062744Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-08-26T20:12:32.9065886Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-08-26T20:12:32.9068875Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-08-26T20:12:32.9072816Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-08-26T20:12:32.9093033Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-08-26T20:12:32.9098297Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-08-26T20:12:32.9110549Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-08-26T20:12:32.9111046Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-08-26T20:12:32.9111741Z adding 'torch/include/torch/csrc/jit/serialization/pickler_helper.h' 2025-08-26T20:12:32.9115355Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-08-26T20:12:32.9118978Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-08-26T20:12:32.9122750Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-08-26T20:12:32.9126257Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-08-26T20:12:32.9129485Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-08-26T20:12:32.9134413Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-08-26T20:12:32.9140665Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-08-26T20:12:32.9144868Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-08-26T20:12:32.9148487Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-08-26T20:12:32.9152553Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-08-26T20:12:32.9157454Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-08-26T20:12:32.9161226Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-08-26T20:12:32.9164390Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-08-26T20:12:32.9169227Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-08-26T20:12:32.9173386Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-08-26T20:12:32.9178563Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-08-26T20:12:32.9182855Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-08-26T20:12:32.9193127Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-08-26T20:12:32.9197946Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-08-26T20:12:32.9201808Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-08-26T20:12:32.9206039Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-08-26T20:12:32.9210304Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-08-26T20:12:32.9215035Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-08-26T20:12:32.9219891Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-08-26T20:12:32.9224992Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-08-26T20:12:32.9228309Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-08-26T20:12:32.9236641Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-08-26T20:12:32.9240635Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-08-26T20:12:32.9244266Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-08-26T20:12:32.9248405Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-08-26T20:12:32.9254977Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-08-26T20:12:32.9258696Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-08-26T20:12:32.9261975Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-08-26T20:12:32.9268369Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-08-26T20:12:32.9272846Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-08-26T20:12:32.9276306Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-08-26T20:12:32.9285409Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-08-26T20:12:32.9289326Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-08-26T20:12:32.9292520Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-08-26T20:12:32.9298649Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-08-26T20:12:32.9303990Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-08-26T20:12:32.9310767Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-08-26T20:12:32.9319440Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-08-26T20:12:32.9327503Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-08-26T20:12:32.9328630Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-08-26T20:12:32.9332487Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-08-26T20:12:32.9335851Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-08-26T20:12:32.9339172Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-08-26T20:12:32.9343451Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-08-26T20:12:32.9346581Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-08-26T20:12:32.9350075Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-08-26T20:12:32.9353229Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-08-26T20:12:32.9356129Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-08-26T20:12:32.9359509Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-08-26T20:12:32.9363009Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-08-26T20:12:32.9366288Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-08-26T20:12:32.9369456Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-08-26T20:12:32.9373086Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-08-26T20:12:32.9376522Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-08-26T20:12:32.9379698Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-08-26T20:12:32.9384936Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-08-26T20:12:32.9388656Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-08-26T20:12:32.9392862Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-08-26T20:12:32.9396732Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-08-26T20:12:32.9401915Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-08-26T20:12:32.9405159Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-08-26T20:12:32.9408768Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-08-26T20:12:32.9412120Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-08-26T20:12:32.9416691Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-08-26T20:12:32.9420660Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-08-26T20:12:32.9425357Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-08-26T20:12:32.9429498Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-08-26T20:12:32.9432725Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-08-26T20:12:32.9435989Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-08-26T20:12:32.9439388Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-08-26T20:12:32.9445983Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-08-26T20:12:32.9451096Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-08-26T20:12:32.9454932Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-08-26T20:12:32.9458250Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-08-26T20:12:32.9461958Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-08-26T20:12:32.9467027Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-08-26T20:12:32.9473132Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-08-26T20:12:32.9477005Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-08-26T20:12:32.9480629Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-08-26T20:12:32.9484142Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-08-26T20:12:32.9487991Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-08-26T20:12:32.9491220Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-08-26T20:12:32.9495001Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-08-26T20:12:32.9499204Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-08-26T20:12:32.9503188Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-08-26T20:12:32.9506384Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-08-26T20:12:32.9554783Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-08-26T20:12:32.9558743Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-08-26T20:12:32.9563165Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-08-26T20:12:32.9567270Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-08-26T20:12:32.9570331Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-08-26T20:12:32.9574431Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-08-26T20:12:32.9578024Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-08-26T20:12:32.9581676Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-08-26T20:12:32.9584787Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-08-26T20:12:32.9588010Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-08-26T20:12:32.9591423Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-08-26T20:12:32.9594487Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-08-26T20:12:32.9598500Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-08-26T20:12:32.9602378Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-08-26T20:12:32.9605870Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-08-26T20:12:32.9610014Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-08-26T20:12:32.9613318Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-08-26T20:12:32.9617152Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-08-26T20:12:32.9622778Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-08-26T20:12:32.9626665Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-08-26T20:12:32.9629809Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-08-26T20:12:32.9633515Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-08-26T20:12:32.9637071Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-08-26T20:12:32.9640911Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-08-26T20:12:32.9644537Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-08-26T20:12:32.9648443Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-08-26T20:12:32.9651531Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-08-26T20:12:32.9654486Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-08-26T20:12:32.9658308Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-08-26T20:12:32.9666829Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-08-26T20:12:32.9670947Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-08-26T20:12:32.9675722Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-08-26T20:12:32.9679924Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-08-26T20:12:32.9683203Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-08-26T20:12:32.9686459Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-08-26T20:12:32.9690153Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-08-26T20:12:32.9693628Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-08-26T20:12:32.9697202Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-08-26T20:12:32.9701829Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-08-26T20:12:32.9708076Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-08-26T20:12:32.9712088Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-08-26T20:12:32.9715238Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-08-26T20:12:32.9719510Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-08-26T20:12:32.9722669Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-08-26T20:12:32.9725940Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-08-26T20:12:32.9730092Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-08-26T20:12:32.9733071Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-08-26T20:12:32.9736012Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-08-26T20:12:32.9739395Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-08-26T20:12:32.9743305Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-08-26T20:12:32.9747840Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-08-26T20:12:32.9751474Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-08-26T20:12:32.9756465Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-08-26T20:12:32.9759974Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-08-26T20:12:32.9764214Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-08-26T20:12:32.9768088Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-08-26T20:12:32.9773005Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-08-26T20:12:32.9777743Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-08-26T20:12:32.9782015Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-08-26T20:12:32.9787680Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-08-26T20:12:32.9792082Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-08-26T20:12:32.9795718Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-08-26T20:12:32.9799547Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-08-26T20:12:32.9803042Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-08-26T20:12:32.9806434Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-08-26T20:12:32.9810039Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-08-26T20:12:32.9815017Z adding 'torch/include/torch/csrc/stable/accelerator.h' 2025-08-26T20:12:32.9819585Z adding 'torch/include/torch/csrc/stable/library.h' 2025-08-26T20:12:32.9823856Z adding 'torch/include/torch/csrc/stable/ops.h' 2025-08-26T20:12:32.9830079Z adding 'torch/include/torch/csrc/stable/stableivalue_conversions.h' 2025-08-26T20:12:32.9833316Z adding 'torch/include/torch/csrc/stable/tensor.h' 2025-08-26T20:12:32.9836498Z adding 'torch/include/torch/csrc/stable/tensor_inl.h' 2025-08-26T20:12:32.9840797Z adding 'torch/include/torch/csrc/stable/tensor_struct.h' 2025-08-26T20:12:32.9845135Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-08-26T20:12:32.9850440Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-08-26T20:12:32.9853597Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-08-26T20:12:32.9856518Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-08-26T20:12:32.9860193Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-08-26T20:12:32.9864873Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-08-26T20:12:32.9886882Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-08-26T20:12:32.9892412Z adding 'torch/include/torch/csrc/utils/init.h' 2025-08-26T20:12:32.9895581Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-08-26T20:12:32.9898612Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-08-26T20:12:32.9901641Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-08-26T20:12:32.9905523Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-08-26T20:12:32.9908634Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-08-26T20:12:32.9914286Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-08-26T20:12:32.9917897Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-08-26T20:12:32.9920860Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-08-26T20:12:32.9934618Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-08-26T20:12:32.9938967Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-08-26T20:12:32.9942048Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-08-26T20:12:32.9946350Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-08-26T20:12:32.9950009Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-08-26T20:12:32.9953979Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-08-26T20:12:32.9958204Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-08-26T20:12:32.9961272Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-08-26T20:12:32.9965668Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-08-26T20:12:32.9969284Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-08-26T20:12:32.9972368Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-08-26T20:12:32.9985762Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-08-26T20:12:32.9990626Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-08-26T20:12:32.9993980Z adding 'torch/include/torch/csrc/utils/six.h' 2025-08-26T20:12:32.9997236Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-08-26T20:12:33.0000268Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-08-26T20:12:33.0003208Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-08-26T20:12:33.0006960Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-08-26T20:12:33.0009953Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-08-26T20:12:33.0012885Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-08-26T20:12:33.0015887Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-08-26T20:12:33.0019448Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-08-26T20:12:33.0022705Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-08-26T20:12:33.0025815Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-08-26T20:12:33.0028808Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-08-26T20:12:33.0033320Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-08-26T20:12:33.0038403Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-08-26T20:12:33.0041901Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-08-26T20:12:33.0045777Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-08-26T20:12:33.0048618Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-08-26T20:12:33.0052537Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-08-26T20:12:33.0055441Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-08-26T20:12:33.0058371Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-08-26T20:12:33.0063558Z adding 'torch/include/torch/headeronly/core/ScalarType.h' 2025-08-26T20:12:33.0068487Z adding 'torch/include/torch/headeronly/cpu/vec/intrinsics.h' 2025-08-26T20:12:33.0071817Z adding 'torch/include/torch/headeronly/cpu/vec/vec_half.h' 2025-08-26T20:12:33.0076736Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vld1_neon.h' 2025-08-26T20:12:33.0080295Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vst1_neon.h' 2025-08-26T20:12:33.0085479Z adding 'torch/include/torch/headeronly/macros/Export.h' 2025-08-26T20:12:33.0093639Z adding 'torch/include/torch/headeronly/macros/Macros.h' 2025-08-26T20:12:33.0097193Z adding 'torch/include/torch/headeronly/macros/cmake_macros.h' 2025-08-26T20:12:33.0103432Z adding 'torch/include/torch/headeronly/util/BFloat16.h' 2025-08-26T20:12:33.0107641Z adding 'torch/include/torch/headeronly/util/Exception.h' 2025-08-26T20:12:33.0111051Z adding 'torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h' 2025-08-26T20:12:33.0117315Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fn.h' 2025-08-26T20:12:33.0123091Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fnuz.h' 2025-08-26T20:12:33.0129148Z adding 'torch/include/torch/headeronly/util/Float8_e5m2.h' 2025-08-26T20:12:33.0135078Z adding 'torch/include/torch/headeronly/util/Float8_e5m2fnuz.h' 2025-08-26T20:12:33.0139872Z adding 'torch/include/torch/headeronly/util/Float8_e8m0fnu.h' 2025-08-26T20:12:33.0143521Z adding 'torch/include/torch/headeronly/util/Float8_fnuz_cvt.h' 2025-08-26T20:12:33.0152466Z adding 'torch/include/torch/headeronly/util/Half.h' 2025-08-26T20:12:33.0156898Z adding 'torch/include/torch/headeronly/util/TypeSafeSignMath.h' 2025-08-26T20:12:33.0160685Z adding 'torch/include/torch/headeronly/util/bit_cast.h' 2025-08-26T20:12:33.0163894Z adding 'torch/include/torch/headeronly/util/bits.h' 2025-08-26T20:12:33.0170801Z adding 'torch/include/torch/headeronly/util/complex.h' 2025-08-26T20:12:33.0174574Z adding 'torch/include/torch/headeronly/util/floating_point_utils.h' 2025-08-26T20:12:33.0177488Z adding 'torch/include/torch/headeronly/util/qint32.h' 2025-08-26T20:12:33.0180702Z adding 'torch/include/torch/headeronly/util/qint8.h' 2025-08-26T20:12:33.0183761Z adding 'torch/include/torch/headeronly/util/quint2x4.h' 2025-08-26T20:12:33.0186752Z adding 'torch/include/torch/headeronly/util/quint4x2.h' 2025-08-26T20:12:33.0189721Z adding 'torch/include/torch/headeronly/util/quint8.h' 2025-08-26T20:12:33.0192908Z adding 'torch/include/torch/headeronly/util/shim_utils.h' 2025-08-26T20:12:33.0199602Z adding 'torch/jit/__init__.py' 2025-08-26T20:12:33.0203447Z adding 'torch/jit/_async.py' 2025-08-26T20:12:33.0206762Z adding 'torch/jit/_await.py' 2025-08-26T20:12:33.0211184Z adding 'torch/jit/_builtins.py' 2025-08-26T20:12:33.0216347Z adding 'torch/jit/_check.py' 2025-08-26T20:12:33.0221115Z adding 'torch/jit/_dataclass_impls.py' 2025-08-26T20:12:33.0224304Z adding 'torch/jit/_decomposition_utils.py' 2025-08-26T20:12:33.0229001Z adding 'torch/jit/_decompositions.py' 2025-08-26T20:12:33.0234518Z adding 'torch/jit/_freeze.py' 2025-08-26T20:12:33.0239211Z adding 'torch/jit/_fuser.py' 2025-08-26T20:12:33.0242730Z adding 'torch/jit/_ir_utils.py' 2025-08-26T20:12:33.0245751Z adding 'torch/jit/_logging.py' 2025-08-26T20:12:33.0250779Z adding 'torch/jit/_monkeytype_config.py' 2025-08-26T20:12:33.0254197Z adding 'torch/jit/_pickle.py' 2025-08-26T20:12:33.0270623Z adding 'torch/jit/_recursive.py' 2025-08-26T20:12:33.0296982Z adding 'torch/jit/_script.py' 2025-08-26T20:12:33.0303536Z adding 'torch/jit/_script.pyi' 2025-08-26T20:12:33.0308787Z adding 'torch/jit/_serialization.py' 2025-08-26T20:12:33.0324798Z adding 'torch/jit/_shape_functions.py' 2025-08-26T20:12:33.0329904Z adding 'torch/jit/_state.py' 2025-08-26T20:12:33.0349577Z adding 'torch/jit/_trace.py' 2025-08-26T20:12:33.0359002Z adding 'torch/jit/annotations.py' 2025-08-26T20:12:33.0375604Z adding 'torch/jit/frontend.py' 2025-08-26T20:12:33.0380834Z adding 'torch/jit/generate_bytecode.py' 2025-08-26T20:12:33.0383398Z adding 'torch/jit/quantized.py' 2025-08-26T20:12:33.0388726Z adding 'torch/jit/supported_ops.py' 2025-08-26T20:12:33.0392583Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-08-26T20:12:33.0396219Z adding 'torch/jit/_passes/__init__.py' 2025-08-26T20:12:33.0400604Z adding 'torch/jit/_passes/_property_propagation.py' 2025-08-26T20:12:33.0406148Z adding 'torch/jit/mobile/__init__.py' 2025-08-26T20:12:33.1361827Z adding 'torch/lib/XNNPACK.lib' 2025-08-26T20:12:33.1432170Z adding 'torch/lib/_C.lib' 2025-08-26T20:12:33.1553827Z adding 'torch/lib/aoti_custom_ops.dll' 2025-08-26T20:12:33.1567305Z adding 'torch/lib/aoti_custom_ops.lib' 2025-08-26T20:12:33.1672392Z adding 'torch/lib/backend_with_compiler.dll' 2025-08-26T20:12:33.1685881Z adding 'torch/lib/backend_with_compiler.lib' 2025-08-26T20:12:33.2192344Z adding 'torch/lib/c10.dll' 2025-08-26T20:12:33.2382495Z adding 'torch/lib/c10.lib' 2025-08-26T20:12:33.2636593Z adding 'torch/lib/c10_cuda.dll' 2025-08-26T20:12:33.2659850Z adding 'torch/lib/c10_cuda.lib' 2025-08-26T20:12:33.2672198Z adding 'torch/lib/caffe2_nvrtc.dll' 2025-08-26T20:12:33.2676018Z adding 'torch/lib/caffe2_nvrtc.lib' 2025-08-26T20:12:33.2724517Z adding 'torch/lib/cpuinfo.lib' 2025-08-26T20:12:49.7729079Z adding 'torch/lib/dnnl.lib' 2025-08-26T20:12:51.4108163Z adding 'torch/lib/fmt.lib' 2025-08-26T20:12:51.4223547Z adding 'torch/lib/jitbackend_test.dll' 2025-08-26T20:12:51.4235963Z adding 'torch/lib/jitbackend_test.lib' 2025-08-26T20:12:52.3554485Z adding 'torch/lib/kineto.lib' 2025-08-26T20:12:52.4483648Z adding 'torch/lib/libittnotify.lib' 2025-08-26T20:12:52.5939081Z adding 'torch/lib/libprotobuf-lite.lib' 2025-08-26T20:12:53.4598320Z adding 'torch/lib/libprotobuf.lib' 2025-08-26T20:12:54.4658292Z adding 'torch/lib/libprotoc.lib' 2025-08-26T20:12:54.6489616Z adding 'torch/lib/microkernels-prod.lib' 2025-08-26T20:12:54.6628901Z adding 'torch/lib/pthreadpool.lib' 2025-08-26T20:12:54.6641414Z adding 'torch/lib/shm.dll' 2025-08-26T20:12:54.6645902Z adding 'torch/lib/shm.lib' 2025-08-26T20:12:55.0235760Z adding 'torch/lib/sleef.lib' 2025-08-26T20:12:55.0438397Z adding 'torch/lib/torch.dll' 2025-08-26T20:12:55.0442132Z adding 'torch/lib/torch.lib' 2025-08-26T20:13:06.1875360Z adding 'torch/lib/torch_cpu.dll' 2025-08-26T20:13:07.2432174Z adding 'torch/lib/torch_cpu.lib' 2025-08-26T20:13:22.4057886Z adding 'torch/lib/torch_cuda.dll' 2025-08-26T20:13:22.9945392Z adding 'torch/lib/torch_cuda.lib' 2025-08-26T20:13:22.9992982Z adding 'torch/lib/torch_global_deps.dll' 2025-08-26T20:13:23.7383733Z adding 'torch/lib/torch_python.dll' 2025-08-26T20:13:23.7825149Z adding 'torch/lib/torch_python.lib' 2025-08-26T20:13:23.8046642Z adding 'torch/lib/torchbind_test.dll' 2025-08-26T20:13:23.8068739Z adding 'torch/lib/torchbind_test.lib' 2025-08-26T20:13:23.8073863Z adding 'torch/lib/libshm/alloc_info.h' 2025-08-26T20:13:23.8077397Z adding 'torch/lib/libshm/err.h' 2025-08-26T20:13:23.8080606Z adding 'torch/lib/libshm/libshm.h' 2025-08-26T20:13:23.8084696Z adding 'torch/lib/libshm/socket.h' 2025-08-26T20:13:23.8088955Z adding 'torch/lib/libshm_windows/libshm.h' 2025-08-26T20:13:23.8124605Z adding 'torch/linalg/__init__.py' 2025-08-26T20:13:23.8131291Z adding 'torch/masked/__init__.py' 2025-08-26T20:13:23.8161206Z adding 'torch/masked/_docs.py' 2025-08-26T20:13:23.8162614Z adding 'torch/masked/_ops.py' 2025-08-26T20:13:23.8168410Z adding 'torch/masked/maskedtensor/__init__.py' 2025-08-26T20:13:23.8174904Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-08-26T20:13:23.8179711Z adding 'torch/masked/maskedtensor/binary.py' 2025-08-26T20:13:23.8186086Z adding 'torch/masked/maskedtensor/core.py' 2025-08-26T20:13:23.8189543Z adding 'torch/masked/maskedtensor/creation.py' 2025-08-26T20:13:23.8192759Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-08-26T20:13:23.8197123Z adding 'torch/masked/maskedtensor/reductions.py' 2025-08-26T20:13:23.8201073Z adding 'torch/masked/maskedtensor/unary.py' 2025-08-26T20:13:23.8205188Z adding 'torch/monitor/__init__.py' 2025-08-26T20:13:23.8210395Z adding 'torch/mps/__init__.py' 2025-08-26T20:13:23.8214080Z adding 'torch/mps/event.py' 2025-08-26T20:13:23.8217625Z adding 'torch/mps/profiler.py' 2025-08-26T20:13:23.8224689Z adding 'torch/mtia/__init__.py' 2025-08-26T20:13:23.8228305Z adding 'torch/mtia/_utils.py' 2025-08-26T20:13:23.8231641Z adding 'torch/mtia/memory.py' 2025-08-26T20:13:23.8236598Z adding 'torch/multiprocessing/__init__.py' 2025-08-26T20:13:23.8239659Z adding 'torch/multiprocessing/_atfork.py' 2025-08-26T20:13:23.8243274Z adding 'torch/multiprocessing/pool.py' 2025-08-26T20:13:23.8246415Z adding 'torch/multiprocessing/queue.py' 2025-08-26T20:13:23.8255306Z adding 'torch/multiprocessing/reductions.py' 2025-08-26T20:13:23.8262656Z adding 'torch/multiprocessing/spawn.py' 2025-08-26T20:13:23.8272181Z adding 'torch/nested/__init__.py' 2025-08-26T20:13:23.8277396Z adding 'torch/nested/_internal/__init__.py' 2025-08-26T20:13:23.8280276Z adding 'torch/nested/_internal/nested_int.py' 2025-08-26T20:13:23.8289650Z adding 'torch/nested/_internal/nested_tensor.py' 2025-08-26T20:13:23.8319000Z adding 'torch/nested/_internal/ops.py' 2025-08-26T20:13:23.8339129Z adding 'torch/nested/_internal/sdpa.py' 2025-08-26T20:13:23.8341151Z adding 'torch/nn/__init__.py' 2025-08-26T20:13:23.8344376Z adding 'torch/nn/_reduction.py' 2025-08-26T20:13:23.8347676Z adding 'torch/nn/common_types.py' 2025-08-26T20:13:23.8351270Z adding 'torch/nn/cpp.py' 2025-08-26T20:13:23.8419706Z adding 'torch/nn/functional.py' 2025-08-26T20:13:23.8431909Z adding 'torch/nn/functional.pyi' 2025-08-26T20:13:23.8436526Z adding 'torch/nn/grad.py' 2025-08-26T20:13:23.8445303Z adding 'torch/nn/init.py' 2025-08-26T20:13:23.8451431Z adding 'torch/nn/parameter.py' 2025-08-26T20:13:23.8454809Z adding 'torch/nn/parameter.pyi' 2025-08-26T20:13:23.8459968Z adding 'torch/nn/attention/__init__.py' 2025-08-26T20:13:23.8463510Z adding 'torch/nn/attention/_utils.py' 2025-08-26T20:13:23.8469345Z adding 'torch/nn/attention/bias.py' 2025-08-26T20:13:23.8492806Z adding 'torch/nn/attention/flex_attention.py' 2025-08-26T20:13:23.8497959Z adding 'torch/nn/attention/experimental/__init__.py' 2025-08-26T20:13:23.8503638Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-08-26T20:13:23.8507621Z adding 'torch/nn/backends/__init__.py' 2025-08-26T20:13:23.8510405Z adding 'torch/nn/backends/thnn.py' 2025-08-26T20:13:23.8514406Z adding 'torch/nn/intrinsic/__init__.py' 2025-08-26T20:13:23.8518259Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-08-26T20:13:23.8521274Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-08-26T20:13:23.8525089Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-08-26T20:13:23.8528983Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-08-26T20:13:23.8532184Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-08-26T20:13:23.8535251Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-08-26T20:13:23.8538250Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-08-26T20:13:23.8542107Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-08-26T20:13:23.8545681Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-08-26T20:13:23.8549495Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-08-26T20:13:23.8552449Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-08-26T20:13:23.8556118Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-08-26T20:13:23.8559090Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-08-26T20:13:23.8561905Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-08-26T20:13:23.8564868Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-08-26T20:13:23.8570333Z adding 'torch/nn/modules/__init__.py' 2025-08-26T20:13:23.8576287Z adding 'torch/nn/modules/_functions.py' 2025-08-26T20:13:23.8593974Z adding 'torch/nn/modules/activation.py' 2025-08-26T20:13:23.8601540Z adding 'torch/nn/modules/adaptive.py' 2025-08-26T20:13:23.8612152Z adding 'torch/nn/modules/batchnorm.py' 2025-08-26T20:13:23.8616613Z adding 'torch/nn/modules/channelshuffle.py' 2025-08-26T20:13:23.8628737Z adding 'torch/nn/modules/container.py' 2025-08-26T20:13:23.8646023Z adding 'torch/nn/modules/conv.py' 2025-08-26T20:13:23.8652222Z adding 'torch/nn/modules/distance.py' 2025-08-26T20:13:23.8657705Z adding 'torch/nn/modules/dropout.py' 2025-08-26T20:13:23.8662260Z adding 'torch/nn/modules/flatten.py' 2025-08-26T20:13:23.8668561Z adding 'torch/nn/modules/fold.py' 2025-08-26T20:13:23.8675239Z adding 'torch/nn/modules/instancenorm.py' 2025-08-26T20:13:23.8681799Z adding 'torch/nn/modules/lazy.py' 2025-08-26T20:13:23.8687561Z adding 'torch/nn/modules/linear.py' 2025-08-26T20:13:23.8714629Z adding 'torch/nn/modules/loss.py' 2025-08-26T20:13:23.8756649Z adding 'torch/nn/modules/module.py' 2025-08-26T20:13:23.8766068Z adding 'torch/nn/modules/normalization.py' 2025-08-26T20:13:23.8771978Z adding 'torch/nn/modules/padding.py' 2025-08-26T20:13:23.8776348Z adding 'torch/nn/modules/pixelshuffle.py' 2025-08-26T20:13:23.8789058Z adding 'torch/nn/modules/pooling.py' 2025-08-26T20:13:23.8808842Z adding 'torch/nn/modules/rnn.py' 2025-08-26T20:13:23.8818398Z adding 'torch/nn/modules/sparse.py' 2025-08-26T20:13:23.8832698Z adding 'torch/nn/modules/transformer.py' 2025-08-26T20:13:23.8839151Z adding 'torch/nn/modules/upsampling.py' 2025-08-26T20:13:23.8843055Z adding 'torch/nn/modules/utils.py' 2025-08-26T20:13:23.8847243Z adding 'torch/nn/parallel/__init__.py' 2025-08-26T20:13:23.8851239Z adding 'torch/nn/parallel/_functions.py' 2025-08-26T20:13:23.8856649Z adding 'torch/nn/parallel/comm.py' 2025-08-26T20:13:23.8862688Z adding 'torch/nn/parallel/data_parallel.py' 2025-08-26T20:13:23.8904334Z adding 'torch/nn/parallel/distributed.py' 2025-08-26T20:13:23.8910892Z adding 'torch/nn/parallel/parallel_apply.py' 2025-08-26T20:13:23.8917182Z adding 'torch/nn/parallel/replicate.py' 2025-08-26T20:13:23.8922447Z adding 'torch/nn/parallel/scatter_gather.py' 2025-08-26T20:13:23.8926673Z adding 'torch/nn/qat/__init__.py' 2025-08-26T20:13:23.8930504Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-08-26T20:13:23.8934047Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-08-26T20:13:23.8937180Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-08-26T20:13:23.8941102Z adding 'torch/nn/qat/modules/__init__.py' 2025-08-26T20:13:23.8944109Z adding 'torch/nn/qat/modules/conv.py' 2025-08-26T20:13:23.8947234Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-08-26T20:13:23.8950152Z adding 'torch/nn/qat/modules/linear.py' 2025-08-26T20:13:23.8953873Z adding 'torch/nn/quantizable/__init__.py' 2025-08-26T20:13:23.8957570Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-08-26T20:13:23.8960597Z adding 'torch/nn/quantizable/modules/activation.py' 2025-08-26T20:13:23.8963698Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-08-26T20:13:23.8967704Z adding 'torch/nn/quantized/__init__.py' 2025-08-26T20:13:23.8970791Z adding 'torch/nn/quantized/functional.py' 2025-08-26T20:13:23.8974405Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-08-26T20:13:23.8978447Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-08-26T20:13:23.8981614Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-08-26T20:13:23.8984584Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-08-26T20:13:23.8987726Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-08-26T20:13:23.8990743Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-08-26T20:13:23.8993942Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-08-26T20:13:23.8997515Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-08-26T20:13:23.9001526Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-08-26T20:13:23.9004860Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-08-26T20:13:23.9007839Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-08-26T20:13:23.9011086Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-08-26T20:13:23.9015477Z adding 'torch/nn/quantized/modules/__init__.py' 2025-08-26T20:13:23.9018583Z adding 'torch/nn/quantized/modules/activation.py' 2025-08-26T20:13:23.9021712Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-08-26T20:13:23.9024706Z adding 'torch/nn/quantized/modules/conv.py' 2025-08-26T20:13:23.9027836Z adding 'torch/nn/quantized/modules/dropout.py' 2025-08-26T20:13:23.9030955Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-08-26T20:13:23.9034048Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-08-26T20:13:23.9037092Z adding 'torch/nn/quantized/modules/linear.py' 2025-08-26T20:13:23.9040337Z adding 'torch/nn/quantized/modules/normalization.py' 2025-08-26T20:13:23.9043296Z adding 'torch/nn/quantized/modules/rnn.py' 2025-08-26T20:13:23.9046561Z adding 'torch/nn/quantized/modules/utils.py' 2025-08-26T20:13:23.9050974Z adding 'torch/nn/utils/__init__.py' 2025-08-26T20:13:23.9054484Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-08-26T20:13:23.9060088Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-08-26T20:13:23.9064859Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-08-26T20:13:23.9070441Z adding 'torch/nn/utils/clip_grad.py' 2025-08-26T20:13:23.9074527Z adding 'torch/nn/utils/convert_parameters.py' 2025-08-26T20:13:23.9078920Z adding 'torch/nn/utils/fusion.py' 2025-08-26T20:13:23.9082615Z adding 'torch/nn/utils/init.py' 2025-08-26T20:13:23.9087217Z adding 'torch/nn/utils/memory_format.py' 2025-08-26T20:13:23.9097812Z adding 'torch/nn/utils/parametrizations.py' 2025-08-26T20:13:23.9111825Z adding 'torch/nn/utils/parametrize.py' 2025-08-26T20:13:23.9130401Z adding 'torch/nn/utils/prune.py' 2025-08-26T20:13:23.9140657Z adding 'torch/nn/utils/rnn.py' 2025-08-26T20:13:23.9148479Z adding 'torch/nn/utils/spectral_norm.py' 2025-08-26T20:13:23.9155267Z adding 'torch/nn/utils/stateless.py' 2025-08-26T20:13:23.9160028Z adding 'torch/nn/utils/weight_norm.py' 2025-08-26T20:13:23.9164414Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-08-26T20:13:23.9168382Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-08-26T20:13:23.9174183Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-08-26T20:13:23.9178145Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-08-26T20:13:23.9185011Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-08-26T20:13:23.9189944Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-08-26T20:13:23.9197546Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-08-26T20:13:23.9209022Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-08-26T20:13:23.9212765Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-08-26T20:13:23.9216233Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-08-26T20:13:23.9219800Z adding 'torch/numa/__init__.py' 2025-08-26T20:13:23.9227845Z adding 'torch/numa/binding.py' 2025-08-26T20:13:23.9237359Z adding 'torch/onnx/__init__.py' 2025-08-26T20:13:23.9241023Z adding 'torch/onnx/_constants.py' 2025-08-26T20:13:23.9244140Z adding 'torch/onnx/_experimental.py' 2025-08-26T20:13:23.9247541Z adding 'torch/onnx/_flags.py' 2025-08-26T20:13:23.9250951Z adding 'torch/onnx/_globals.py' 2025-08-26T20:13:23.9256737Z adding 'torch/onnx/_type_utils.py' 2025-08-26T20:13:23.9260737Z adding 'torch/onnx/errors.py' 2025-08-26T20:13:23.9264023Z adding 'torch/onnx/operators.py' 2025-08-26T20:13:23.9291942Z adding 'torch/onnx/symbolic_helper.py' 2025-08-26T20:13:23.9304431Z adding 'torch/onnx/symbolic_opset10.py' 2025-08-26T20:13:23.9322260Z adding 'torch/onnx/symbolic_opset11.py' 2025-08-26T20:13:23.9329778Z adding 'torch/onnx/symbolic_opset12.py' 2025-08-26T20:13:23.9342320Z adding 'torch/onnx/symbolic_opset13.py' 2025-08-26T20:13:23.9348595Z adding 'torch/onnx/symbolic_opset14.py' 2025-08-26T20:13:23.9352570Z adding 'torch/onnx/symbolic_opset15.py' 2025-08-26T20:13:23.9357024Z adding 'torch/onnx/symbolic_opset16.py' 2025-08-26T20:13:23.9362067Z adding 'torch/onnx/symbolic_opset17.py' 2025-08-26T20:13:23.9367492Z adding 'torch/onnx/symbolic_opset18.py' 2025-08-26T20:13:23.9370780Z adding 'torch/onnx/symbolic_opset19.py' 2025-08-26T20:13:23.9374203Z adding 'torch/onnx/symbolic_opset20.py' 2025-08-26T20:13:23.9377860Z adding 'torch/onnx/symbolic_opset7.py' 2025-08-26T20:13:23.9383967Z adding 'torch/onnx/symbolic_opset8.py' 2025-08-26T20:13:23.9451955Z adding 'torch/onnx/symbolic_opset9.py' 2025-08-26T20:13:23.9485795Z adding 'torch/onnx/utils.py' 2025-08-26T20:13:23.9512355Z adding 'torch/onnx/verification.py' 2025-08-26T20:13:23.9518120Z adding 'torch/onnx/_internal/__init__.py' 2025-08-26T20:13:23.9521346Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-08-26T20:13:23.9527587Z adding 'torch/onnx/_internal/jit_utils.py' 2025-08-26T20:13:23.9533382Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-08-26T20:13:23.9539117Z adding 'torch/onnx/_internal/registration.py' 2025-08-26T20:13:23.9543802Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-08-26T20:13:23.9606917Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-08-26T20:13:23.9618360Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-08-26T20:13:23.9623941Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-08-26T20:13:23.9629122Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-08-26T20:13:23.9633477Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-08-26T20:13:23.9678438Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-08-26T20:13:23.9678937Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-08-26T20:13:23.9679303Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-08-26T20:13:23.9679709Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-08-26T20:13:23.9680933Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-08-26T20:13:23.9684165Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-08-26T20:13:23.9687563Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-08-26T20:13:23.9691981Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-08-26T20:13:23.9695647Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-08-26T20:13:23.9703626Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-08-26T20:13:23.9709894Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-08-26T20:13:23.9714767Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-08-26T20:13:23.9723279Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-08-26T20:13:23.9727034Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-08-26T20:13:23.9731136Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-08-26T20:13:23.9734441Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-08-26T20:13:23.9740336Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-08-26T20:13:23.9744374Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-08-26T20:13:23.9747742Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-08-26T20:13:23.9751372Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-08-26T20:13:23.9755198Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-08-26T20:13:23.9758441Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-08-26T20:13:23.9762894Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-08-26T20:13:23.9768630Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-08-26T20:13:23.9772936Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-08-26T20:13:23.9776233Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-08-26T20:13:23.9779792Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-08-26T20:13:23.9784924Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-08-26T20:13:23.9789421Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-08-26T20:13:23.9793229Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-08-26T20:13:23.9809024Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-08-26T20:13:23.9818866Z adding 'torch/onnx/ops/__init__.py' 2025-08-26T20:13:23.9822575Z adding 'torch/onnx/ops/_dtype_mappings.py' 2025-08-26T20:13:23.9828696Z adding 'torch/onnx/ops/_impl.py' 2025-08-26T20:13:23.9833928Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-08-26T20:13:23.9838500Z adding 'torch/optim/__init__.py' 2025-08-26T20:13:23.9848105Z adding 'torch/optim/_adafactor.py' 2025-08-26T20:13:23.9852276Z adding 'torch/optim/_functional.py' 2025-08-26T20:13:23.9858457Z adding 'torch/optim/_muon.py' 2025-08-26T20:13:23.9865363Z adding 'torch/optim/adadelta.py' 2025-08-26T20:13:23.9873461Z adding 'torch/optim/adagrad.py' 2025-08-26T20:13:23.9886368Z adding 'torch/optim/adam.py' 2025-08-26T20:13:23.9894037Z adding 'torch/optim/adamax.py' 2025-08-26T20:13:23.9898936Z adding 'torch/optim/adamw.py' 2025-08-26T20:13:23.9905616Z adding 'torch/optim/asgd.py' 2025-08-26T20:13:23.9913279Z adding 'torch/optim/lbfgs.py' 2025-08-26T20:13:23.9937354Z adding 'torch/optim/lr_scheduler.py' 2025-08-26T20:13:23.9947960Z adding 'torch/optim/nadam.py' 2025-08-26T20:13:23.9966240Z adding 'torch/optim/optimizer.py' 2025-08-26T20:13:23.9975913Z adding 'torch/optim/radam.py' 2025-08-26T20:13:23.9984004Z adding 'torch/optim/rmsprop.py' 2025-08-26T20:13:23.9991644Z adding 'torch/optim/rprop.py' 2025-08-26T20:13:23.9999600Z adding 'torch/optim/sgd.py' 2025-08-26T20:13:24.0005370Z adding 'torch/optim/sparse_adam.py' 2025-08-26T20:13:24.0013304Z adding 'torch/optim/swa_utils.py' 2025-08-26T20:13:24.0017911Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-08-26T20:13:24.0020916Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-08-26T20:13:24.0025595Z adding 'torch/package/__init__.py' 2025-08-26T20:13:24.0029085Z adding 'torch/package/_digraph.py' 2025-08-26T20:13:24.0032801Z adding 'torch/package/_directory_reader.py' 2025-08-26T20:13:24.0037049Z adding 'torch/package/_importlib.py' 2025-08-26T20:13:24.0040167Z adding 'torch/package/_mangling.py' 2025-08-26T20:13:24.0043828Z adding 'torch/package/_mock.py' 2025-08-26T20:13:24.0048648Z adding 'torch/package/_package_pickler.py' 2025-08-26T20:13:24.0051528Z adding 'torch/package/_package_unpickler.py' 2025-08-26T20:13:24.0055537Z adding 'torch/package/_stdlib.py' 2025-08-26T20:13:24.0060160Z adding 'torch/package/file_structure_representation.py' 2025-08-26T20:13:24.0063753Z adding 'torch/package/find_file_dependencies.py' 2025-08-26T20:13:24.0067682Z adding 'torch/package/glob_group.py' 2025-08-26T20:13:24.0073227Z adding 'torch/package/importer.py' 2025-08-26T20:13:24.0111097Z adding 'torch/package/package_exporter.py' 2025-08-26T20:13:24.0111441Z adding 'torch/package/package_importer.py' 2025-08-26T20:13:24.0112315Z adding 'torch/package/analyze/__init__.py' 2025-08-26T20:13:24.0115547Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-08-26T20:13:24.0118697Z adding 'torch/package/analyze/is_from_package.py' 2025-08-26T20:13:24.0123237Z adding 'torch/package/analyze/trace_dependencies.py' 2025-08-26T20:13:24.0126587Z adding 'torch/profiler/__init__.py' 2025-08-26T20:13:24.0144459Z adding 'torch/profiler/_memory_profiler.py' 2025-08-26T20:13:24.0154277Z adding 'torch/profiler/_pattern_matcher.py' 2025-08-26T20:13:24.0162375Z adding 'torch/profiler/_utils.py' 2025-08-26T20:13:24.0165295Z adding 'torch/profiler/itt.py' 2025-08-26T20:13:24.0180454Z adding 'torch/profiler/profiler.py' 2025-08-26T20:13:24.0184551Z adding 'torch/profiler/python_tracer.py' 2025-08-26T20:13:24.0189017Z adding 'torch/quantization/__init__.py' 2025-08-26T20:13:24.0193107Z adding 'torch/quantization/_numeric_suite.py' 2025-08-26T20:13:24.0195395Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-08-26T20:13:24.0199247Z adding 'torch/quantization/_quantized_conversions.py' 2025-08-26T20:13:24.0202463Z adding 'torch/quantization/fake_quantize.py' 2025-08-26T20:13:24.0205553Z adding 'torch/quantization/fuse_modules.py' 2025-08-26T20:13:24.0208550Z adding 'torch/quantization/fuser_method_mappings.py' 2025-08-26T20:13:24.0211598Z adding 'torch/quantization/observer.py' 2025-08-26T20:13:24.0214608Z adding 'torch/quantization/qconfig.py' 2025-08-26T20:13:24.0217497Z adding 'torch/quantization/quant_type.py' 2025-08-26T20:13:24.0220543Z adding 'torch/quantization/quantization_mappings.py' 2025-08-26T20:13:24.0223489Z adding 'torch/quantization/quantize.py' 2025-08-26T20:13:24.0226573Z adding 'torch/quantization/quantize_fx.py' 2025-08-26T20:13:24.0229375Z adding 'torch/quantization/quantize_jit.py' 2025-08-26T20:13:24.0232214Z adding 'torch/quantization/stubs.py' 2025-08-26T20:13:24.0235152Z adding 'torch/quantization/utils.py' 2025-08-26T20:13:24.0239228Z adding 'torch/quantization/fx/__init__.py' 2025-08-26T20:13:24.0242380Z adding 'torch/quantization/fx/_equalize.py' 2025-08-26T20:13:24.0245439Z adding 'torch/quantization/fx/convert.py' 2025-08-26T20:13:24.0249424Z adding 'torch/quantization/fx/fuse.py' 2025-08-26T20:13:24.0251422Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-08-26T20:13:24.0254333Z adding 'torch/quantization/fx/graph_module.py' 2025-08-26T20:13:24.0257219Z adding 'torch/quantization/fx/match_utils.py' 2025-08-26T20:13:24.0260286Z adding 'torch/quantization/fx/pattern_utils.py' 2025-08-26T20:13:24.0263184Z adding 'torch/quantization/fx/prepare.py' 2025-08-26T20:13:24.0266337Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-08-26T20:13:24.0269279Z adding 'torch/quantization/fx/quantization_types.py' 2025-08-26T20:13:24.0272207Z adding 'torch/quantization/fx/utils.py' 2025-08-26T20:13:24.0277028Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-08-26T20:13:24.0281914Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-08-26T20:13:24.0285462Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-08-26T20:13:24.0289791Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-08-26T20:13:24.0302906Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-08-26T20:13:24.0307322Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-08-26T20:13:24.0311107Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-08-26T20:13:24.0315178Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-08-26T20:13:24.0319145Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-08-26T20:13:24.0322797Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-08-26T20:13:24.0327332Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-08-26T20:13:24.0358295Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-08-26T20:13:24.0363722Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-08-26T20:13:24.0368855Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-08-26T20:13:24.0372845Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-08-26T20:13:24.0382317Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-08-26T20:13:24.0384648Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-08-26T20:13:24.0390771Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-08-26T20:13:24.0397203Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-08-26T20:13:24.0401111Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-08-26T20:13:24.0404697Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-08-26T20:13:24.0408103Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-08-26T20:13:24.0411103Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-08-26T20:13:24.0414673Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-08-26T20:13:24.0422915Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-08-26T20:13:24.0426769Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-08-26T20:13:24.0431722Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-08-26T20:13:24.0434835Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-08-26T20:13:24.0438261Z adding 'torch/signal/__init__.py' 2025-08-26T20:13:24.0441880Z adding 'torch/signal/windows/__init__.py' 2025-08-26T20:13:24.0448824Z adding 'torch/signal/windows/windows.py' 2025-08-26T20:13:24.0459866Z adding 'torch/sparse/__init__.py' 2025-08-26T20:13:24.0466982Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-08-26T20:13:24.0471636Z adding 'torch/sparse/_semi_structured_ops.py' 2025-08-26T20:13:24.0497779Z adding 'torch/sparse/_triton_ops.py' 2025-08-26T20:13:24.0618411Z adding 'torch/sparse/_triton_ops_meta.py' 2025-08-26T20:13:24.0638726Z adding 'torch/sparse/semi_structured.py' 2025-08-26T20:13:24.0649016Z adding 'torch/special/__init__.py' 2025-08-26T20:13:24.0818983Z adding 'torch/test/CppSignature_test.exe' 2025-08-26T20:13:24.1077009Z adding 'torch/test/Dict_test.exe' 2025-08-26T20:13:24.1263950Z adding 'torch/test/Dimname_test.exe' 2025-08-26T20:13:24.1493574Z adding 'torch/test/IListRef_test.exe' 2025-08-26T20:13:24.1735354Z adding 'torch/test/KernelFunction_test.exe' 2025-08-26T20:13:24.2068694Z adding 'torch/test/List_test.exe' 2025-08-26T20:13:24.2320984Z adding 'torch/test/MaybeOwned_test.exe' 2025-08-26T20:13:24.2552463Z adding 'torch/test/NamedTensor_test.exe' 2025-08-26T20:13:24.2758344Z adding 'torch/test/StorageUtils_test.exe' 2025-08-26T20:13:24.2973453Z adding 'torch/test/apply_utils_test.exe' 2025-08-26T20:13:24.3203997Z adding 'torch/test/atest.exe' 2025-08-26T20:13:24.3412058Z adding 'torch/test/backend_fallback_test.exe' 2025-08-26T20:13:24.3658795Z adding 'torch/test/basic.exe' 2025-08-26T20:13:24.3867212Z adding 'torch/test/broadcast_test.exe' 2025-08-26T20:13:24.4051239Z adding 'torch/test/c10_AllocatorConfig_test.exe' 2025-08-26T20:13:24.4219144Z adding 'torch/test/c10_ArrayRef_test.exe' 2025-08-26T20:13:24.4389990Z adding 'torch/test/c10_Bitset_test.exe' 2025-08-26T20:13:24.4547744Z adding 'torch/test/c10_CompileTimeFunctionPointer_test.exe' 2025-08-26T20:13:24.4705761Z adding 'torch/test/c10_ConstexprCrc_test.exe' 2025-08-26T20:13:24.4864409Z adding 'torch/test/c10_DeadlockDetection_test.exe' 2025-08-26T20:13:24.5036220Z adding 'torch/test/c10_DeviceGuard_test.exe' 2025-08-26T20:13:24.5216376Z adding 'torch/test/c10_Device_test.exe' 2025-08-26T20:13:24.5413014Z adding 'torch/test/c10_DispatchKeySet_test.exe' 2025-08-26T20:13:24.5602760Z adding 'torch/test/c10_Enumerate_test.exe' 2025-08-26T20:13:24.5775239Z adding 'torch/test/c10_Half_test.exe' 2025-08-26T20:13:24.5954606Z adding 'torch/test/c10_InlineDeviceGuard_test.exe' 2025-08-26T20:13:24.6141169Z adding 'torch/test/c10_InlineStreamGuard_test.exe' 2025-08-26T20:13:24.6319684Z adding 'torch/test/c10_IntrusiveList_test.exe' 2025-08-26T20:13:24.6504329Z adding 'torch/test/c10_LeftRight_test.exe' 2025-08-26T20:13:24.6683624Z adding 'torch/test/c10_Metaprogramming_test.exe' 2025-08-26T20:13:24.6863686Z adding 'torch/test/c10_NetworkFlow_test.exe' 2025-08-26T20:13:24.7038035Z adding 'torch/test/c10_Scalar_test.exe' 2025-08-26T20:13:24.7198633Z adding 'torch/test/c10_Semaphore_test.exe' 2025-08-26T20:13:24.7382698Z adding 'torch/test/c10_SizesAndStrides_test.exe' 2025-08-26T20:13:24.7537990Z adding 'torch/test/c10_StreamGuard_test.exe' 2025-08-26T20:13:24.7707341Z adding 'torch/test/c10_SymInt_test.exe' 2025-08-26T20:13:24.7875737Z adding 'torch/test/c10_Synchronized_test.exe' 2025-08-26T20:13:24.8058657Z adding 'torch/test/c10_ThreadLocal_test.exe' 2025-08-26T20:13:24.8232799Z adding 'torch/test/c10_TypeIndex_test.exe' 2025-08-26T20:13:24.8392318Z adding 'torch/test/c10_TypeList_test.exe' 2025-08-26T20:13:24.8548518Z adding 'torch/test/c10_TypeTraits_test.exe' 2025-08-26T20:13:24.8723524Z adding 'torch/test/c10_accumulate_test.exe' 2025-08-26T20:13:24.8911665Z adding 'torch/test/c10_bfloat16_test.exe' 2025-08-26T20:13:24.9076899Z adding 'torch/test/c10_bit_cast_test.exe' 2025-08-26T20:13:24.9276413Z adding 'torch/test/c10_complex_math_test.exe' 2025-08-26T20:13:24.9464300Z adding 'torch/test/c10_complex_test.exe' 2025-08-26T20:13:24.9657767Z adding 'torch/test/c10_cow_test.exe' 2025-08-26T20:13:24.9820507Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_1_var_test.exe' 2025-08-26T20:13:24.9978697Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_stream.exe' 2025-08-26T20:13:25.0140879Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe' 2025-08-26T20:13:25.0297123Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_from_2_processes.exe' 2025-08-26T20:13:25.0455146Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe' 2025-08-26T20:13:25.0617370Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe' 2025-08-26T20:13:25.0777161Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe' 2025-08-26T20:13:25.0933980Z adding 'torch/test/c10_cuda_CUDATest.exe' 2025-08-26T20:13:25.1099496Z adding 'torch/test/c10_error_test.exe' 2025-08-26T20:13:25.1280356Z adding 'torch/test/c10_exception_test.exe' 2025-08-26T20:13:25.1445159Z adding 'torch/test/c10_flags_test.exe' 2025-08-26T20:13:25.1612885Z adding 'torch/test/c10_generic_math_test.exe' 2025-08-26T20:13:25.1762520Z adding 'torch/test/c10_intrusive_ptr_benchmark.exe' 2025-08-26T20:13:25.2177641Z adding 'torch/test/c10_intrusive_ptr_test.exe' 2025-08-26T20:13:25.2375622Z adding 'torch/test/c10_irange_test.exe' 2025-08-26T20:13:25.2549316Z adding 'torch/test/c10_lazy_test.exe' 2025-08-26T20:13:25.2749472Z adding 'torch/test/c10_logging_test.exe' 2025-08-26T20:13:25.2983409Z adding 'torch/test/c10_optional_test.exe' 2025-08-26T20:13:25.3188606Z adding 'torch/test/c10_ordered_preserving_dict_test.exe' 2025-08-26T20:13:25.3368116Z adding 'torch/test/c10_registry_test.exe' 2025-08-26T20:13:25.3725863Z adding 'torch/test/c10_small_vector_test.exe' 2025-08-26T20:13:25.3906756Z adding 'torch/test/c10_ssize_test.exe' 2025-08-26T20:13:25.4097982Z adding 'torch/test/c10_string_util_test.exe' 2025-08-26T20:13:25.4258366Z adding 'torch/test/c10_string_view_test.exe' 2025-08-26T20:13:25.4445443Z adding 'torch/test/c10_tempfile_test.exe' 2025-08-26T20:13:25.4628794Z adding 'torch/test/c10_typeid_test.exe' 2025-08-26T20:13:25.4826818Z adding 'torch/test/cpu_allocator_test.exe' 2025-08-26T20:13:25.5046814Z adding 'torch/test/cpu_generator_test.exe' 2025-08-26T20:13:25.5270251Z adding 'torch/test/cpu_profiling_allocator_test.exe' 2025-08-26T20:13:25.5596441Z adding 'torch/test/cpu_rng_test.exe' 2025-08-26T20:13:25.5781727Z adding 'torch/test/cuda_allocatorTraceTracker_test.exe' 2025-08-26T20:13:25.5970511Z adding 'torch/test/cuda_allocator_test.exe' 2025-08-26T20:13:25.6128967Z adding 'torch/test/cuda_apply_test.exe' 2025-08-26T20:13:25.6338960Z adding 'torch/test/cuda_atomic_ops_test.exe' 2025-08-26T20:13:25.6559602Z adding 'torch/test/cuda_caching_host_allocator_test.exe' 2025-08-26T20:13:25.6791315Z adding 'torch/test/cuda_complex_math_test.exe' 2025-08-26T20:13:25.6991232Z adding 'torch/test/cuda_complex_test.exe' 2025-08-26T20:13:25.7209542Z adding 'torch/test/cuda_cub_test.exe' 2025-08-26T20:13:25.7403818Z adding 'torch/test/cuda_cudnn_test.exe' 2025-08-26T20:13:25.7565698Z adding 'torch/test/cuda_device_test.exe' 2025-08-26T20:13:25.7846888Z adding 'torch/test/cuda_distributions_test.exe' 2025-08-26T20:13:25.8054624Z adding 'torch/test/cuda_dlconvertor_test.exe' 2025-08-26T20:13:25.8218256Z adding 'torch/test/cuda_exchange_device_test.exe' 2025-08-26T20:13:25.8435446Z adding 'torch/test/cuda_generator_test.exe' 2025-08-26T20:13:25.8632967Z adding 'torch/test/cuda_half_test.exe' 2025-08-26T20:13:25.8805603Z adding 'torch/test/cuda_integer_divider_test.exe' 2025-08-26T20:13:25.9000040Z adding 'torch/test/cuda_optional_test.exe' 2025-08-26T20:13:25.9201544Z adding 'torch/test/cuda_packedtensoraccessor_test.exe' 2025-08-26T20:13:25.9409665Z adding 'torch/test/cuda_reportMemoryUsage_test.exe' 2025-08-26T20:13:25.9610573Z adding 'torch/test/cuda_stream_test.exe' 2025-08-26T20:13:25.9821646Z adding 'torch/test/cuda_vectorized_test.exe' 2025-08-26T20:13:26.0018115Z adding 'torch/test/dlconvertor_test.exe' 2025-08-26T20:13:26.0239550Z adding 'torch/test/extension_backend_test.exe' 2025-08-26T20:13:26.0455424Z adding 'torch/test/half_test.exe' 2025-08-26T20:13:26.0704566Z adding 'torch/test/inline_container_test.exe' 2025-08-26T20:13:26.1049932Z adding 'torch/test/ivalue_test.exe' 2025-08-26T20:13:26.1453566Z adding 'torch/test/kernel_function_legacy_test.exe' 2025-08-26T20:13:26.1801076Z adding 'torch/test/kernel_function_test.exe' 2025-08-26T20:13:26.2216774Z adding 'torch/test/kernel_lambda_legacy_test.exe' 2025-08-26T20:13:26.2574950Z adding 'torch/test/kernel_lambda_test.exe' 2025-08-26T20:13:26.2850772Z adding 'torch/test/kernel_stackbased_test.exe' 2025-08-26T20:13:26.3013194Z adding 'torch/test/lazy_tensor_test.exe' 2025-08-26T20:13:26.3294471Z adding 'torch/test/legacy_vmap_test.exe' 2025-08-26T20:13:26.3637240Z adding 'torch/test/make_boxed_from_unboxed_functor_test.exe' 2025-08-26T20:13:26.3856325Z adding 'torch/test/math_kernel_test.exe' 2025-08-26T20:13:26.4057757Z adding 'torch/test/memory_format_test.exe' 2025-08-26T20:13:26.4263235Z adding 'torch/test/memory_overlapping_test.exe' 2025-08-26T20:13:26.4464890Z adding 'torch/test/mobile_memory_cleanup.exe' 2025-08-26T20:13:26.4689254Z adding 'torch/test/native_test.exe' 2025-08-26T20:13:26.4848786Z adding 'torch/test/op_allowlist_test.exe' 2025-08-26T20:13:26.5651341Z adding 'torch/test/op_registration_test.exe' 2025-08-26T20:13:26.5872753Z adding 'torch/test/operator_name_test.exe' 2025-08-26T20:13:26.6067823Z adding 'torch/test/operators_test.exe' 2025-08-26T20:13:26.6283752Z adding 'torch/test/packedtensoraccessor_test.exe' 2025-08-26T20:13:26.6555003Z adding 'torch/test/pow_test.exe' 2025-08-26T20:13:26.6782167Z adding 'torch/test/quantized_test.exe' 2025-08-26T20:13:26.6985968Z adding 'torch/test/reduce_ops_test.exe' 2025-08-26T20:13:26.7189410Z adding 'torch/test/reportMemoryUsage_test.exe' 2025-08-26T20:13:26.7422585Z adding 'torch/test/scalar_tensor_test.exe' 2025-08-26T20:13:26.7655829Z adding 'torch/test/scalar_test.exe' 2025-08-26T20:13:26.7861717Z adding 'torch/test/stride_properties_test.exe' 2025-08-26T20:13:26.8130261Z adding 'torch/test/tensor_iterator_test.exe' 2025-08-26T20:13:26.8380892Z adding 'torch/test/test_parallel.exe' 2025-08-26T20:13:26.8584741Z adding 'torch/test/thread_init_test.exe' 2025-08-26T20:13:26.8761462Z adding 'torch/test/type_ptr_test.exe' 2025-08-26T20:13:26.9001348Z adding 'torch/test/type_test.exe' 2025-08-26T20:13:26.9212337Z adding 'torch/test/undefined_tensor_test.exe' 2025-08-26T20:13:26.9422577Z adding 'torch/test/verify_api_visibility.exe' 2025-08-26T20:13:26.9628219Z adding 'torch/test/weakref_test.exe' 2025-08-26T20:13:26.9843648Z adding 'torch/test/wrapdim_test.exe' 2025-08-26T20:13:27.0053322Z adding 'torch/test/xla_tensor_test.exe' 2025-08-26T20:13:27.0065150Z adding 'torch/testing/__init__.py' 2025-08-26T20:13:27.0086093Z adding 'torch/testing/_comparison.py' 2025-08-26T20:13:27.0093688Z adding 'torch/testing/_creation.py' 2025-08-26T20:13:27.0097556Z adding 'torch/testing/_utils.py' 2025-08-26T20:13:27.0105722Z adding 'torch/testing/_internal/__init__.py' 2025-08-26T20:13:27.0116808Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-08-26T20:13:27.0126848Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-08-26T20:13:27.0134576Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-08-26T20:13:27.0143987Z adding 'torch/testing/_internal/common_cuda.py' 2025-08-26T20:13:27.0174804Z adding 'torch/testing/_internal/common_device_type.py' 2025-08-26T20:13:27.0180462Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-08-26T20:13:27.0205543Z adding 'torch/testing/_internal/common_distributed.py' 2025-08-26T20:13:27.0210973Z adding 'torch/testing/_internal/common_dtype.py' 2025-08-26T20:13:27.0230436Z adding 'torch/testing/_internal/common_fsdp.py' 2025-08-26T20:13:27.0238174Z adding 'torch/testing/_internal/common_jit.py' 2025-08-26T20:13:27.0497069Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-08-26T20:13:27.0529039Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-08-26T20:13:27.0562091Z adding 'torch/testing/_internal/common_modules.py' 2025-08-26T20:13:27.0574930Z adding 'torch/testing/_internal/common_mps.py' 2025-08-26T20:13:27.0610381Z adding 'torch/testing/_internal/common_nn.py' 2025-08-26T20:13:27.0631046Z adding 'torch/testing/_internal/common_optimizers.py' 2025-08-26T20:13:27.0637793Z adding 'torch/testing/_internal/common_pruning.py' 2025-08-26T20:13:27.0668797Z adding 'torch/testing/_internal/common_quantization.py' 2025-08-26T20:13:27.0679090Z adding 'torch/testing/_internal/common_quantized.py' 2025-08-26T20:13:27.0685108Z adding 'torch/testing/_internal/common_subclass.py' 2025-08-26T20:13:27.0777155Z adding 'torch/testing/_internal/common_utils.py' 2025-08-26T20:13:27.0793106Z adding 'torch/testing/_internal/composite_compliance.py' 2025-08-26T20:13:27.0800893Z adding 'torch/testing/_internal/custom_op_db.py' 2025-08-26T20:13:27.0806025Z adding 'torch/testing/_internal/custom_tensor.py' 2025-08-26T20:13:27.0811551Z adding 'torch/testing/_internal/dist_utils.py' 2025-08-26T20:13:27.0816485Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-08-26T20:13:27.0819989Z adding 'torch/testing/_internal/fake_config_module.py' 2025-08-26T20:13:27.0823510Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-08-26T20:13:27.0826745Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-08-26T20:13:27.0831880Z adding 'torch/testing/_internal/hop_db.py' 2025-08-26T20:13:27.0839665Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-08-26T20:13:27.0846394Z adding 'torch/testing/_internal/inductor_utils.py' 2025-08-26T20:13:27.0874619Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-08-26T20:13:27.0878976Z adding 'torch/testing/_internal/jit_utils.py' 2025-08-26T20:13:27.0886962Z adding 'torch/testing/_internal/logging_tensor.py' 2025-08-26T20:13:27.0892119Z adding 'torch/testing/_internal/logging_utils.py' 2025-08-26T20:13:27.0896163Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-08-26T20:13:27.0899659Z adding 'torch/testing/_internal/static_module.py' 2025-08-26T20:13:27.0903396Z adding 'torch/testing/_internal/subclasses.py' 2025-08-26T20:13:27.0908263Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-08-26T20:13:27.0916296Z adding 'torch/testing/_internal/triton_utils.py' 2025-08-26T20:13:27.0921568Z adding 'torch/testing/_internal/two_tensor.py' 2025-08-26T20:13:27.0925427Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-08-26T20:13:27.0928888Z adding 'torch/testing/_internal/data/__init__.py' 2025-08-26T20:13:27.0931707Z adding 'torch/testing/_internal/data/network1.py' 2025-08-26T20:13:27.0935221Z adding 'torch/testing/_internal/data/network2.py' 2025-08-26T20:13:27.0939127Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-08-26T20:13:27.0943522Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-08-26T20:13:27.0947982Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-08-26T20:13:27.0956978Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-08-26T20:13:27.1057915Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-08-26T20:13:27.1071062Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-08-26T20:13:27.1074277Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-08-26T20:13:27.1081513Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-08-26T20:13:27.1086647Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-08-26T20:13:27.1090573Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-08-26T20:13:27.1093698Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-08-26T20:13:27.1098204Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-08-26T20:13:27.1102103Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-08-26T20:13:27.1105471Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-08-26T20:13:27.1109008Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-08-26T20:13:27.1118053Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-08-26T20:13:27.1122183Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-08-26T20:13:27.1125865Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-08-26T20:13:27.1133307Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-08-26T20:13:27.1137719Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-08-26T20:13:27.1166215Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-08-26T20:13:27.1173833Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-08-26T20:13:27.1179982Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-08-26T20:13:27.1184458Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-08-26T20:13:27.1188369Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-08-26T20:13:27.1250957Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-08-26T20:13:27.1260567Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-08-26T20:13:27.1264225Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-08-26T20:13:27.1268762Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-08-26T20:13:27.1274780Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-08-26T20:13:27.1279079Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-08-26T20:13:27.1282952Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-08-26T20:13:27.1298394Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-08-26T20:13:27.1304405Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-08-26T20:13:27.1308343Z adding 'torch/testing/_internal/generated/__init__.py' 2025-08-26T20:13:27.1363742Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-08-26T20:13:27.1389518Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-08-26T20:13:27.1434800Z adding 'torch/testing/_internal/opinfo/core.py' 2025-08-26T20:13:27.1442068Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-08-26T20:13:27.1448248Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-08-26T20:13:27.1452424Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-08-26T20:13:27.1461587Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-08-26T20:13:27.1468688Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-08-26T20:13:27.1490228Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-08-26T20:13:27.1508477Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-08-26T20:13:27.1515539Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-08-26T20:13:27.1525041Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-08-26T20:13:27.1531951Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-08-26T20:13:27.1536389Z adding 'torch/testing/_internal/optests/__init__.py' 2025-08-26T20:13:27.1540780Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-08-26T20:13:27.1545324Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-08-26T20:13:27.1548395Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-08-26T20:13:27.1560326Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-08-26T20:13:27.1564873Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-08-26T20:13:27.1568580Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-08-26T20:13:27.1571400Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-08-26T20:13:27.1574171Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-08-26T20:13:27.1579464Z adding 'torch/utils/__init__.py' 2025-08-26T20:13:27.1583314Z adding 'torch/utils/_appending_byte_serializer.py' 2025-08-26T20:13:27.1587387Z adding 'torch/utils/_backport_slots.py' 2025-08-26T20:13:27.1598717Z adding 'torch/utils/_config_module.py' 2025-08-26T20:13:27.1602653Z adding 'torch/utils/_config_typing.pyi' 2025-08-26T20:13:27.1608177Z adding 'torch/utils/_content_store.py' 2025-08-26T20:13:27.1612791Z adding 'torch/utils/_contextlib.py' 2025-08-26T20:13:27.1616244Z adding 'torch/utils/_cpp_embed_headers.py' 2025-08-26T20:13:27.1619520Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-08-26T20:13:27.1630743Z adding 'torch/utils/_cxx_pytree.py' 2025-08-26T20:13:27.1635289Z adding 'torch/utils/_device.py' 2025-08-26T20:13:27.1638389Z adding 'torch/utils/_dtype_abbrs.py' 2025-08-26T20:13:27.1641423Z adding 'torch/utils/_exposed_in.py' 2025-08-26T20:13:27.1644650Z adding 'torch/utils/_filelock.py' 2025-08-26T20:13:27.1648151Z adding 'torch/utils/_foreach_utils.py' 2025-08-26T20:13:27.1651354Z adding 'torch/utils/_functools.py' 2025-08-26T20:13:27.1655852Z adding 'torch/utils/_get_clean_triton.py' 2025-08-26T20:13:27.1658970Z adding 'torch/utils/_helion.py' 2025-08-26T20:13:27.1662065Z adding 'torch/utils/_import_utils.py' 2025-08-26T20:13:27.1664898Z adding 'torch/utils/_mode_utils.py' 2025-08-26T20:13:27.1669367Z adding 'torch/utils/_ordered_set.py' 2025-08-26T20:13:27.1681444Z adding 'torch/utils/_python_dispatch.py' 2025-08-26T20:13:27.1705522Z adding 'torch/utils/_pytree.py' 2025-08-26T20:13:27.1710317Z adding 'torch/utils/_stats.py' 2025-08-26T20:13:27.1713364Z adding 'torch/utils/_thunk.py' 2025-08-26T20:13:27.1718983Z adding 'torch/utils/_traceback.py' 2025-08-26T20:13:27.1727219Z adding 'torch/utils/_triton.py' 2025-08-26T20:13:27.1730392Z adding 'torch/utils/_typing_utils.py' 2025-08-26T20:13:27.1733868Z adding 'torch/utils/_zip.py' 2025-08-26T20:13:27.1742126Z adding 'torch/utils/backend_registration.py' 2025-08-26T20:13:27.1753019Z adding 'torch/utils/bundled_inputs.py' 2025-08-26T20:13:27.1782310Z adding 'torch/utils/checkpoint.py' 2025-08-26T20:13:27.1794850Z adding 'torch/utils/collect_env.py' 2025-08-26T20:13:27.1798596Z adding 'torch/utils/cpp_backtrace.py' 2025-08-26T20:13:27.1843999Z adding 'torch/utils/cpp_extension.py' 2025-08-26T20:13:27.1850095Z adding 'torch/utils/deterministic.py' 2025-08-26T20:13:27.1854690Z adding 'torch/utils/dlpack.py' 2025-08-26T20:13:27.1858223Z adding 'torch/utils/file_baton.py' 2025-08-26T20:13:27.1869688Z adding 'torch/utils/flop_counter.py' 2025-08-26T20:13:27.1878555Z adding 'torch/utils/hooks.py' 2025-08-26T20:13:27.1885239Z adding 'torch/utils/mkldnn.py' 2025-08-26T20:13:27.1891882Z adding 'torch/utils/mobile_optimizer.py' 2025-08-26T20:13:27.1896527Z adding 'torch/utils/model_zoo.py' 2025-08-26T20:13:27.1902671Z adding 'torch/utils/module_tracker.py' 2025-08-26T20:13:27.1909072Z adding 'torch/utils/show_pickle.py' 2025-08-26T20:13:27.1915998Z adding 'torch/utils/throughput_benchmark.py' 2025-08-26T20:13:27.1924927Z adding 'torch/utils/weak.py' 2025-08-26T20:13:27.1930475Z adding 'torch/utils/_strobelight/__init__.py' 2025-08-26T20:13:27.1936406Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-08-26T20:13:27.1940599Z adding 'torch/utils/_sympy/__init__.py' 2025-08-26T20:13:27.1960983Z adding 'torch/utils/_sympy/functions.py' 2025-08-26T20:13:27.1967242Z adding 'torch/utils/_sympy/interp.py' 2025-08-26T20:13:27.1971972Z adding 'torch/utils/_sympy/numbers.py' 2025-08-26T20:13:27.1979470Z adding 'torch/utils/_sympy/printers.py' 2025-08-26T20:13:27.1985850Z adding 'torch/utils/_sympy/reference.py' 2025-08-26T20:13:27.1989758Z adding 'torch/utils/_sympy/singleton_int.py' 2025-08-26T20:13:27.1994219Z adding 'torch/utils/_sympy/solve.py' 2025-08-26T20:13:27.1998308Z adding 'torch/utils/_sympy/symbol.py' 2025-08-26T20:13:27.2011490Z adding 'torch/utils/_sympy/value_ranges.py' 2025-08-26T20:13:27.2016601Z adding 'torch/utils/backcompat/__init__.py' 2025-08-26T20:13:27.2020279Z adding 'torch/utils/benchmark/__init__.py' 2025-08-26T20:13:27.2023877Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-08-26T20:13:27.2027370Z adding 'torch/utils/benchmark/examples/compare.py' 2025-08-26T20:13:27.2030966Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-08-26T20:13:27.2035040Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-08-26T20:13:27.2038187Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-08-26T20:13:27.2042260Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-08-26T20:13:27.2047556Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-08-26T20:13:27.2051283Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-08-26T20:13:27.2055010Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-08-26T20:13:27.2058606Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-08-26T20:13:27.2062322Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-08-26T20:13:27.2065935Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-08-26T20:13:27.2069798Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-08-26T20:13:27.2072888Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-08-26T20:13:27.2079297Z adding 'torch/utils/benchmark/utils/common.py' 2025-08-26T20:13:27.2086043Z adding 'torch/utils/benchmark/utils/compare.py' 2025-08-26T20:13:27.2090990Z adding 'torch/utils/benchmark/utils/compile.py' 2025-08-26T20:13:27.2095838Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-08-26T20:13:27.2103819Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-08-26T20:13:27.2108505Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-08-26T20:13:27.2111838Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-08-26T20:13:27.2120416Z adding 'torch/utils/benchmark/utils/timer.py' 2025-08-26T20:13:27.2124818Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-08-26T20:13:27.2129222Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-08-26T20:13:27.2132495Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-08-26T20:13:27.2135872Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-08-26T20:13:27.2149385Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-08-26T20:13:27.2202214Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-08-26T20:13:27.2215094Z adding 'torch/utils/bottleneck/__init__.py' 2025-08-26T20:13:27.2219591Z adding 'torch/utils/bottleneck/__main__.py' 2025-08-26T20:13:27.2223907Z adding 'torch/utils/data/__init__.py' 2025-08-26T20:13:27.2226902Z adding 'torch/utils/data/backward_compatibility.py' 2025-08-26T20:13:27.2257007Z adding 'torch/utils/data/dataloader.py' 2025-08-26T20:13:27.2266444Z adding 'torch/utils/data/dataset.py' 2025-08-26T20:13:27.2271273Z adding 'torch/utils/data/distributed.py' 2025-08-26T20:13:27.2276054Z adding 'torch/utils/data/graph.py' 2025-08-26T20:13:27.2280423Z adding 'torch/utils/data/graph_settings.py' 2025-08-26T20:13:27.2286688Z adding 'torch/utils/data/sampler.py' 2025-08-26T20:13:27.2291463Z adding 'torch/utils/data/_utils/__init__.py' 2025-08-26T20:13:27.2297971Z adding 'torch/utils/data/_utils/collate.py' 2025-08-26T20:13:27.2301832Z adding 'torch/utils/data/_utils/fetch.py' 2025-08-26T20:13:27.2306655Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-08-26T20:13:27.2309643Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-08-26T20:13:27.2316438Z adding 'torch/utils/data/_utils/worker.py' 2025-08-26T20:13:27.2320698Z adding 'torch/utils/data/datapipes/__init__.py' 2025-08-26T20:13:27.2325354Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-08-26T20:13:27.2331380Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-08-26T20:13:27.2338921Z adding 'torch/utils/data/datapipes/_typing.py' 2025-08-26T20:13:27.2346371Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-08-26T20:13:27.2356936Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-08-26T20:13:27.2396772Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-08-26T20:13:27.2397202Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-08-26T20:13:27.2397684Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-08-26T20:13:27.2398159Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-08-26T20:13:27.2398617Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-08-26T20:13:27.2399045Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-08-26T20:13:27.2399441Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-08-26T20:13:27.2399937Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-08-26T20:13:27.2402910Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-08-26T20:13:27.2411583Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-08-26T20:13:27.2416024Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-08-26T20:13:27.2421011Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-08-26T20:13:27.2425514Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-08-26T20:13:27.2429496Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-08-26T20:13:27.2433531Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-08-26T20:13:27.2437290Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-08-26T20:13:27.2440690Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-08-26T20:13:27.2444140Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-08-26T20:13:27.2448369Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-08-26T20:13:27.2451760Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-08-26T20:13:27.2455681Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-08-26T20:13:27.2459503Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-08-26T20:13:27.2463117Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-08-26T20:13:27.2466575Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-08-26T20:13:27.2470207Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-08-26T20:13:27.2476414Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-08-26T20:13:27.2482602Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-08-26T20:13:27.2486826Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-08-26T20:13:27.2490503Z adding 'torch/utils/hipify/__init__.py' 2025-08-26T20:13:27.2493713Z adding 'torch/utils/hipify/constants.py' 2025-08-26T20:13:27.2559548Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-08-26T20:13:27.2586550Z adding 'torch/utils/hipify/hipify_python.py' 2025-08-26T20:13:27.2589915Z adding 'torch/utils/hipify/version.py' 2025-08-26T20:13:27.2593697Z adding 'torch/utils/jit/__init__.py' 2025-08-26T20:13:27.2597895Z adding 'torch/utils/jit/log_extract.py' 2025-08-26T20:13:27.2606051Z adding 'torch/utils/model_dump/__init__.py' 2025-08-26T20:13:27.2609636Z adding 'torch/utils/model_dump/__main__.py' 2025-08-26T20:13:27.2616838Z adding 'torch/utils/model_dump/code.js' 2025-08-26T20:13:27.2621048Z adding 'torch/utils/model_dump/htm.mjs' 2025-08-26T20:13:27.2626781Z adding 'torch/utils/model_dump/preact.mjs' 2025-08-26T20:13:27.2629944Z adding 'torch/utils/model_dump/skeleton.html' 2025-08-26T20:13:27.2633615Z adding 'torch/utils/serialization/__init__.py' 2025-08-26T20:13:27.2636650Z adding 'torch/utils/serialization/config.py' 2025-08-26T20:13:27.2640628Z adding 'torch/utils/tensorboard/__init__.py' 2025-08-26T20:13:27.2643939Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-08-26T20:13:27.2647548Z adding 'torch/utils/tensorboard/_embedding.py' 2025-08-26T20:13:27.2651093Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-08-26T20:13:27.2654995Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-08-26T20:13:27.2661398Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-08-26T20:13:27.2666319Z adding 'torch/utils/tensorboard/_utils.py' 2025-08-26T20:13:27.2678646Z adding 'torch/utils/tensorboard/summary.py' 2025-08-26T20:13:27.2693636Z adding 'torch/utils/tensorboard/writer.py' 2025-08-26T20:13:27.2698417Z adding 'torch/utils/viz/__init__.py' 2025-08-26T20:13:27.2705874Z adding 'torch/utils/viz/_cycles.py' 2025-08-26T20:13:27.2714650Z adding 'torch/xpu/__init__.py' 2025-08-26T20:13:27.2718464Z adding 'torch/xpu/_gpu_trace.py' 2025-08-26T20:13:27.2721724Z adding 'torch/xpu/_utils.py' 2025-08-26T20:13:27.2726318Z adding 'torch/xpu/memory.py' 2025-08-26T20:13:27.2730482Z adding 'torch/xpu/random.py' 2025-08-26T20:13:27.2735170Z adding 'torch/xpu/streams.py' 2025-08-26T20:13:27.2858106Z adding 'torch-2.9.0a0+git262640f.dist-info/licenses/LICENSE' 2025-08-26T20:13:27.2879399Z adding 'torch-2.9.0a0+git262640f.dist-info/licenses/NOTICE' 2025-08-26T20:13:27.2883897Z adding 'torchgen/__init__.py' 2025-08-26T20:13:27.2887687Z adding 'torchgen/code_template.py' 2025-08-26T20:13:27.2891670Z adding 'torchgen/context.py' 2025-08-26T20:13:27.2928145Z adding 'torchgen/gen.py' 2025-08-26T20:13:27.2940736Z adding 'torchgen/gen_aoti_c_shim.py' 2025-08-26T20:13:27.2949629Z adding 'torchgen/gen_backend_stubs.py' 2025-08-26T20:13:27.2963816Z adding 'torchgen/gen_functionalization_type.py' 2025-08-26T20:13:27.2973266Z adding 'torchgen/gen_lazy_tensor.py' 2025-08-26T20:13:27.2977445Z adding 'torchgen/gen_schema_utils.py' 2025-08-26T20:13:27.2982267Z adding 'torchgen/gen_vmap_plumbing.py' 2025-08-26T20:13:27.2985852Z adding 'torchgen/local.py' 2025-08-26T20:13:27.3027827Z adding 'torchgen/model.py' 2025-08-26T20:13:27.3041975Z adding 'torchgen/native_function_generation.py' 2025-08-26T20:13:27.3050673Z adding 'torchgen/utils.py' 2025-08-26T20:13:27.3054306Z adding 'torchgen/yaml_utils.py' 2025-08-26T20:13:27.3057832Z adding 'torchgen/aoti/__init__.py' 2025-08-26T20:13:27.3062188Z adding 'torchgen/aoti/fallback_ops.py' 2025-08-26T20:13:27.3066120Z adding 'torchgen/api/__init__.py' 2025-08-26T20:13:27.3080244Z adding 'torchgen/api/autograd.py' 2025-08-26T20:13:27.3088143Z adding 'torchgen/api/cpp.py' 2025-08-26T20:13:27.3092264Z adding 'torchgen/api/dispatcher.py' 2025-08-26T20:13:27.3097184Z adding 'torchgen/api/functionalization.py' 2025-08-26T20:13:27.3105298Z adding 'torchgen/api/lazy.py' 2025-08-26T20:13:27.3108284Z adding 'torchgen/api/meta.py' 2025-08-26T20:13:27.3112453Z adding 'torchgen/api/native.py' 2025-08-26T20:13:27.3134380Z adding 'torchgen/api/python.py' 2025-08-26T20:13:27.3140160Z adding 'torchgen/api/structured.py' 2025-08-26T20:13:27.3147608Z adding 'torchgen/api/translate.py' 2025-08-26T20:13:27.3152593Z adding 'torchgen/api/ufunc.py' 2025-08-26T20:13:27.3158012Z adding 'torchgen/api/unboxing.py' 2025-08-26T20:13:27.3161904Z adding 'torchgen/api/types/__init__.py' 2025-08-26T20:13:27.3168572Z adding 'torchgen/api/types/signatures.py' 2025-08-26T20:13:27.3173699Z adding 'torchgen/api/types/types.py' 2025-08-26T20:13:27.3178196Z adding 'torchgen/api/types/types_base.py' 2025-08-26T20:13:27.3182436Z adding 'torchgen/dest/__init__.py' 2025-08-26T20:13:27.3192759Z adding 'torchgen/dest/lazy_ir.py' 2025-08-26T20:13:27.3196882Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-08-26T20:13:27.3200699Z adding 'torchgen/dest/native_functions.py' 2025-08-26T20:13:27.3214991Z adding 'torchgen/dest/register_dispatch_key.py' 2025-08-26T20:13:27.3223205Z adding 'torchgen/dest/ufunc.py' 2025-08-26T20:13:27.3227436Z adding 'torchgen/operator_versions/__init__.py' 2025-08-26T20:13:27.3233050Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-08-26T20:13:27.3236340Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-08-26T20:13:27.3355520Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-08-26T20:13:27.3374613Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-08-26T20:13:27.3387562Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-08-26T20:13:27.3388094Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-08-26T20:13:27.3388628Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-08-26T20:13:27.3390073Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-08-26T20:13:27.3393612Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-08-26T20:13:27.3396286Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-08-26T20:13:27.3399510Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-08-26T20:13:27.3402252Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-08-26T20:13:27.3405734Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-08-26T20:13:27.3409547Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-08-26T20:13:27.3413668Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-08-26T20:13:27.3416839Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-08-26T20:13:27.3419736Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-08-26T20:13:27.3422980Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-08-26T20:13:27.3425955Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-08-26T20:13:27.3429408Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-08-26T20:13:27.3432424Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-08-26T20:13:27.3435338Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-08-26T20:13:27.3438404Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-08-26T20:13:27.3441320Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-08-26T20:13:27.3445021Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-08-26T20:13:27.3448135Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-08-26T20:13:27.3451213Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-08-26T20:13:27.3454305Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-08-26T20:13:27.3457498Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-08-26T20:13:27.3460436Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-08-26T20:13:27.3463601Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-08-26T20:13:27.3467322Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-08-26T20:13:27.3470548Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-08-26T20:13:27.3473383Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-08-26T20:13:27.3485004Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-08-26T20:13:27.3489188Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-08-26T20:13:27.3492211Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-08-26T20:13:27.3495129Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-08-26T20:13:27.3498183Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-08-26T20:13:27.3501890Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-08-26T20:13:27.3505122Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-08-26T20:13:27.3508945Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-08-26T20:13:27.3511878Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-08-26T20:13:27.3515748Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-08-26T20:13:27.3518549Z adding 'torchgen/packaged/autograd/README.md' 2025-08-26T20:13:27.3521371Z adding 'torchgen/packaged/autograd/__init__.py' 2025-08-26T20:13:27.3524162Z adding 'torchgen/packaged/autograd/build.bzl' 2025-08-26T20:13:27.3527478Z adding 'torchgen/packaged/autograd/context.py' 2025-08-26T20:13:27.3530973Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-08-26T20:13:27.3578335Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-08-26T20:13:27.3586470Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-08-26T20:13:27.3590361Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-08-26T20:13:27.3601956Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-08-26T20:13:27.3611745Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-08-26T20:13:27.3628550Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-08-26T20:13:27.3637618Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-08-26T20:13:27.3642142Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-08-26T20:13:27.3669249Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-08-26T20:13:27.3677169Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-08-26T20:13:27.3691914Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-08-26T20:13:27.3697774Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-08-26T20:13:27.3701048Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-08-26T20:13:27.3704360Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-08-26T20:13:27.3707789Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-08-26T20:13:27.3711259Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-08-26T20:13:27.3714627Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-08-26T20:13:27.3717617Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-08-26T20:13:27.3720595Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-08-26T20:13:27.3723653Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-08-26T20:13:27.3726760Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-08-26T20:13:27.3730183Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-08-26T20:13:27.3733292Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-08-26T20:13:27.3736341Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-08-26T20:13:27.3739675Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-08-26T20:13:27.3743155Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-08-26T20:13:27.3746938Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-08-26T20:13:27.3750146Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-08-26T20:13:27.3753447Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-08-26T20:13:27.3756437Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-08-26T20:13:27.3759942Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-08-26T20:13:27.3763949Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-08-26T20:13:27.3776384Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-08-26T20:13:27.3781551Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-08-26T20:13:27.3785352Z adding 'torchgen/selective_build/__init__.py' 2025-08-26T20:13:27.3789747Z adding 'torchgen/selective_build/operator.py' 2025-08-26T20:13:27.3795667Z adding 'torchgen/selective_build/selector.py' 2025-08-26T20:13:27.3799773Z adding 'torchgen/static_runtime/__init__.py' 2025-08-26T20:13:27.3804570Z adding 'torchgen/static_runtime/config.py' 2025-08-26T20:13:27.3809674Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-08-26T20:13:27.3818396Z adding 'torchgen/static_runtime/generator.py' 2025-08-26T20:13:27.3831001Z adding 'torch-2.9.0a0+git262640f.dist-info/METADATA' 2025-08-26T20:13:27.3833822Z adding 'torch-2.9.0a0+git262640f.dist-info/WHEEL' 2025-08-26T20:13:27.3835862Z adding 'torch-2.9.0a0+git262640f.dist-info/entry_points.txt' 2025-08-26T20:13:27.3837720Z adding 'torch-2.9.0a0+git262640f.dist-info/top_level.txt' 2025-08-26T20:13:27.4534823Z adding 'torch-2.9.0a0+git262640f.dist-info/RECORD' 2025-08-26T20:13:27.4907177Z removing build\bdist.win-amd64\wheel 2025-08-26T20:13:29.1574000Z 2025-08-26T20:13:29.1582242Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-08-26T20:13:29.1583178Z 2025-08-26T20:13:29.1583466Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-08-26T20:13:29.1584191Z 2025-08-26T20:13:29.1584434Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats 2025-08-26T20:13:29.2042647Z Compile requests 7363 2025-08-26T20:13:29.2043007Z Compile requests executed 7362 2025-08-26T20:13:29.2043310Z Cache hits 7294 2025-08-26T20:13:29.2043563Z Cache hits (C/C++) 6969 2025-08-26T20:13:29.2043826Z Cache hits (CUDA) 325 2025-08-26T20:13:29.2044079Z Cache misses 51 2025-08-26T20:13:29.2044558Z Cache misses (C/C++) 51 2025-08-26T20:13:29.2044820Z Cache timeouts 0 2025-08-26T20:13:29.2045091Z Cache read errors 0 2025-08-26T20:13:29.2045364Z Forced recaches 0 2025-08-26T20:13:29.2045623Z Cache write errors 0 2025-08-26T20:13:29.2045894Z Compilation failures 3 2025-08-26T20:13:29.2046154Z Cache errors 14 2025-08-26T20:13:29.2046414Z Cache errors (C/C++) 14 2025-08-26T20:13:29.2046680Z Non-cacheable compilations 2 2025-08-26T20:13:29.2046955Z Non-cacheable calls 0 2025-08-26T20:13:29.2047292Z Non-compilation calls 1 2025-08-26T20:13:29.2047571Z Unsupported compiler calls 0 2025-08-26T20:13:29.2047853Z Average cache write 0.038 s 2025-08-26T20:13:29.2048137Z Average compiler 0.137 s 2025-08-26T20:13:29.2048429Z Average cache read hit 0.057 s 2025-08-26T20:13:29.2048708Z Failed distributed compilations 0 2025-08-26T20:13:29.2049092Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-08-26T20:13:29.2049481Z Version (client) 0.7.4 2025-08-26T20:13:29.2069114Z 2025-08-26T20:13:29.2069964Z (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-08-26T20:13:30.2460940Z Processing c:\actions-runner\_work\pytorch\pytorch\dist\torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl 2025-08-26T20:13:31.4439448Z Installing collected packages: torch 2025-08-26T20:13:52.5744249Z Successfully installed torch-2.9.0a0+git262640f 2025-08-26T20:13:52.6427129Z 2025-08-26T20:13:52.6428514Z (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-08-26T20:13:52.6429967Z copy /Y "dist\*.whl" "C:/17248463647/build-results/" 2025-08-26T20:13:52.6430924Z python tools/stats/export_test_times.py 2025-08-26T20:13:52.6431446Z robocopy /E ".additional_ci_files" "C:/17248463647/build-results/\.additional_ci_files" 2025-08-26T20:13:52.6431962Z copy /Y "build\.ninja_log" "C:/17248463647/build-results/\" 2025-08-26T20:13:52.6432271Z ) ) 2025-08-26T20:13:52.6436620Z dist\torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl 2025-08-26T20:13:52.8490703Z 1 file(s) copied. 2025-08-26T20:13:53.7160652Z Exporting test times from test-infra 2025-08-26T20:13:53.7161682Z 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-08-26T20:13:53.7163237Z 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-08-26T20:13:53.7393400Z 2025-08-26T20:13:53.7393861Z ------------------------------------------------------------------------------- 2025-08-26T20:13:53.7394864Z ROBOCOPY :: Robust File Copy for Windows 2025-08-26T20:13:53.7395314Z ------------------------------------------------------------------------------- 2025-08-26T20:13:53.7395762Z 2025-08-26T20:13:53.7397153Z Started : Tuesday, August 26, 2025 8:13:53 PM 2025-08-26T20:13:53.7397887Z Source : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-08-26T20:13:53.7398348Z Dest : C:\17248463647\build-results\.additional_ci_files\ 2025-08-26T20:13:53.7398605Z 2025-08-26T20:13:53.7399138Z Files : *.* 2025-08-26T20:13:53.7399472Z 2025-08-26T20:13:53.7400539Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-08-26T20:13:53.7401017Z 2025-08-26T20:13:53.7401338Z ------------------------------------------------------------------------------ 2025-08-26T20:13:53.7404304Z 2025-08-26T20:13:53.7410576Z New Dir 2 C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-08-26T20:13:53.7437724Z New File 3.8 m test-class-times.json 2025-08-26T20:13:53.7440389Z 12% 2025-08-26T20:13:53.7444240Z 25% 2025-08-26T20:13:53.7446779Z 38% 2025-08-26T20:13:53.7450006Z 51% 2025-08-26T20:13:53.7452517Z 64% 2025-08-26T20:13:53.7455752Z 77% 2025-08-26T20:13:53.7457814Z 90% 2025-08-26T20:13:53.7460733Z 100% 2025-08-26T20:13:53.7466104Z New File 1.0 m test-times.json 2025-08-26T20:13:53.7467550Z 23% 2025-08-26T20:13:53.7469015Z 47% 2025-08-26T20:13:53.7470663Z 70% 2025-08-26T20:13:53.7471621Z 94% 2025-08-26T20:13:53.7474966Z 100% 2025-08-26T20:13:53.7475324Z 2025-08-26T20:13:53.7475498Z ------------------------------------------------------------------------------ 2025-08-26T20:13:53.7475774Z 2025-08-26T20:13:53.7477004Z Total Copied Skipped Mismatch FAILED Extras 2025-08-26T20:13:53.7477889Z Dirs : 1 1 0 0 0 0 2025-08-26T20:13:53.7478757Z Files : 2 2 0 0 0 0 2025-08-26T20:13:53.7479614Z Bytes : 4.93 m 4.93 m 0 0 0 0 2025-08-26T20:13:53.7480453Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-08-26T20:13:53.7480758Z 2025-08-26T20:13:53.7481233Z 2025-08-26T20:13:53.7482304Z Speed : 861745166 Bytes/sec. 2025-08-26T20:13:53.7483292Z Speed : 49309.453 MegaBytes/min. 2025-08-26T20:13:53.7483650Z Ended : Tuesday, August 26, 2025 8:13:53 PM 2025-08-26T20:13:53.7484010Z 2025-08-26T20:13:53.7928244Z 1 file(s) copied. 2025-08-26T20:13:53.7930505Z 2025-08-26T20:13:53.7931145Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats --stats-format json | jq .stats 1>sccache-stats-win-vs2022-cuda12.6-py3-48944202603.json 2025-08-26T20:13:53.8292791Z 2025-08-26T20:13:53.8293430Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-08-26T20:13:53.8379914Z Stopping sccache server... 2025-08-26T20:13:53.8398583Z Compile requests 7363 2025-08-26T20:13:53.8398925Z Compile requests executed 7362 2025-08-26T20:13:53.8399195Z Cache hits 7294 2025-08-26T20:13:53.8399460Z Cache hits (C/C++) 6969 2025-08-26T20:13:53.8399718Z Cache hits (CUDA) 325 2025-08-26T20:13:53.8400034Z Cache misses 51 2025-08-26T20:13:53.8400315Z Cache misses (C/C++) 51 2025-08-26T20:13:53.8400617Z Cache timeouts 0 2025-08-26T20:13:53.8400884Z Cache read errors 0 2025-08-26T20:13:53.8401141Z Forced recaches 0 2025-08-26T20:13:53.8401411Z Cache write errors 0 2025-08-26T20:13:53.8401671Z Compilation failures 3 2025-08-26T20:13:53.8401947Z Cache errors 14 2025-08-26T20:13:53.8402214Z Cache errors (C/C++) 14 2025-08-26T20:13:53.8402484Z Non-cacheable compilations 2 2025-08-26T20:13:53.8402766Z Non-cacheable calls 0 2025-08-26T20:13:53.8403034Z Non-compilation calls 1 2025-08-26T20:13:53.8403316Z Unsupported compiler calls 0 2025-08-26T20:13:53.8403590Z Average cache write 0.038 s 2025-08-26T20:13:53.8403945Z Average compiler 0.137 s 2025-08-26T20:13:53.8404228Z Average cache read hit 0.057 s 2025-08-26T20:13:53.8404528Z Failed distributed compilations 0 2025-08-26T20:13:53.8404906Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-08-26T20:13:53.8405302Z Version (client) 0.7.4 2025-08-26T20:13:53.8418394Z 2025-08-26T20:13:53.8418669Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T20:13:54.2007591Z + assert_git_not_dirty 2025-08-26T20:13:54.2027981Z + [[ win-vs2022-cuda12.6-py3 != *rocm* ]] 2025-08-26T20:13:54.2031049Z + [[ win-vs2022-cuda12.6-py3 != *xla* ]] 2025-08-26T20:13:54.2644851Z ++ git status --porcelain 2025-08-26T20:13:54.2700808Z ++ grep -v '?? third_party' 2025-08-26T20:15:29.3430756Z ++ true 2025-08-26T20:15:29.3435023Z + git_status= 2025-08-26T20:15:29.3435267Z + [[ -n '' ]] 2025-08-26T20:15:29.3435534Z + echo 'BUILD PASSED' 2025-08-26T20:15:29.3435795Z BUILD PASSED 2025-08-26T20:15:29.4851934Z ##[group]Run seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a 2025-08-26T20:15:29.4852564Z with: 2025-08-26T20:15:29.4852755Z retention-days: 14 2025-08-26T20:15:29.4853062Z if-no-files-found: error 2025-08-26T20:15:29.4853318Z name: win-vs2022-cuda12.6-py3 2025-08-26T20:15:29.4853641Z path: C:\17248463647\build-results 2025-08-26T20:15:29.4853919Z s3-bucket: gha-artifacts 2025-08-26T20:15:29.4854151Z region: us-east-1 2025-08-26T20:15:29.4858429Z env: 2025-08-26T20:15:29.4859639Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:15:29.4860079Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:15:29.4860614Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:15:29.4861110Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:15:29.4861510Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:15:29.4861816Z ##[endgroup] 2025-08-26T20:15:30.3380332Z With the provided path, there will be 4 files uploaded 2025-08-26T20:15:30.3380846Z Uploading to s3 prefix: pytorch/pytorch/17248463647/win-vs2022-cuda12.6-py3 2025-08-26T20:15:30.3404068Z Starting upload of .additional_ci_files\test-class-times.json 2025-08-26T20:15:30.6310513Z Finished upload of .additional_ci_files\test-class-times.json 2025-08-26T20:15:30.6313110Z Starting upload of .additional_ci_files\test-times.json 2025-08-26T20:15:30.7941220Z Finished upload of .additional_ci_files\test-times.json 2025-08-26T20:15:30.7942930Z Starting upload of .ninja_log 2025-08-26T20:15:30.9756391Z Finished upload of .ninja_log 2025-08-26T20:15:30.9758048Z Starting upload of torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl 2025-08-26T20:15:33.8617237Z Finished upload of torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl 2025-08-26T20:15:33.9140687Z Prepare all required actions 2025-08-26T20:15:33.9141403Z Getting action download info 2025-08-26T20:15:34.0706478Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-08-26T20:15:34.3101058Z ##[group]Run ./.github/actions/upload-sccache-stats 2025-08-26T20:15:34.3101369Z with: 2025-08-26T20:15:34.3107358Z github-token: *** 2025-08-26T20:15:34.3107571Z env: 2025-08-26T20:15:34.3107743Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:15:34.3108123Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:15:34.3108646Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:15:34.3109143Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:15:34.3109531Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:15:34.3109822Z ##[endgroup] 2025-08-26T20:15:34.3227397Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-26T20:15:34.3227753Z with: 2025-08-26T20:15:34.3228030Z s3-prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T20:15:34.3228366Z retention-days: 14 2025-08-26T20:15:34.3228593Z if-no-files-found: warn 2025-08-26T20:15:34.3228873Z path: sccache-stats-*.json 2025-08-26T20:15:34.3229122Z name: artifact 2025-08-26T20:15:34.3229342Z s3-bucket: gha-artifacts 2025-08-26T20:15:34.3229585Z region: us-east-1 2025-08-26T20:15:34.3229774Z env: 2025-08-26T20:15:34.3229964Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:15:34.3230337Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:15:34.3231975Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:15:34.3232461Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:15:34.3232871Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:15:34.3233160Z ##[endgroup] 2025-08-26T20:15:34.7048581Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-26T20:15:34.7049030Z With the provided path, there will be 1 file uploaded 2025-08-26T20:15:34.7049442Z Uploading to s3 prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T20:15:34.7062638Z Starting upload of sccache-stats-win-vs2022-cuda12.6-py3-48944202603.json 2025-08-26T20:15:34.8468024Z Finished upload of sccache-stats-win-vs2022-cuda12.6-py3-48944202603.json 2025-08-26T20:15:34.8823867Z Prepare all required actions 2025-08-26T20:15:34.8824291Z Getting action download info 2025-08-26T20:15:35.1456932Z ##[group]Run ./.github/actions/teardown-win 2025-08-26T20:15:35.1457214Z with: 2025-08-26T20:15:35.1457446Z extra-delete-dir: /c/17248463647/build-results/ 2025-08-26T20:15:35.1457740Z env: 2025-08-26T20:15:35.1457930Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:15:35.1458294Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:15:35.1458808Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:15:35.1459290Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:15:35.1459672Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:15:35.1459959Z ##[endgroup] 2025-08-26T20:15:35.1541690Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-26T20:15:35.1542141Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-26T20:15:35.1557443Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:15:35.1557899Z env: 2025-08-26T20:15:35.1558098Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:15:35.1558469Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:15:35.1559006Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:15:35.1559687Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:15:35.1560086Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:15:35.1560396Z ##[endgroup] 2025-08-26T20:15:35.5305494Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:15:35.5377212Z Finished 2025-08-26T20:15:35.6837509Z Holding runner until all ssh sessions have logged out 2025-08-26T20:15:35.7071620Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-08-26T20:15:35.7072044Z .github\scripts\kill_active_ssh_sessions.ps1 2025-08-26T20:15:35.7087591Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:15:35.7088058Z env: 2025-08-26T20:15:35.7088256Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:15:35.7088652Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:15:35.7089170Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:15:35.7089672Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:15:35.7090076Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:15:35.7090375Z ##[endgroup] 2025-08-26T20:15:36.0544552Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:15:36.0594634Z Finished 2025-08-26T20:15:36.0952357Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-26T20:15:36.0952777Z env: 2025-08-26T20:15:36.0952980Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:15:36.0953375Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:15:36.0953921Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:15:36.0954408Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:15:36.0954801Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:15:36.0955112Z ##[endgroup] 2025-08-26T20:15:36.1028919Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T20:15:36.1029669Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T20:15:36.1030332Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-26T20:15:36.1030820Z # handle tool 2025-08-26T20:15:36.1031161Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-26T20:15:36.1031678Z Foreach ($process In $processes) { 2025-08-26T20:15:36.1033315Z  Try { 2025-08-26T20:15:36.1033862Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-26T20:15:36.1034588Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-26T20:15:36.1034986Z  } 2025-08-26T20:15:36.1035205Z  Catch { 2025-08-26T20:15:36.1035512Z  Write-Output "No leftover $process process, continuing" 2025-08-26T20:15:36.1035898Z  Write-Output $_ 2025-08-26T20:15:36.1036133Z  } 2025-08-26T20:15:36.1036329Z } 2025-08-26T20:15:36.1036533Z  2025-08-26T20:15:36.1037002Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-26T20:15:36.1037575Z # for hung processes 2025-08-26T20:15:36.1037858Z Foreach ($process In $processes) { 2025-08-26T20:15:36.1038169Z  Try { 2025-08-26T20:15:36.1038574Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-26T20:15:36.1039044Z  } 2025-08-26T20:15:36.1039312Z  Catch { 2025-08-26T20:15:36.1039546Z  Write-Output $_ 2025-08-26T20:15:36.1039791Z  } 2025-08-26T20:15:36.1039969Z } 2025-08-26T20:15:36.1040245Z  2025-08-26T20:15:36.1040414Z Try { 2025-08-26T20:15:36.1040717Z  # Print all the processes for debugging 2025-08-26T20:15:36.1041228Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-26T20:15:36.1041696Z } 2025-08-26T20:15:36.1041877Z Catch { 2025-08-26T20:15:36.1042287Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-26T20:15:36.1042780Z  Write-Output $_ 2025-08-26T20:15:36.1043013Z } 2025-08-26T20:15:36.1058169Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:15:36.1058630Z env: 2025-08-26T20:15:36.1058837Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:15:36.1059213Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:15:36.1059765Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:15:36.1060246Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:15:36.1060664Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:15:36.1060970Z ##[endgroup] 2025-08-26T20:15:36.4783063Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:15:36.4852990Z Finished 2025-08-26T20:15:36.5022863Z No leftover python process, continuing 2025-08-26T20:15:36.5468704Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-26T20:15:36.5469472Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:9 char:5 2025-08-26T20:15:36.5470070Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:15:36.5470498Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.5471042Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-26T20:15:36.5471948Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:15:36.5472570Z 2025-08-26T20:15:36.5484407Z No leftover ninja process, continuing 2025-08-26T20:15:36.5495452Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-26T20:15:36.5496145Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:9 char:5 2025-08-26T20:15:36.5496855Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:15:36.5497321Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.5498504Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-26T20:15:36.5499353Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:15:36.5500026Z 2025-08-26T20:15:36.5539457Z No leftover cl process, continuing 2025-08-26T20:15:36.5540011Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-26T20:15:36.5540659Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:9 char:5 2025-08-26T20:15:36.5541232Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:15:36.5541658Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.5542122Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-26T20:15:36.5542951Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:15:36.5543572Z 2025-08-26T20:15:36.5543786Z No leftover nvcc process, continuing 2025-08-26T20:15:36.5544340Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-26T20:15:36.5545598Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:9 char:5 2025-08-26T20:15:36.5546275Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:15:36.5546728Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.5547212Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-26T20:15:36.5548018Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:15:36.5548652Z 2025-08-26T20:15:36.5555529Z No leftover cmd process, continuing 2025-08-26T20:15:36.5565566Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-08-26T20:15:36.5566247Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:9 char:5 2025-08-26T20:15:36.5566802Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:15:36.5567222Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.5567696Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-08-26T20:15:36.5568565Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:15:36.5569180Z 2025-08-26T20:15:36.5576993Z No leftover sccache process, continuing 2025-08-26T20:15:36.5586464Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-26T20:15:36.5587151Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:9 char:5 2025-08-26T20:15:36.5587719Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:15:36.5588146Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.5588674Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-26T20:15:36.5589553Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:15:36.5590234Z 2025-08-26T20:15:36.5598204Z No leftover git process, continuing 2025-08-26T20:15:36.5608728Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-26T20:15:36.5609395Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:9 char:5 2025-08-26T20:15:36.5609961Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:15:36.5610467Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.5611059Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-26T20:15:36.5611888Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:15:36.5612501Z 2025-08-26T20:15:36.6046682Z You cannot call a method on a null-valued expression. 2025-08-26T20:15:36.6047200Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:21 char:5 2025-08-26T20:15:36.6047804Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:15:36.6048238Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.6048661Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T20:15:36.6049089Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T20:15:36.6049382Z 2025-08-26T20:15:36.6192292Z You cannot call a method on a null-valued expression. 2025-08-26T20:15:36.6192825Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:21 char:5 2025-08-26T20:15:36.6193426Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:15:36.6193866Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.6194289Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T20:15:36.6194717Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T20:15:36.6195163Z 2025-08-26T20:15:36.6343723Z You cannot call a method on a null-valued expression. 2025-08-26T20:15:36.6344240Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:21 char:5 2025-08-26T20:15:36.6344861Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:15:36.6345340Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.6345752Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T20:15:36.6346188Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T20:15:36.6346501Z 2025-08-26T20:15:36.6491299Z You cannot call a method on a null-valued expression. 2025-08-26T20:15:36.6491827Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:21 char:5 2025-08-26T20:15:36.6492399Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:15:36.6492867Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.6493292Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T20:15:36.6493704Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T20:15:36.6494024Z 2025-08-26T20:15:36.6637295Z You cannot call a method on a null-valued expression. 2025-08-26T20:15:36.6637832Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:21 char:5 2025-08-26T20:15:36.6638407Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:15:36.6638878Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.6639375Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T20:15:36.6639786Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T20:15:36.6640087Z 2025-08-26T20:15:36.6780155Z You cannot call a method on a null-valued expression. 2025-08-26T20:15:36.6780685Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:21 char:5 2025-08-26T20:15:36.6781271Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:15:36.6781720Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.6782136Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T20:15:36.6782548Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T20:15:36.6782864Z 2025-08-26T20:15:36.6922717Z You cannot call a method on a null-valued expression. 2025-08-26T20:15:36.6923454Z At C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1:21 char:5 2025-08-26T20:15:36.6924049Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:15:36.6924484Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:15:36.6924959Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T20:15:36.6925420Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T20:15:36.6925729Z 2025-08-26T20:15:36.7929660Z Caption CommandLine ProcessId 2025-08-26T20:15:36.7930183Z 2025-08-26T20:15:36.7931319Z System Idle Process 0 2025-08-26T20:15:36.7931887Z 2025-08-26T20:15:36.7932557Z System 4 2025-08-26T20:15:36.7932963Z 2025-08-26T20:15:36.7933652Z Registry 168 2025-08-26T20:15:36.7934066Z 2025-08-26T20:15:36.7934738Z smss.exe 408 2025-08-26T20:15:36.7935153Z 2025-08-26T20:15:36.7935856Z csrss.exe 524 2025-08-26T20:15:36.7936262Z 2025-08-26T20:15:36.7937708Z csrss.exe 600 2025-08-26T20:15:36.7938194Z 2025-08-26T20:15:36.7938491Z wininit.exe 624 2025-08-26T20:15:36.7938892Z 2025-08-26T20:15:36.7939255Z winlogon.exe winlogon.exe 688 2025-08-26T20:15:36.7939706Z 2025-08-26T20:15:36.7940533Z services.exe 744 2025-08-26T20:15:36.7940991Z 2025-08-26T20:15:36.7941525Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-08-26T20:15:36.7942009Z 2025-08-26T20:15:36.7942814Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-08-26T20:15:36.7943418Z 2025-08-26T20:15:36.7943891Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-08-26T20:15:36.7944448Z 2025-08-26T20:15:36.7944843Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-08-26T20:15:36.7945324Z 2025-08-26T20:15:36.7946140Z fontdrvhost.exe "fontdrvhost.exe" 948 2025-08-26T20:15:36.7946662Z 2025-08-26T20:15:36.7947107Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 132 2025-08-26T20:15:36.7947640Z 2025-08-26T20:15:36.7948302Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 456 2025-08-26T20:15:36.7948872Z 2025-08-26T20:15:36.7949430Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 592 2025-08-26T20:15:36.7950067Z 2025-08-26T20:15:36.7950682Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1120 2025-08-26T20:15:36.7951378Z 2025-08-26T20:15:36.7951969Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1260 2025-08-26T20:15:36.7952672Z 2025-08-26T20:15:36.7952975Z dwm.exe "dwm.exe" 1296 2025-08-26T20:15:36.7953384Z 2025-08-26T20:15:36.7953993Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1340 2025-08-26T20:15:36.7954590Z 2025-08-26T20:15:36.7955274Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1368 2025-08-26T20:15:36.7955965Z 2025-08-26T20:15:36.7956428Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1392 2025-08-26T20:15:36.7957008Z 2025-08-26T20:15:36.7957515Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-08-26T20:15:36.7958169Z 2025-08-26T20:15:36.7958645Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1488 2025-08-26T20:15:36.7959320Z 2025-08-26T20:15:36.7961146Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1512 2025-08-26T20:15:36.7963117Z 2025-08-26T20:15:36.7963630Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1576 2025-08-26T20:15:36.7964262Z 2025-08-26T20:15:36.7964882Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1672 2025-08-26T20:15:36.7965596Z 2025-08-26T20:15:36.7966092Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1752 2025-08-26T20:15:36.7966710Z 2025-08-26T20:15:36.7967270Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1760 2025-08-26T20:15:36.7967895Z 2025-08-26T20:15:36.7968431Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1768 2025-08-26T20:15:36.7969057Z 2025-08-26T20:15:36.7969679Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1852 2025-08-26T20:15:36.7970423Z 2025-08-26T20:15:36.7970903Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 2024 2025-08-26T20:15:36.7971460Z 2025-08-26T20:15:36.7971949Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2032 2025-08-26T20:15:36.7972549Z 2025-08-26T20:15:36.7973042Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2072 2025-08-26T20:15:36.7973646Z 2025-08-26T20:15:36.7974163Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 2096 2025-08-26T20:15:36.7974796Z 2025-08-26T20:15:36.7975860Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 2104 2025-08-26T20:15:36.7976568Z 2025-08-26T20:15:36.7977128Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2172 2025-08-26T20:15:36.7977809Z 2025-08-26T20:15:36.7978459Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2208 2025-08-26T20:15:36.7979217Z 2025-08-26T20:15:36.7979735Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2240 2025-08-26T20:15:36.7980413Z 2025-08-26T20:15:36.7980924Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2296 2025-08-26T20:15:36.7981539Z 2025-08-26T20:15:36.7982106Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2348 2025-08-26T20:15:36.7982757Z 2025-08-26T20:15:36.7983270Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2404 2025-08-26T20:15:36.7983864Z 2025-08-26T20:15:36.7984280Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2716 2025-08-26T20:15:36.7984782Z 2025-08-26T20:15:36.7985331Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2808 2025-08-26T20:15:36.7985937Z 2025-08-26T20:15:36.7986473Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2816 2025-08-26T20:15:36.7987089Z 2025-08-26T20:15:36.7987666Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2824 2025-08-26T20:15:36.7988363Z 2025-08-26T20:15:36.7988943Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2832 2025-08-26T20:15:36.7989760Z 2025-08-26T20:15:36.8004607Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2844 2025-08-26T20:15:36.8005357Z 2025-08-26T20:15:36.8005871Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2856 2025-08-26T20:15:36.8006460Z 2025-08-26T20:15:36.8006983Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2864 2025-08-26T20:15:36.8007598Z 2025-08-26T20:15:36.8008096Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2872 2025-08-26T20:15:36.8008796Z 2025-08-26T20:15:36.8009294Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2660 2025-08-26T20:15:36.8009790Z 2025-08-26T20:15:36.8010461Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe 3016 2025-08-26T20:15:36.8011216Z 2025-08-26T20:15:36.8011722Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3104 2025-08-26T20:15:36.8012347Z 2025-08-26T20:15:36.8012989Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3128 2025-08-26T20:15:36.8013733Z 2025-08-26T20:15:36.8014215Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3184 2025-08-26T20:15:36.8014804Z 2025-08-26T20:15:36.8015425Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3564 2025-08-26T20:15:36.8016150Z 2025-08-26T20:15:36.8016740Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 3216 2025-08-26T20:15:36.8017442Z 2025-08-26T20:15:36.8017940Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77855 /state1:0x41c64e6d 4540 2025-08-26T20:15:36.8018653Z 2025-08-26T20:15:36.8020346Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 4852 2025-08-26T20:15:36.8022137Z 2025-08-26T20:15:36.8022879Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe -spawnprovider 4984 2025-08-26T20:15:36.8023691Z 2025-08-26T20:15:36.8024228Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4604 2025-08-26T20:15:36.8024891Z 2025-08-26T20:15:36.8025262Z vds.exe C:\Windows\System32\vds.exe 4388 2025-08-26T20:15:36.8025719Z 2025-08-26T20:15:36.8026308Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 4216 2025-08-26T20:15:36.8026983Z 2025-08-26T20:15:36.8027504Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 4496 2025-08-26T20:15:36.8028132Z 2025-08-26T20:15:36.8028890Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 960 2025-08-26T20:15:36.8029702Z 2025-08-26T20:15:36.8031344Z 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 724 2025-08-26T20:15:36.8033074Z 2025-08-26T20:15:36.8033490Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4892 2025-08-26T20:15:36.8034001Z 2025-08-26T20:15:36.8034609Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 3612 2025-08-26T20:15:36.8035319Z 2025-08-26T20:15:36.8035697Z msdtc.exe C:\Windows\System32\msdtc.exe 4384 2025-08-26T20:15:36.8036215Z 2025-08-26T20:15:36.8036796Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4232 2025-08-26T20:15:36.8037480Z 2025-08-26T20:15:36.8037952Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 868 2025-08-26T20:15:36.8038528Z 2025-08-26T20:15:36.8039148Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 4068 2025-08-26T20:15:36.8039795Z 2025-08-26T20:15:36.8040322Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 1608 2025-08-26T20:15:36.8040939Z 2025-08-26T20:15:36.8041507Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 1804 2025-08-26T20:15:36.8042124Z 2025-08-26T20:15:36.8042538Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2912 2025-08-26T20:15:36.8043045Z 2025-08-26T20:15:36.8043541Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 4224 2025-08-26T20:15:36.8044125Z 2025-08-26T20:15:36.8044657Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4884 2025-08-26T20:15:36.8045253Z 2025-08-26T20:15:36.8045748Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 2920 2025-08-26T20:15:36.8046350Z 2025-08-26T20:15:36.8046754Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2152 2025-08-26T20:15:36.8047268Z 2025-08-26T20:15:36.8047836Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 4536 2025-08-26T20:15:36.8048510Z 2025-08-26T20:15:36.8049037Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2208 2220 3588 2025-08-26T20:15:36.8049704Z 2025-08-26T20:15:36.8050174Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3736 2025-08-26T20:15:36.8050682Z 2025-08-26T20:15:36.8051320Z vctip.exe "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\Hostx64\x64\VCTIP.EXE" 5272 2025-08-26T20:15:36.8052058Z 2025-08-26T20:15:36.8052488Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 2676 2025-08-26T20:15:36.8053046Z 2025-08-26T20:15:36.8053850Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\6022f33d-6d7a-4c3e-a79a-435f3d9d1dea.ps1'" 5620 2025-08-26T20:15:36.8054746Z 2025-08-26T20:15:36.8055341Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 5260 2025-08-26T20:15:36.8056018Z 2025-08-26T20:15:36.8056022Z 2025-08-26T20:15:36.8056025Z 2025-08-26T20:15:36.8297490Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-26T20:15:36.8297757Z with: 2025-08-26T20:15:36.8297929Z shell: bash 2025-08-26T20:15:36.8298107Z timeout_minutes: 5 2025-08-26T20:15:36.8298307Z max_attempts: 3 2025-08-26T20:15:36.8298496Z retry_wait_seconds: 90 2025-08-26T20:15:36.8299514Z 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-08-26T20:15:36.8300554Z polling_interval_seconds: 1 2025-08-26T20:15:36.8300796Z warning_on_retry: true 2025-08-26T20:15:36.8301022Z continue_on_error: false 2025-08-26T20:15:36.8301230Z env: 2025-08-26T20:15:36.8301416Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:15:36.8301784Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:15:36.8302298Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:15:36.8302772Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:15:36.8303163Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:15:36.8303488Z EXTRA_DELETE_DIR: /c/17248463647/build-results/ 2025-08-26T20:15:36.8303862Z ##[endgroup] 2025-08-26T20:15:37.3006312Z + '[' -n /c/17248463647/build-results/ ']' 2025-08-26T20:15:37.3007890Z + rm -rf /c/17248463647/build-results/ 2025-08-26T20:15:37.3537648Z + 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 ./codex_setup.sh ./compile_commands.json ./defs.bzl ./dist ./docker.Makefile ./docs ./functorch ./mypy-strict.ini ./mypy.ini ./mypy_plugins ./pt_ops.bzl ./pt_template_srcs.bzl ./pyproject.toml ./pyrefly.toml ./pytest.ini ./requirements-build.txt ./requirements.txt ./sccache-stats-win-vs2022-cuda12.6-py3-48944202603.json ./scripts ./setup.py ./test ./third_party ./tools ./torch ./torch.egg-info ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./version.txt 2025-08-26T20:16:07.4289153Z Command completed after 1 attempt(s). 2025-08-26T20:16:07.4472261Z ##[group]Run handle C:\actions-runner\_work\ 2025-08-26T20:16:07.4472613Z handle C:\actions-runner\_work\ 2025-08-26T20:16:07.4488498Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:16:07.4488943Z env: 2025-08-26T20:16:07.4489125Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:16:07.4489598Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:16:07.4490113Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:16:07.4490591Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:16:07.4490999Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:16:07.4491279Z ##[endgroup] 2025-08-26T20:16:07.7960340Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:16:07.8032358Z Finished 2025-08-26T20:16:08.2922531Z 2025-08-26T20:16:08.2922860Z Nthandle v5.0 - Handle viewer 2025-08-26T20:16:08.2923207Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-26T20:16:08.2923523Z Sysinternals - www.sysinternals.com 2025-08-26T20:16:08.2923717Z 2025-08-26T20:16:08.3269614Z powershell.exe pid: 5840 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:16:08.3270214Z handle.exe pid: 2328 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:16:08.3270781Z handle.exe pid: 2556 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:16:08.3271323Z handle64.exe pid: 5868 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:16:08.3670387Z Post job cleanup. 2025-08-26T20:16:08.3798414Z Post job cleanup. 2025-08-26T20:16:08.5785608Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-26T20:16:08.5993881Z git version 2.50.1.windows.1 2025-08-26T20:16:08.6067669Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\6887adfc-5586-4655-b3b7-8eb7e98e963f\.gitconfig' 2025-08-26T20:16:08.6072403Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\6887adfc-5586-4655-b3b7-8eb7e98e963f' before making global git config changes 2025-08-26T20:16:08.6073641Z Adding repository directory to the temporary git global config as a safe directory 2025-08-26T20:16:08.6083429Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:16:08.6339418Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-26T20:16:08.6604404Z [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-08-26T20:16:09.1363949Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-26T20:16:09.1561356Z http.https://github.com/.extraheader 2025-08-26T20:16:09.1626834Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-08-26T20:16:09.1880240Z [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-08-26T20:16:09.5770652Z A job completed hook has been configured by the self-hosted runner administrator 2025-08-26T20:16:09.5822990Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-08-26T20:16:09.5839775Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:16:09.5840235Z ##[endgroup] 2025-08-26T20:16:09.9358270Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:16:09.9427063Z Finished 2025-08-26T20:16:11.5109750Z Evaluate and set job outputs 2025-08-26T20:16:11.5122477Z Cleaning up orphan processes 2025-08-26T20:16:11.7408434Z Terminate orphan process: pid (5272) (vctip)